ETH Price: $2,340.52 (-0.34%)

Token

Rising Sun (SUN)
 

Overview

Max Total Supply

99,999,999,954,999,999,999.999899999 SUN

Holders

248

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: SUN 15
Balance
4,761,546,625,864,746,660.622176654 SUN

Value
$0.00
0xdb4751a0bfc8435e243c3b0ca11252e9b4a4b7f2
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RisingSun

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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


/**
 * @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, IERC20Metadata {
    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;

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

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

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

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

    /**
     * @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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _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 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 {}
}

/**
 * @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;
  }
}

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

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

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

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

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

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

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

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


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

/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);


  /// @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 DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) 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);
}

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 () public {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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



/// @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, Ownable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public immutable USDT = address(0xdAC17F958D2ee523a2206206994597C13D831ec7); //USDT


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

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

  constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) {

  }


  function distributeUSDTDividends(uint256 amount) public onlyOwner{
    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(msg.sender);
  }

  /// @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(USDT).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);
    }
  }
}


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


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



pragma solidity ^0.6.2;

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

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

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



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

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



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

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;

    bool private swapping;

    RisingSunDividendTracker public dividendTracker;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    address public immutable USDT = address(0xdAC17F958D2ee523a2206206994597C13D831ec7); //USDT
    
    uint256 public swapTokensAtAmount = 10000000000000 *  10**9;
    
    mapping(address => bool) public _isBlacklisted;

    uint256 public USDTRewardsFee = 4;
    uint256 public liquidityFee = 3;
    uint256 public marketingFee = 3;
    uint256 public donationFee = 3;
    uint256 public totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee).add(donationFee);

    address public _marketingWalletAddress = 0xD20729C5a9b8AF765f3675C697E536Eef71A2789;
    address public _donationWallet = 0x5f7865E60D173f7618f41Ae0e6E36ba2D76f481a;


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

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


    // 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 UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

    event ProcessedDividendTracker(
    	uint256 iterations,
    	uint256 claims,
        uint256 lastProcessedIndex,
    	bool indexed automatic,
    	uint256 gas,
    	address indexed processor
    );
    
    event SwapBNBForTokens(
        uint256 amountIn,
        address[] path
    );

    constructor() public ERC20("Rising Sun", "SUN") {

    	dividendTracker = new RisingSunDividendTracker();


    	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(deadWallet);
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWalletAddress, true);
        excludeFromFees(_donationWallet, true);
        excludeFromFees(address(this), true);

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

    receive() external payable {

  	}

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "RisingSun: The dividend tracker already has that address");

        RisingSunDividendTracker newDividendTracker = RisingSunDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "RisingSun: The new dividend tracker must be owned by the RisingSun token contract");

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "RisingSun: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "RisingSun: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setMarketingWallet(address payable wallet) external onlyOwner{
        _marketingWalletAddress = wallet;
    }

    function burn(uint256 amount) external onlyOwner {
        _burn(msg.sender, amount);
    }
    
    function setDonationWallet(address payable wallet) external onlyOwner{
        _donationWallet = wallet;
    }

    function setUSDTRewardsFee(uint256 value) external onlyOwner{
        USDTRewardsFee = value;
        totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee).add(donationFee);
    }

    function setLiquiditFee(uint256 value) external onlyOwner{
        liquidityFee = value;
        totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee).add(donationFee);
    }

    function setMarketingFee(uint256 _marketingFee) external onlyOwner{
        marketingFee = _marketingFee;
        totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee).add(donationFee);

    }
    
    function setdonationFee(uint256 _donationFee) external onlyOwner{
        donationFee = _donationFee;
        totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee).add(donationFee);

    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        swapTokensAtAmount = amount;
    }


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

        _setAutomatedMarketMakerPair(pair, value);
    }
    
    function blacklistAddress(address account, bool value) external onlyOwner{
        _isBlacklisted[account] = value;
    }


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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }


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

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

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

    function getTotalDividendsDistributed() 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 excludeFromDividends(address account) external onlyOwner{
	    dividendTracker.excludeFromDividends(account);
	}

    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(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(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');


        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner()
        )
        
        {
            
            swapping = true;

            uint256 walletTokens = contractTokenBalance.mul(marketingFee.add(donationFee)).div(totalFees);
            uint256 contractBalance = address(this).balance;
            swapTokensForEth(walletTokens);
            uint256 newBalance = address(this).balance.sub(contractBalance);
            uint256 marketingShare = newBalance.mul(marketingFee).div(donationFee.add(marketingFee));
            uint256 buybackShare = newBalance.sub(marketingShare);
            payable(_marketingWalletAddress).transfer(marketingShare);
            payable(_donationWallet).transfer(buybackShare);

            uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees);
            swapAndLiquify(swapTokens);

            uint256 sellTokens = balanceOf(address(this));
            swapAndSendDividends(sellTokens);

            swapping = false;
        }


        bool takeFee = !swapping;

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

        if(takeFee) {
        	uint256 fees = amount.mul(totalFees).div(100);
        	if(automatedMarketMakerPairs[to]){
        	    fees += amount.mul(1).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(!swapping) {
	    	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 swapAndLiquify(uint256 tokens) private {
       // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        // 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(half); // <- this 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);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }


    function swapTokensForEth(uint256 tokenAmount) private {


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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }

    function swapTokensForUSDT(uint256 tokenAmount) private {

        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = USDT;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    }

    function swapAndSendDividends(uint256 tokens) private{
        swapTokensForUSDT(tokens);
        uint256 dividends = IERC20(USDT).balanceOf(address(this));
        bool success = IERC20(USDT).transfer(address(dividendTracker), dividends);

        if (success) {
            dividendTracker.distributeUSDTDividends(dividends);
            emit SendDividends(tokens, dividends);
        }
    }
}

contract RisingSunDividendTracker is Ownable, DividendPayingToken {
    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 ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

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

    constructor() public DividendPayingToken("RisingSun_Dividen_Tracker", "RisingSun_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 10000000000 *  10**9; //must hold 10000000000+ tokens
    }

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

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

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

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

    	emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "RisingSun_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "RisingSun_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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapBNBForTokens","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":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"USDT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USDTRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_donationWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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 RisingSunDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","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":"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":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"address payable","name":"wallet","type":"address"}],"name":"setDonationWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLiquiditFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setUSDTRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_donationFee","type":"uint256"}],"name":"setdonationFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","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"}]

60a06040526009805461dead6001600160a01b03199091161790557fdac17f958d2ee523a2206206994597c13d831ec700000000000000000000000060805269021e19e0c9bab2400000600a556004600c8190556003600d819055600e819055600f81905562000099916200008590829082908262000674602090811b6200271217901c565b6200067460201b620027121790919060201c565b601055601180546001600160a01b031990811673d20729c5a9b8af765f3675c697e536eef71a27891790915560128054909116735f7865e60d173f7618f41ae0e6e36ba2d76f481a179055620493e0601355348015620000f857600080fd5b506040518060400160405280600a8152602001692934b9b4b7339029bab760b11b8152506040518060400160405280600381526020016229aaa760e91b81525081600390805190602001906200015092919062000a5d565b5080516200016690600490602084019062000a5d565b50505060006200017b620006d660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001d79062000ae2565b604051809103906000f080158015620001f4573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027057600080fd5b505afa15801562000285573d6000803e3d6000fd5b505050506040513d60208110156200029c57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002ed57600080fd5b505afa15801562000302573d6000803e3d6000fd5b505050506040513d60208110156200031957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200036c57600080fd5b505af115801562000381573d6000803e3d6000fd5b505050506040513d60208110156200039857600080fd5b5051600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620003d9816001620006da565b6008546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200042757600080fd5b505af11580156200043c573d6000803e3d6000fd5b50506008546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200048d57600080fd5b505af1158015620004a2573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620004c36200080d565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156200050357600080fd5b505af115801562000518573d6000803e3d6000fd5b50506008546009546040805163031e79db60e41b81526001600160a01b03928316600482015290519190921693506331e79db09250602480830192600092919082900301818387803b1580156200056e57600080fd5b505af115801562000583573d6000803e3d6000fd5b50506008546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b158015620005d657600080fd5b505af1158015620005eb573d6000803e3d6000fd5b505050506200060b620006036200080d60201b60201c565b60016200081c565b60115462000624906001600160a01b031660016200081c565b6012546200063d906001600160a01b031660016200081c565b6200064a3060016200081c565b6200066c620006586200080d565b6c01431e0fae6d7217caa000000062000949565b505062000b07565b600082820183811015620006cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03821660009081526015602052604090205460ff16151581151514156200073a5760405162461bcd60e51b815260040180806020018281038252604381526020018062006cf66043913960600191505060405180910390fd5b6001600160a01b0382166000908152601560205260409020805460ff19168215801591909117909155620007d1576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015620007b757600080fd5b505af1158015620007cc573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b62000826620006d6565b6005546001600160a01b0390811691161462000889576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620008e95760405162461bcd60e51b815260040180806020018281038252603581526020018062006cc16035913960400191505060405180910390fd5b6001600160a01b038216600081815260146020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620009a5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620009b36000838362000a58565b620009cf816002546200067460201b620027121790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a029183906200271262000674821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000aa057805160ff191683800117855562000ad0565b8280016001018555821562000ad0579182015b8281111562000ad057825182559160200191906001019062000ab3565b5062000ade92915062000af0565b5090565b61236d806200495483390190565b5b8082111562000ade576000815560010162000af1565b60805160601c613e2062000b34600039806123fe5280613570528061363952806139755250613e206000f3fe6080604052600436106103855760003560e01c8063715018a6116101d1578063a9059cbb11610102578063c54e44eb116100a0578063e7841ec01161006f578063e7841ec014610ce9578063e98030c714610cfe578063f27fd25414610d28578063f2fde38b14610d525761038c565b8063c54e44eb14610c5a578063ce2fea3314610c6f578063dd62ed3e14610c99578063e2f4560514610cd45761038c565b8063afa4f3b2116100dc578063afa4f3b214610b43578063b62496f514610b6d578063c024666814610ba0578063c492f04614610bdb5761038c565b8063a9059cbb14610a62578063ad56c13c14610a9b578063adefd90c14610b195761038c565b806398118cb41161016f578063a26579ad11610149578063a26579ad146109cc578063a37f4ea9146109e1578063a457c2d7146109f6578063a8b9d24014610a2f5761038c565b806398118cb4146109675780639a7a23d61461097c5780639c1b8af5146109b75761038c565b8063871c128d116101ab578063871c128d146108e057806388bdd9be1461090a5780638da5cb5b1461093d57806395d89b41146109525761038c565b8063715018a6146108a157806381b5e27d146108b657806385141a77146108cb5761038c565b80634144d9e4116102b65780635d098b38116102545780636843cd84116102235780636843cd84146107fc5780636b67c4df1461082f578063700bb1911461084457806370a082311461086e5761038c565b80635d098b3814610757578063625e764c1461078a57806364b0f653146107b457806365b8dbc0146107c95761038c565b806349bd5a5e1161029057806349bd5a5e146106c75780634e71d92d146106dc5780634fbee193146106f15780635a96cdd7146107245761038c565b80634144d9e41461064d57806342966c6814610662578063455a43961461068c5761038c565b806323b872dd11610323578063313ce567116102fd578063313ce567146105a157806331e79db0146105cc57806339509351146105ff5780633d082266146106385761038c565b806323b872dd146105345780632c1f52161461057757806330bb4cff1461058c5761038c565b806313114a9d1161035f57806313114a9d146104945780631694505e146104bb57806318160ddd146104ec5780631cdd3be3146105015761038c565b806306fdde0314610391578063095ea7b31461041b5780630a9c4a0a146104685761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610d85565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103e05781810151838201526020016103c8565b50505050905090810190601f16801561040d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561042757600080fd5b506104546004803603604081101561043e57600080fd5b506001600160a01b038135169060200135610e1b565b604080519115158252519081900360200190f35b34801561047457600080fd5b506104926004803603602081101561048b57600080fd5b5035610e39565b005b3480156104a057600080fd5b506104a9610ebc565b60408051918252519081900360200190f35b3480156104c757600080fd5b506104d0610ec2565b604080516001600160a01b039092168252519081900360200190f35b3480156104f857600080fd5b506104a9610ed1565b34801561050d57600080fd5b506104546004803603602081101561052457600080fd5b50356001600160a01b0316610ed7565b34801561054057600080fd5b506104546004803603606081101561055757600080fd5b506001600160a01b03813581169160208101359091169060400135610eec565b34801561058357600080fd5b506104d0610f73565b34801561059857600080fd5b506104a9610f82565b3480156105ad57600080fd5b506105b6610ff8565b6040805160ff9092168252519081900360200190f35b3480156105d857600080fd5b50610492600480360360208110156105ef57600080fd5b50356001600160a01b0316610ffd565b34801561060b57600080fd5b506104546004803603604081101561062257600080fd5b506001600160a01b0381351690602001356110be565b34801561064457600080fd5b506104a961110c565b34801561065957600080fd5b506104d0611112565b34801561066e57600080fd5b506104926004803603602081101561068557600080fd5b5035611121565b34801561069857600080fd5b50610492600480360360408110156106af57600080fd5b506001600160a01b0381351690602001351515611186565b3480156106d357600080fd5b506104d0611209565b3480156106e857600080fd5b50610492611218565b3480156106fd57600080fd5b506104546004803603602081101561071457600080fd5b50356001600160a01b031661129d565b34801561073057600080fd5b506104926004803603602081101561074757600080fd5b50356001600160a01b03166112bb565b34801561076357600080fd5b506104926004803603602081101561077a57600080fd5b50356001600160a01b0316611335565b34801561079657600080fd5b50610492600480360360208110156107ad57600080fd5b50356113af565b3480156107c057600080fd5b506104a9611431565b3480156107d557600080fd5b50610492600480360360208110156107ec57600080fd5b50356001600160a01b0316611476565b34801561080857600080fd5b506104a96004803603602081101561081f57600080fd5b50356001600160a01b03166116fb565b34801561083b57600080fd5b506104a961177e565b34801561085057600080fd5b506104926004803603602081101561086757600080fd5b5035611784565b34801561087a57600080fd5b506104a96004803603602081101561089157600080fd5b50356001600160a01b031661186b565b3480156108ad57600080fd5b50610492611886565b3480156108c257600080fd5b506104a9611928565b3480156108d757600080fd5b506104d061192e565b3480156108ec57600080fd5b506104926004803603602081101561090357600080fd5b503561193d565b34801561091657600080fd5b506104926004803603602081101561092d57600080fd5b50356001600160a01b0316611a5a565b34801561094957600080fd5b506104d0611db1565b34801561095e57600080fd5b506103a6611dc0565b34801561097357600080fd5b506104a9611e21565b34801561098857600080fd5b506104926004803603604081101561099f57600080fd5b506001600160a01b0381351690602001351515611e27565b3480156109c357600080fd5b506104a9611ed6565b3480156109d857600080fd5b506104a9611edc565b3480156109ed57600080fd5b506104d0611f21565b348015610a0257600080fd5b5061045460048036036040811015610a1957600080fd5b506001600160a01b038135169060200135611f30565b348015610a3b57600080fd5b506104a960048036036020811015610a5257600080fd5b50356001600160a01b0316611f98565b348015610a6e57600080fd5b5061045460048036036040811015610a8557600080fd5b506001600160a01b038135169060200135611fe9565b348015610aa757600080fd5b50610ace60048036036020811015610abe57600080fd5b50356001600160a01b0316611ffd565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610b2557600080fd5b5061049260048036036020811015610b3c57600080fd5b50356120dd565b348015610b4f57600080fd5b5061049260048036036020811015610b6657600080fd5b5035612154565b348015610b7957600080fd5b5061045460048036036020811015610b9057600080fd5b50356001600160a01b03166121b1565b348015610bac57600080fd5b5061049260048036036040811015610bc357600080fd5b506001600160a01b03813516906020013515156121c6565b348015610be757600080fd5b5061049260048036036040811015610bfe57600080fd5b810190602081018135640100000000811115610c1957600080fd5b820183602082011115610c2b57600080fd5b80359060200191846020830284011164010000000083111715610c4d57600080fd5b91935091503515156122dc565b348015610c6657600080fd5b506104d06123fc565b348015610c7b57600080fd5b5061049260048036036020811015610c9257600080fd5b5035612420565b348015610ca557600080fd5b506104a960048036036040811015610cbc57600080fd5b506001600160a01b0381358116916020013516612498565b348015610ce057600080fd5b506104a96124c3565b348015610cf557600080fd5b506104a96124c9565b348015610d0a57600080fd5b5061049260048036036020811015610d2157600080fd5b503561250e565b348015610d3457600080fd5b50610ace60048036036020811015610d4b57600080fd5b50356125b3565b348015610d5e57600080fd5b5061049260048036036020811015610d7557600080fd5b50356001600160a01b0316612619565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e115780601f10610de657610100808354040283529160200191610e11565b820191906000526020600020905b815481529060010190602001808311610df457829003601f168201915b5050505050905090565b6000610e2f610e28612773565b8484612777565b5060015b92915050565b610e41612773565b6005546001600160a01b03908116911614610e91576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600f819055600e54600d54600c54610eb6928492610eb0928391612712565b90612712565b60105550565b60105481565b6006546001600160a01b031681565b60025490565b600b6020526000908152604090205460ff1681565b6000610ef9848484612863565b610f6984610f05612773565b610f6485604051806060016040528060288152602001613c96602891396001600160a01b038a16600090815260016020526040812090610f43612773565b6001600160a01b031681526020810191909152604001600020549190612e3e565b612777565b5060019392505050565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610fc757600080fd5b505afa158015610fdb573d6000803e3d6000fd5b505050506040513d6020811015610ff157600080fd5b5051905090565b600990565b611005612773565b6005546001600160a01b03908116911614611055576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156110a357600080fd5b505af11580156110b7573d6000803e3d6000fd5b5050505050565b6000610e2f6110cb612773565b84610f6485600160006110dc612773565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612712565b600f5481565b6011546001600160a01b031681565b611129612773565b6005546001600160a01b03908116911614611179576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6111833382612ed5565b50565b61118e612773565b6005546001600160a01b039081169116146111de576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561126f57600080fd5b505af1158015611283573d6000803e3d6000fd5b505050506040513d602081101561129957600080fd5b5050565b6001600160a01b031660009081526014602052604090205460ff1690565b6112c3612773565b6005546001600160a01b03908116911614611313576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b61133d612773565b6005546001600160a01b0390811691161461138d576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6113b7612773565b6005546001600160a01b03908116911614611407576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b80600e81905550610eb6600f54610eb0600e54610eb0600d54600c5461271290919063ffffffff16565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610fc757600080fd5b61147e612773565b6005546001600160a01b039081169116146114ce576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6006546001600160a01b038281169116141561151b5760405162461bcd60e51b815260040180806020018281038252602e815260200180613d48602e913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156115b457600080fd5b505afa1580156115c8573d6000803e3d6000fd5b505050506040513d60208110156115de57600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561163057600080fd5b505afa158015611644573d6000803e3d6000fd5b505050506040513d602081101561165a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156116ac57600080fd5b505af11580156116c0573d6000803e3d6000fd5b505050506040513d60208110156116d657600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561174c57600080fd5b505afa158015611760573d6000803e3d6000fd5b505050506040513d602081101561177657600080fd5b505192915050565b600e5481565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156117db57600080fd5b505af11580156117ef573d6000803e3d6000fd5b505050506040513d606081101561180557600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b61188e612773565b6005546001600160a01b039081169116146118de576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600c5481565b6009546001600160a01b031681565b611945612773565b6005546001600160a01b03908116911614611995576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b62030d4081101580156119ab5750620c35008111155b6119e65760405162461bcd60e51b815260040180806020018281038252603f815260200180613b76603f913960400191505060405180910390fd5b601354811415611a275760405162461bcd60e51b8152600401808060200182810382526037815260200180613c3e6037913960400191505060405180910390fd5b60135460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601355565b611a62612773565b6005546001600160a01b03908116911614611ab2576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611aff5760405162461bcd60e51b8152600401808060200182810382526038815260200180613bb56038913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611b4757600080fd5b505afa158015611b5b573d6000803e3d6000fd5b505050506040513d6020811015611b7157600080fd5b50516001600160a01b031614611bb85760405162461bcd60e51b8152600401808060200182810382526051815260200180613bed6051913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611c0757600080fd5b505af1158015611c1b573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611c6657600080fd5b505af1158015611c7a573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611c95611db1565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611cd457600080fd5b505af1158015611ce8573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611d3a57600080fd5b505af1158015611d4e573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e115780601f10610de657610100808354040283529160200191610e11565b600d5481565b611e2f612773565b6005546001600160a01b03908116911614611e7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6007546001600160a01b0383811691161415611ecc5760405162461bcd60e51b8152600401808060200182810382526050815260200180613d766050913960600191505060405180910390fd5b6112998282612fd1565b60135481565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610fc757600080fd5b6012546001600160a01b031681565b6000610e2f611f3d612773565b84610f6485604051806060016040528060258152602001613dc66025913960016000611f67612773565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612e3e565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561174c57600080fd5b6000610e2f611ff6612773565b8484612863565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b15801561206c57600080fd5b505afa158015612080573d6000803e3d6000fd5b505050506040513d61010081101561209757600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b6120e5612773565b6005546001600160a01b03908116911614612135576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600d819055600f54600e54600c54610eb69291610eb091829086612712565b61215c612773565b6005546001600160a01b039081169116146121ac576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600a55565b60156020526000908152604090205460ff1681565b6121ce612773565b6005546001600160a01b0390811691161461221e576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff161515811515141561227c5760405162461bcd60e51b8152600401808060200182810382526035815260200180613ad86035913960400191505060405180910390fd5b6001600160a01b038216600081815260146020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6122e4612773565b6005546001600160a01b03908116911614612334576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b60005b8281101561238957816014600086868581811061235057fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101612337565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b612428612773565b6005546001600160a01b03908116911614612478576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600c819055600f54600e54600d54610eb69291610eb09182908690612712565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610fc757600080fd5b612516612773565b6005546001600160a01b03908116911614612566576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b1580156110a357600080fd5b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b15801561206c57600080fd5b612621612773565b6005546001600160a01b03908116911614612671576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6001600160a01b0381166126b65760405162461bcd60e51b8152600401808060200182810382526026815260200180613a906026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008282018381101561276c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166127bc5760405162461bcd60e51b8152600401808060200182810382526024815260200180613d246024913960400191505060405180910390fd5b6001600160a01b0382166128015760405162461bcd60e51b8152600401808060200182810382526022815260200180613ab66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166128a85760405162461bcd60e51b8152600401808060200182810382526025815260200180613cff6025913960400191505060405180910390fd5b6001600160a01b0382166128ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180613a4b6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff1615801561292f57506001600160a01b0382166000908152600b602052604090205460ff16155b612976576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b8061298c57612987838360006130ff565b612e39565b60006129973061186b565b600a54909150811080159081906129b85750600754600160a01b900460ff16155b80156129dd57506001600160a01b03851660009081526015602052604090205460ff16155b8015612a0257506129ec611db1565b6001600160a01b0316856001600160a01b031614155b8015612a275750612a11611db1565b6001600160a01b0316846001600160a01b031614155b15612b88576007805460ff60a01b1916600160a01b179055601054600f54600e54600092612a6c929091612a6691612a5f9190612712565b869061325a565b906132b3565b905047612a78826132f5565b6000612a84478361349b565b90506000612ab0612aa2600e54600f5461271290919063ffffffff16565b600e54612a6690859061325a565b90506000612abe838361349b565b6011546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612af9573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612b34573d6000803e3d6000fd5b506000612b52601054612a66600d548b61325a90919063ffffffff16565b9050612b5d816134dd565b6000612b683061186b565b9050612b7381613563565b50506007805460ff60a01b1916905550505050505b6007546001600160a01b03861660009081526014602052604090205460ff600160a01b909204821615911680612bd657506001600160a01b03851660009081526014602052604090205460ff165b15612bdf575060005b8015612c50576000612c016064612a666010548861325a90919063ffffffff16565b6001600160a01b03871660009081526015602052604090205490915060ff1615612c3757612c356064612a6687600161325a565b015b612c41858261349b565b9450612c4e8730836130ff565b505b612c5b8686866130ff565b6008546001600160a01b031663e30443bc87612c768161186b565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612cbc57600080fd5b505af1925050508015612ccd575060015b506008546001600160a01b031663e30443bc86612ce98161186b565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612d2f57600080fd5b505af1925050508015612d40575060015b50600754600160a01b900460ff16612e3557601354600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b158015612da657600080fd5b505af1925050508015612dda57506040513d6060811015612dc657600080fd5b508051602082015160409092015190919060015b612de357612e33565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b60008184841115612ecd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e92578181015183820152602001612e7a565b50505050905090810190601f168015612ebf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216612f1a5760405162461bcd60e51b8152600401808060200182810382526021815260200180613cde6021913960400191505060405180910390fd5b612f2682600083612e39565b612f6381604051806060016040528060228152602001613a6e602291396001600160a01b0385166000908152602081905260409020549190612e3e565b6001600160a01b038316600090815260208190526040902055600254612f89908261349b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03821660009081526015602052604090205460ff161515811515141561302f5760405162461bcd60e51b8152600401808060200182810382526043815260200180613b0d6043913960600191505060405180910390fd5b6001600160a01b0382166000908152601560205260409020805460ff191682158015919091179091556130c3576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156130aa57600080fd5b505af11580156130be573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166131445760405162461bcd60e51b8152600401808060200182810382526025815260200180613cff6025913960400191505060405180910390fd5b6001600160a01b0382166131895760405162461bcd60e51b8152600401808060200182810382526023815260200180613a4b6023913960400191505060405180910390fd5b613194838383612e39565b6131d181604051806060016040528060268152602001613b50602691396001600160a01b0386166000908152602081905260409020549190612e3e565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546132009082612712565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261326957506000610e33565b8282028284828161327657fe5b041461276c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613c756021913960400191505060405180910390fd5b600061276c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061375c565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061332357fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561337757600080fd5b505afa15801561338b573d6000803e3d6000fd5b505050506040513d60208110156133a157600080fd5b50518151829060019081106133b257fe5b6001600160a01b0392831660209182029290920101526006546133d89130911684612777565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561345e578181015183820152602001613446565b505050509050019650505050505050600060405180830381600087803b15801561348757600080fd5b505af1158015612e35573d6000803e3d6000fd5b600061276c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e3e565b60006134ea8260026132b3565b905060006134f8838361349b565b905047613504836132f5565b6000613510478361349b565b905061351c83826137c1565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61356c81613894565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156135db57600080fd5b505afa1580156135ef573d6000803e3d6000fd5b505050506040513d602081101561360557600080fd5b50516008546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f00000000000000000000000000000000000000000000000000000000000000009092169163a9059cbb9160448082019260209290919082900301818787803b15801561368357600080fd5b505af1158015613697573d6000803e3d6000fd5b505050506040513d60208110156136ad57600080fd5b505190508015612e39576008546040805163edd6bf8760e01b81526004810185905290516001600160a01b039092169163edd6bf879160248082019260009290919082900301818387803b15801561370457600080fd5b505af1158015613718573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600081836137ab5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612e92578181015183820152602001612e7a565b5060008385816137b757fe5b0495945050505050565b6006546137d99030906001600160a01b031684612777565b6006546001600160a01b031663f305d7198230856000806137f8611db1565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561386357600080fd5b505af1158015613877573d6000803e3d6000fd5b50505050506040513d606081101561388e57600080fd5b50505050565b6040805160038082526080820190925260609160208201838036833701905050905030816000815181106138c457fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561391857600080fd5b505afa15801561392c573d6000803e3d6000fd5b505050506040513d602081101561394257600080fd5b505181518290600190811061395357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000000000000000000000000000000000000000000000816002815181106139a157fe5b6001600160a01b0392831660209182029290920101526006546139c79130911684612777565b600654604051635c11d79560e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b0390971696635c11d795968a968a9594939092909160c40190602087810191028083838b831561345e57818101518382015260200161344656fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526973696e6753756e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427526973696e6753756e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526973696e6753756e3a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c303030526973696e6753756e3a20546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373526973696e6753756e3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520526973696e6753756e20746f6b656e20636f6e7472616374526973696e6753756e3a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373526973696e6753756e3a2054686520726f7574657220616c72656164792068617320746861742061646472657373526973696e6753756e3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122069aba434054798df200e7205c85a10ac5539ba48a7a6973c882397e82ca1d22964736f6c634300060c003360c06040527fdac17f958d2ee523a2206206994597c13d831ec70000000000000000000000006080523480156200003557600080fd5b50604080518082018252601981527f526973696e6753756e5f4469766964656e5f547261636b65720000000000000060208083019182528351808501909452601a84527f526973696e6753756e5f4469766964656e645f547261636b657200000000000090840152815191929183918391620000b4916003916200014b565b508051620000ca9060049060208401906200014b565b5050506000620000df6200014760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050610e1060115550678ac7230489e8000060a052620001e7565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b60805160601c60a0516121556200021860003980610f1d528061100e525080610f415280611ac452506121556000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638da5cb5b11610125578063c54e44eb116100ad578063e98030c71161007c578063e98030c714610666578063edd6bf8714610683578063f2fde38b146106a0578063fbcbc0f1146106c6578063ffb2c479146106ec5761021c565b8063c54e44eb146105fc578063dd62ed3e14610604578063e30443bc14610632578063e7841ec01461065e5761021c565b8063a8b9d240116100f4578063a8b9d2401461054e578063a9059cbb14610574578063aafd847a146105a0578063bc4c4b37146105c6578063be10b614146105f45761021c565b80638da5cb5b146104d057806391b89fba146104f457806395d89b411461051a578063a457c2d7146105225761021c565b806331e79db0116101a85780636a474002116101775780636a4740021461048a5780636f2789ec1461049257806370a082311461049a578063715018a6146104c057806385a6b3ae146104c85761021c565b806331e79db0146103a857806339509351146103d05780634e7b827f146103fc5780635183d6fd146104225761021c565b8063226cfa3d116101ef578063226cfa3d1461030057806323b872dd1461032657806327ce01471461035c5780633009a60914610382578063313ce5671461038a5761021c565b806306fdde0314610221578063095ea7b31461029e57806309bbedde146102de57806318160ddd146102f8575b600080fd5b610229610727565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356107bd565b604080519115158252519081900360200190f35b6102e66107db565b60408051918252519081900360200190f35b6102e66107e1565b6102e66004803603602081101561031657600080fd5b50356001600160a01b03166107e7565b6102ca6004803603606081101561033c57600080fd5b506001600160a01b038135811691602081013590911690604001356107f9565b6102e66004803603602081101561037257600080fd5b50356001600160a01b0316610880565b6102e66108df565b6103926108e5565b6040805160ff9092168252519081900360200190f35b6103ce600480360360208110156103be57600080fd5b50356001600160a01b03166108ea565b005b6102ca600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610a46565b6102ca6004803603602081101561041257600080fd5b50356001600160a01b0316610a94565b61043f6004803603602081101561043857600080fd5b5035610aa9565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b6103ce610c08565b6102e6610c3f565b6102e6600480360360208110156104b057600080fd5b50356001600160a01b0316610c45565b6103ce610c60565b6102e6610d02565b6104d8610d08565b604080516001600160a01b039092168252519081900360200190f35b6102e66004803603602081101561050a57600080fd5b50356001600160a01b0316610d17565b610229610d22565b6102ca6004803603604081101561053857600080fd5b506001600160a01b038135169060200135610d83565b6102e66004803603602081101561056457600080fd5b50356001600160a01b0316610deb565b6102ca6004803603604081101561058a57600080fd5b506001600160a01b038135169060200135610e17565b6102e6600480360360208110156105b657600080fd5b50356001600160a01b0316610e2b565b6102ca600480360360408110156105dc57600080fd5b506001600160a01b0381351690602001351515610e46565b6102e6610f1b565b6104d8610f3f565b6102e66004803603604081101561061a57600080fd5b506001600160a01b0381358116916020013516610f63565b6103ce6004803603604081101561064857600080fd5b506001600160a01b038135169060200135610f8e565b6102e6611158565b6103ce6004803603602081101561067c57600080fd5b503561115e565b6103ce6004803603602081101561069957600080fd5b503561127a565b6103ce600480360360208110156106b657600080fd5b50356001600160a01b0316611364565b61043f600480360360208110156106dc57600080fd5b50356001600160a01b031661145d565b6107096004803603602081101561070257600080fd5b50356115d0565b60408051938452602084019290925282820152519081900360600190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107d16107ca6116ce565b84846116d2565b5060015b92915050565b600a5490565b60025490565b60106020526000908152604090205481565b60006108068484846117be565b610876846108126116ce565b61087185604051806060016040528060288152602001611fef602891396001600160a01b038a166000908152600160205260408120906108506116ce565b6001600160a01b0316815260208101919091526040016000205491906117f5565b6116d2565b5060019392505050565b6001600160a01b038116600090815260076020526040812054600160801b906108cf906108ca906108c46108bf6108b688610c45565b6006549061188c565b6118ec565b906118fc565b61192f565b816108d657fe5b0490505b919050565b600e5481565b600990565b6108f26116ce565b6005546001600160a01b03908116911614610942576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600f602052604090205460ff161561096857600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff19166001179055610996908290611942565b6040805163131836e760e21b8152600a60048201526001600160a01b0383166024820152905173c3fe1f123ec248357d1b1b1dafdea36f190a541191634c60db9c916044808301926000929190829003018186803b1580156109f757600080fd5b505af4158015610a0b573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b60006107d1610a536116ce565b846108718560016000610a646116ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061199b565b600f6020526000908152604090205460ff1681565b600080600080600080600080600a73c3fe1f123ec248357d1b1b1dafdea36f190a541163deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b0757600080fd5b505af4158015610b1b573d6000803e3d6000fd5b505050506040513d6020811015610b3157600080fd5b50518910610b58575060009650600019955085945086935083925082915081905080610bfd565b6000600a73c3fe1f123ec248357d1b1b1dafdea36f190a541163d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610bb457600080fd5b505af4158015610bc8573d6000803e3d6000fd5b505050506040513d6020811015610bde57600080fd5b50519050610beb8161145d565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260040180806020018281038252606f815260200180611f1e606f913960800191505060405180910390fd5b60115481565b6001600160a01b031660009081526020819052604090205490565b610c686116ce565b6005546001600160a01b03908116911614610cb8576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60095481565b6005546001600160a01b031690565b60006107d582610deb565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b35780601f10610788576101008083540402835291602001916107b3565b60006107d1610d906116ce565b84610871856040518060600160405280602581526020016120fb6025913960016000610dba6116ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906117f5565b6001600160a01b0381166000908152600860205260408120546107d590610e1184610880565b906119f5565b60006107d1610e246116ce565b84846117be565b6001600160a01b031660009081526008602052604090205490565b6000610e506116ce565b6005546001600160a01b03908116911614610ea0576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b6000610eab84611a37565b90508015610f11576001600160a01b0384166000818152601060209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a360019150506107d5565b5060009392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f966116ce565b6005546001600160a01b03908116911614610fe6576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600f602052604090205460ff161561100c57611154565b7f000000000000000000000000000000000000000000000000000000000000000081106110c25761103d8282611942565b60408051632f0ad01760e21b8152600a60048201526001600160a01b038416602482015260448101839052905173c3fe1f123ec248357d1b1b1dafdea36f190a54119163bc2b405c916064808301926000929190829003018186803b1580156110a557600080fd5b505af41580156110b9573d6000803e3d6000fd5b50505050611147565b6110cd826000611942565b6040805163131836e760e21b8152600a60048201526001600160a01b0384166024820152905173c3fe1f123ec248357d1b1b1dafdea36f190a541191634c60db9c916044808301926000929190829003018186803b15801561112e57600080fd5b505af4158015611142573d6000803e3d6000fd5b505050505b611152826001610e46565b505b5050565b600e5490565b6111666116ce565b6005546001600160a01b039081169116146111b6576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b610e1081101580156111cb5750620151808111155b6112065760405162461bcd60e51b815260040180806020018281038252604f815260200180612037604f913960600191505060405180910390fd5b6011548114156112475760405162461bcd60e51b8152600401808060200182810382526041815260200180611f8d6041913960600191505060405180910390fd5b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6112826116ce565b6005546001600160a01b039081169116146112d2576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b60006112dc6107e1565b116112e657600080fd5b8015611361576113176112f76107e1565b61130583600160801b61188c565b8161130c57fe5b60065491900461199b565b60065560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a260095461135d908261199b565b6009555b50565b61136c6116ce565b6005546001600160a01b039081169116146113bc576040805162461bcd60e51b81526020600482018190526024820152600080516020612017833981519152604482015290519081900360640190fd5b6001600160a01b0381166114015760405162461bcd60e51b8152600401808060200182810382526026815260200180611ed66026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600a73c3fe1f123ec248357d1b1b1dafdea36f190a54116317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b1580156114cf57600080fd5b505af41580156114e3573d6000803e3d6000fd5b505050506040513d60208110156114f957600080fd5b5051965060001995506000871261155d57600e5487111561152957600e54611522908890611bc6565b955061155d565b600e54600a546000911061153e57600061154d565b600e54600a5461154d916119f5565b905061155988826118fc565b9650505b61156688610deb565b945061157188610880565b6001600160a01b03891660009081526010602052604090205490945092508261159b5760006115a9565b6011546115a990849061199b565b91504282116115b95760006115c3565b6115c382426119f5565b9050919395975091939597565b600a5460009081908190806115f0575050600e54600092508291506116c7565b600e546000805a90506000805b898410801561160b57508582105b156116b657600a54600190950194851061162457600094505b6000600a600001868154811061163657fe5b60009182526020808320909101546001600160a01b0316808352601090915260409091205490915061166790611bf8565b1561168357611677816001610e46565b15611683576001909101905b60019092019160005a9050808511156116ad576116aa6116a386836119f5565b879061199b565b95505b93506115fd9050565b600e85905590975095509193505050505b9193909250565b3390565b6001600160a01b0383166117175760405162461bcd60e51b81526004018080602001828103825260248152602001806120a76024913960400191505060405180910390fd5b6001600160a01b03821661175c5760405162461bcd60e51b8152600401808060200182810382526022815260200180611efc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b81526004018080602001828103825260308152602001806120cb6030913960400191505060405180910390fd5b600081848411156118845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611849578181015183820152602001611831565b50505050905090810190601f1680156118765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261189b575060006107d5565b828202828482816118a857fe5b04146118e55760405162461bcd60e51b8152600401808060200182810382526021815260200180611fce6021913960400191505060405180910390fd5b9392505050565b600081818112156107d557600080fd5b60008282018183128015906119115750838112155b80611926575060008312801561192657508381125b6118e557600080fd5b60008082121561193e57600080fd5b5090565b600061194d83610c45565b90508082111561197557600061196383836119f5565b905061196f8482611c1f565b50611152565b8082101561115257600061198982846119f5565b90506119958482611c83565b50505050565b6000828201838110156118e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006118e583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117f5565b600080611a4383610deb565b90508015611bbd576001600160a01b038316600090815260086020526040902054611a6e908261199b565b6001600160a01b038416600081815260086020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a260007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611b3957600080fd5b505af1158015611b4d573d6000803e3d6000fd5b505050506040513d6020811015611b6357600080fd5b5051905080611bb5576001600160a01b038416600090815260086020526040902054611b8f90836119f5565b6001600160a01b03851660009081526008602052604081209190915592506108da915050565b5090506108da565b50600092915050565b6000818303818312801590611bdb5750838113155b80611926575060008312801561192657508381136118e557600080fd5b600042821115611c0a575060006108da565b601154611c1742846119f5565b101592915050565b611c298282611cc7565b611c63611c446108bf8360065461188c90919063ffffffff16565b6001600160a01b03841660009081526007602052604090205490611bc6565b6001600160a01b0390921660009081526007602052604090209190915550565b611c8d8282611db7565b611c63611ca86108bf8360065461188c90919063ffffffff16565b6001600160a01b038416600090815260076020526040902054906118fc565b6001600160a01b038216611d22576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d2e60008383611152565b600254611d3b908261199b565b6002556001600160a01b038216600090815260208190526040902054611d61908261199b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611dfc5760405162461bcd60e51b81526004018080602001828103825260218152602001806120866021913960400191505060405180910390fd5b611e0882600083611152565b611e4581604051806060016040528060228152602001611eb4602291396001600160a01b03851660009081526020819052604090205491906117f5565b6001600160a01b038316600090815260208190526040902055600254611e6b90826119f5565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526973696e6753756e5f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e20526973696e6753756e20636f6e74726163742e526973696e6753756e5f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526973696e6753756e5f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f75727345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373526973696e6753756e5f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207f387448d4529516b73e0e712168f8cc0b918862210259eb6de3342986b308b064736f6c634300060c0033526973696e6753756e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427526973696e6753756e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565

Deployed Bytecode

0x6080604052600436106103855760003560e01c8063715018a6116101d1578063a9059cbb11610102578063c54e44eb116100a0578063e7841ec01161006f578063e7841ec014610ce9578063e98030c714610cfe578063f27fd25414610d28578063f2fde38b14610d525761038c565b8063c54e44eb14610c5a578063ce2fea3314610c6f578063dd62ed3e14610c99578063e2f4560514610cd45761038c565b8063afa4f3b2116100dc578063afa4f3b214610b43578063b62496f514610b6d578063c024666814610ba0578063c492f04614610bdb5761038c565b8063a9059cbb14610a62578063ad56c13c14610a9b578063adefd90c14610b195761038c565b806398118cb41161016f578063a26579ad11610149578063a26579ad146109cc578063a37f4ea9146109e1578063a457c2d7146109f6578063a8b9d24014610a2f5761038c565b806398118cb4146109675780639a7a23d61461097c5780639c1b8af5146109b75761038c565b8063871c128d116101ab578063871c128d146108e057806388bdd9be1461090a5780638da5cb5b1461093d57806395d89b41146109525761038c565b8063715018a6146108a157806381b5e27d146108b657806385141a77146108cb5761038c565b80634144d9e4116102b65780635d098b38116102545780636843cd84116102235780636843cd84146107fc5780636b67c4df1461082f578063700bb1911461084457806370a082311461086e5761038c565b80635d098b3814610757578063625e764c1461078a57806364b0f653146107b457806365b8dbc0146107c95761038c565b806349bd5a5e1161029057806349bd5a5e146106c75780634e71d92d146106dc5780634fbee193146106f15780635a96cdd7146107245761038c565b80634144d9e41461064d57806342966c6814610662578063455a43961461068c5761038c565b806323b872dd11610323578063313ce567116102fd578063313ce567146105a157806331e79db0146105cc57806339509351146105ff5780633d082266146106385761038c565b806323b872dd146105345780632c1f52161461057757806330bb4cff1461058c5761038c565b806313114a9d1161035f57806313114a9d146104945780631694505e146104bb57806318160ddd146104ec5780631cdd3be3146105015761038c565b806306fdde0314610391578063095ea7b31461041b5780630a9c4a0a146104685761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610d85565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103e05781810151838201526020016103c8565b50505050905090810190601f16801561040d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561042757600080fd5b506104546004803603604081101561043e57600080fd5b506001600160a01b038135169060200135610e1b565b604080519115158252519081900360200190f35b34801561047457600080fd5b506104926004803603602081101561048b57600080fd5b5035610e39565b005b3480156104a057600080fd5b506104a9610ebc565b60408051918252519081900360200190f35b3480156104c757600080fd5b506104d0610ec2565b604080516001600160a01b039092168252519081900360200190f35b3480156104f857600080fd5b506104a9610ed1565b34801561050d57600080fd5b506104546004803603602081101561052457600080fd5b50356001600160a01b0316610ed7565b34801561054057600080fd5b506104546004803603606081101561055757600080fd5b506001600160a01b03813581169160208101359091169060400135610eec565b34801561058357600080fd5b506104d0610f73565b34801561059857600080fd5b506104a9610f82565b3480156105ad57600080fd5b506105b6610ff8565b6040805160ff9092168252519081900360200190f35b3480156105d857600080fd5b50610492600480360360208110156105ef57600080fd5b50356001600160a01b0316610ffd565b34801561060b57600080fd5b506104546004803603604081101561062257600080fd5b506001600160a01b0381351690602001356110be565b34801561064457600080fd5b506104a961110c565b34801561065957600080fd5b506104d0611112565b34801561066e57600080fd5b506104926004803603602081101561068557600080fd5b5035611121565b34801561069857600080fd5b50610492600480360360408110156106af57600080fd5b506001600160a01b0381351690602001351515611186565b3480156106d357600080fd5b506104d0611209565b3480156106e857600080fd5b50610492611218565b3480156106fd57600080fd5b506104546004803603602081101561071457600080fd5b50356001600160a01b031661129d565b34801561073057600080fd5b506104926004803603602081101561074757600080fd5b50356001600160a01b03166112bb565b34801561076357600080fd5b506104926004803603602081101561077a57600080fd5b50356001600160a01b0316611335565b34801561079657600080fd5b50610492600480360360208110156107ad57600080fd5b50356113af565b3480156107c057600080fd5b506104a9611431565b3480156107d557600080fd5b50610492600480360360208110156107ec57600080fd5b50356001600160a01b0316611476565b34801561080857600080fd5b506104a96004803603602081101561081f57600080fd5b50356001600160a01b03166116fb565b34801561083b57600080fd5b506104a961177e565b34801561085057600080fd5b506104926004803603602081101561086757600080fd5b5035611784565b34801561087a57600080fd5b506104a96004803603602081101561089157600080fd5b50356001600160a01b031661186b565b3480156108ad57600080fd5b50610492611886565b3480156108c257600080fd5b506104a9611928565b3480156108d757600080fd5b506104d061192e565b3480156108ec57600080fd5b506104926004803603602081101561090357600080fd5b503561193d565b34801561091657600080fd5b506104926004803603602081101561092d57600080fd5b50356001600160a01b0316611a5a565b34801561094957600080fd5b506104d0611db1565b34801561095e57600080fd5b506103a6611dc0565b34801561097357600080fd5b506104a9611e21565b34801561098857600080fd5b506104926004803603604081101561099f57600080fd5b506001600160a01b0381351690602001351515611e27565b3480156109c357600080fd5b506104a9611ed6565b3480156109d857600080fd5b506104a9611edc565b3480156109ed57600080fd5b506104d0611f21565b348015610a0257600080fd5b5061045460048036036040811015610a1957600080fd5b506001600160a01b038135169060200135611f30565b348015610a3b57600080fd5b506104a960048036036020811015610a5257600080fd5b50356001600160a01b0316611f98565b348015610a6e57600080fd5b5061045460048036036040811015610a8557600080fd5b506001600160a01b038135169060200135611fe9565b348015610aa757600080fd5b50610ace60048036036020811015610abe57600080fd5b50356001600160a01b0316611ffd565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610b2557600080fd5b5061049260048036036020811015610b3c57600080fd5b50356120dd565b348015610b4f57600080fd5b5061049260048036036020811015610b6657600080fd5b5035612154565b348015610b7957600080fd5b5061045460048036036020811015610b9057600080fd5b50356001600160a01b03166121b1565b348015610bac57600080fd5b5061049260048036036040811015610bc357600080fd5b506001600160a01b03813516906020013515156121c6565b348015610be757600080fd5b5061049260048036036040811015610bfe57600080fd5b810190602081018135640100000000811115610c1957600080fd5b820183602082011115610c2b57600080fd5b80359060200191846020830284011164010000000083111715610c4d57600080fd5b91935091503515156122dc565b348015610c6657600080fd5b506104d06123fc565b348015610c7b57600080fd5b5061049260048036036020811015610c9257600080fd5b5035612420565b348015610ca557600080fd5b506104a960048036036040811015610cbc57600080fd5b506001600160a01b0381358116916020013516612498565b348015610ce057600080fd5b506104a96124c3565b348015610cf557600080fd5b506104a96124c9565b348015610d0a57600080fd5b5061049260048036036020811015610d2157600080fd5b503561250e565b348015610d3457600080fd5b50610ace60048036036020811015610d4b57600080fd5b50356125b3565b348015610d5e57600080fd5b5061049260048036036020811015610d7557600080fd5b50356001600160a01b0316612619565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e115780601f10610de657610100808354040283529160200191610e11565b820191906000526020600020905b815481529060010190602001808311610df457829003601f168201915b5050505050905090565b6000610e2f610e28612773565b8484612777565b5060015b92915050565b610e41612773565b6005546001600160a01b03908116911614610e91576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600f819055600e54600d54600c54610eb6928492610eb0928391612712565b90612712565b60105550565b60105481565b6006546001600160a01b031681565b60025490565b600b6020526000908152604090205460ff1681565b6000610ef9848484612863565b610f6984610f05612773565b610f6485604051806060016040528060288152602001613c96602891396001600160a01b038a16600090815260016020526040812090610f43612773565b6001600160a01b031681526020810191909152604001600020549190612e3e565b612777565b5060019392505050565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610fc757600080fd5b505afa158015610fdb573d6000803e3d6000fd5b505050506040513d6020811015610ff157600080fd5b5051905090565b600990565b611005612773565b6005546001600160a01b03908116911614611055576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156110a357600080fd5b505af11580156110b7573d6000803e3d6000fd5b5050505050565b6000610e2f6110cb612773565b84610f6485600160006110dc612773565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612712565b600f5481565b6011546001600160a01b031681565b611129612773565b6005546001600160a01b03908116911614611179576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6111833382612ed5565b50565b61118e612773565b6005546001600160a01b039081169116146111de576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561126f57600080fd5b505af1158015611283573d6000803e3d6000fd5b505050506040513d602081101561129957600080fd5b5050565b6001600160a01b031660009081526014602052604090205460ff1690565b6112c3612773565b6005546001600160a01b03908116911614611313576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b61133d612773565b6005546001600160a01b0390811691161461138d576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6113b7612773565b6005546001600160a01b03908116911614611407576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b80600e81905550610eb6600f54610eb0600e54610eb0600d54600c5461271290919063ffffffff16565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610fc757600080fd5b61147e612773565b6005546001600160a01b039081169116146114ce576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6006546001600160a01b038281169116141561151b5760405162461bcd60e51b815260040180806020018281038252602e815260200180613d48602e913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156115b457600080fd5b505afa1580156115c8573d6000803e3d6000fd5b505050506040513d60208110156115de57600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561163057600080fd5b505afa158015611644573d6000803e3d6000fd5b505050506040513d602081101561165a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156116ac57600080fd5b505af11580156116c0573d6000803e3d6000fd5b505050506040513d60208110156116d657600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561174c57600080fd5b505afa158015611760573d6000803e3d6000fd5b505050506040513d602081101561177657600080fd5b505192915050565b600e5481565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156117db57600080fd5b505af11580156117ef573d6000803e3d6000fd5b505050506040513d606081101561180557600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b61188e612773565b6005546001600160a01b039081169116146118de576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600c5481565b6009546001600160a01b031681565b611945612773565b6005546001600160a01b03908116911614611995576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b62030d4081101580156119ab5750620c35008111155b6119e65760405162461bcd60e51b815260040180806020018281038252603f815260200180613b76603f913960400191505060405180910390fd5b601354811415611a275760405162461bcd60e51b8152600401808060200182810382526037815260200180613c3e6037913960400191505060405180910390fd5b60135460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601355565b611a62612773565b6005546001600160a01b03908116911614611ab2576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611aff5760405162461bcd60e51b8152600401808060200182810382526038815260200180613bb56038913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611b4757600080fd5b505afa158015611b5b573d6000803e3d6000fd5b505050506040513d6020811015611b7157600080fd5b50516001600160a01b031614611bb85760405162461bcd60e51b8152600401808060200182810382526051815260200180613bed6051913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611c0757600080fd5b505af1158015611c1b573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611c6657600080fd5b505af1158015611c7a573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611c95611db1565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611cd457600080fd5b505af1158015611ce8573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611d3a57600080fd5b505af1158015611d4e573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e115780601f10610de657610100808354040283529160200191610e11565b600d5481565b611e2f612773565b6005546001600160a01b03908116911614611e7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6007546001600160a01b0383811691161415611ecc5760405162461bcd60e51b8152600401808060200182810382526050815260200180613d766050913960600191505060405180910390fd5b6112998282612fd1565b60135481565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610fc757600080fd5b6012546001600160a01b031681565b6000610e2f611f3d612773565b84610f6485604051806060016040528060258152602001613dc66025913960016000611f67612773565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612e3e565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561174c57600080fd5b6000610e2f611ff6612773565b8484612863565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b15801561206c57600080fd5b505afa158015612080573d6000803e3d6000fd5b505050506040513d61010081101561209757600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b6120e5612773565b6005546001600160a01b03908116911614612135576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600d819055600f54600e54600c54610eb69291610eb091829086612712565b61215c612773565b6005546001600160a01b039081169116146121ac576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600a55565b60156020526000908152604090205460ff1681565b6121ce612773565b6005546001600160a01b0390811691161461221e576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff161515811515141561227c5760405162461bcd60e51b8152600401808060200182810382526035815260200180613ad86035913960400191505060405180910390fd5b6001600160a01b038216600081815260146020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6122e4612773565b6005546001600160a01b03908116911614612334576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b60005b8281101561238957816014600086868581811061235057fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101612337565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b7f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781565b612428612773565b6005546001600160a01b03908116911614612478576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b600c819055600f54600e54600d54610eb69291610eb09182908690612712565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610fc757600080fd5b612516612773565b6005546001600160a01b03908116911614612566576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b1580156110a357600080fd5b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b15801561206c57600080fd5b612621612773565b6005546001600160a01b03908116911614612671576040805162461bcd60e51b81526020600482018190526024820152600080516020613cbe833981519152604482015290519081900360640190fd5b6001600160a01b0381166126b65760405162461bcd60e51b8152600401808060200182810382526026815260200180613a906026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008282018381101561276c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166127bc5760405162461bcd60e51b8152600401808060200182810382526024815260200180613d246024913960400191505060405180910390fd5b6001600160a01b0382166128015760405162461bcd60e51b8152600401808060200182810382526022815260200180613ab66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166128a85760405162461bcd60e51b8152600401808060200182810382526025815260200180613cff6025913960400191505060405180910390fd5b6001600160a01b0382166128ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180613a4b6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff1615801561292f57506001600160a01b0382166000908152600b602052604090205460ff16155b612976576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b8061298c57612987838360006130ff565b612e39565b60006129973061186b565b600a54909150811080159081906129b85750600754600160a01b900460ff16155b80156129dd57506001600160a01b03851660009081526015602052604090205460ff16155b8015612a0257506129ec611db1565b6001600160a01b0316856001600160a01b031614155b8015612a275750612a11611db1565b6001600160a01b0316846001600160a01b031614155b15612b88576007805460ff60a01b1916600160a01b179055601054600f54600e54600092612a6c929091612a6691612a5f9190612712565b869061325a565b906132b3565b905047612a78826132f5565b6000612a84478361349b565b90506000612ab0612aa2600e54600f5461271290919063ffffffff16565b600e54612a6690859061325a565b90506000612abe838361349b565b6011546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612af9573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612b34573d6000803e3d6000fd5b506000612b52601054612a66600d548b61325a90919063ffffffff16565b9050612b5d816134dd565b6000612b683061186b565b9050612b7381613563565b50506007805460ff60a01b1916905550505050505b6007546001600160a01b03861660009081526014602052604090205460ff600160a01b909204821615911680612bd657506001600160a01b03851660009081526014602052604090205460ff165b15612bdf575060005b8015612c50576000612c016064612a666010548861325a90919063ffffffff16565b6001600160a01b03871660009081526015602052604090205490915060ff1615612c3757612c356064612a6687600161325a565b015b612c41858261349b565b9450612c4e8730836130ff565b505b612c5b8686866130ff565b6008546001600160a01b031663e30443bc87612c768161186b565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612cbc57600080fd5b505af1925050508015612ccd575060015b506008546001600160a01b031663e30443bc86612ce98161186b565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612d2f57600080fd5b505af1925050508015612d40575060015b50600754600160a01b900460ff16612e3557601354600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b158015612da657600080fd5b505af1925050508015612dda57506040513d6060811015612dc657600080fd5b508051602082015160409092015190919060015b612de357612e33565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b60008184841115612ecd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e92578181015183820152602001612e7a565b50505050905090810190601f168015612ebf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216612f1a5760405162461bcd60e51b8152600401808060200182810382526021815260200180613cde6021913960400191505060405180910390fd5b612f2682600083612e39565b612f6381604051806060016040528060228152602001613a6e602291396001600160a01b0385166000908152602081905260409020549190612e3e565b6001600160a01b038316600090815260208190526040902055600254612f89908261349b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03821660009081526015602052604090205460ff161515811515141561302f5760405162461bcd60e51b8152600401808060200182810382526043815260200180613b0d6043913960600191505060405180910390fd5b6001600160a01b0382166000908152601560205260409020805460ff191682158015919091179091556130c3576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156130aa57600080fd5b505af11580156130be573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166131445760405162461bcd60e51b8152600401808060200182810382526025815260200180613cff6025913960400191505060405180910390fd5b6001600160a01b0382166131895760405162461bcd60e51b8152600401808060200182810382526023815260200180613a4b6023913960400191505060405180910390fd5b613194838383612e39565b6131d181604051806060016040528060268152602001613b50602691396001600160a01b0386166000908152602081905260409020549190612e3e565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546132009082612712565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261326957506000610e33565b8282028284828161327657fe5b041461276c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613c756021913960400191505060405180910390fd5b600061276c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061375c565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061332357fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561337757600080fd5b505afa15801561338b573d6000803e3d6000fd5b505050506040513d60208110156133a157600080fd5b50518151829060019081106133b257fe5b6001600160a01b0392831660209182029290920101526006546133d89130911684612777565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561345e578181015183820152602001613446565b505050509050019650505050505050600060405180830381600087803b15801561348757600080fd5b505af1158015612e35573d6000803e3d6000fd5b600061276c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e3e565b60006134ea8260026132b3565b905060006134f8838361349b565b905047613504836132f5565b6000613510478361349b565b905061351c83826137c1565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61356c81613894565b60007f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec76001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156135db57600080fd5b505afa1580156135ef573d6000803e3d6000fd5b505050506040513d602081101561360557600080fd5b50516008546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec79092169163a9059cbb9160448082019260209290919082900301818787803b15801561368357600080fd5b505af1158015613697573d6000803e3d6000fd5b505050506040513d60208110156136ad57600080fd5b505190508015612e39576008546040805163edd6bf8760e01b81526004810185905290516001600160a01b039092169163edd6bf879160248082019260009290919082900301818387803b15801561370457600080fd5b505af1158015613718573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600081836137ab5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612e92578181015183820152602001612e7a565b5060008385816137b757fe5b0495945050505050565b6006546137d99030906001600160a01b031684612777565b6006546001600160a01b031663f305d7198230856000806137f8611db1565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561386357600080fd5b505af1158015613877573d6000803e3d6000fd5b50505050506040513d606081101561388e57600080fd5b50505050565b6040805160038082526080820190925260609160208201838036833701905050905030816000815181106138c457fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561391857600080fd5b505afa15801561392c573d6000803e3d6000fd5b505050506040513d602081101561394257600080fd5b505181518290600190811061395357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7816002815181106139a157fe5b6001600160a01b0392831660209182029290920101526006546139c79130911684612777565b600654604051635c11d79560e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b0390971696635c11d795968a968a9594939092909160c40190602087810191028083838b831561345e57818101518382015260200161344656fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526973696e6753756e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427526973696e6753756e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526973696e6753756e3a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c303030526973696e6753756e3a20546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373526973696e6753756e3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520526973696e6753756e20746f6b656e20636f6e7472616374526973696e6753756e3a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373526973696e6753756e3a2054686520726f7574657220616c72656164792068617320746861742061646472657373526973696e6753756e3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122069aba434054798df200e7205c85a10ac5539ba48a7a6973c882397e82ca1d22964736f6c634300060c0033

Libraries Used


Deployed Bytecode Sourcemap

43295:16678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13143:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13143:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50323:201;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50323:201:0;;:::i;:::-;;44008:94;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;43374:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;43374:41:0;;;;;;;;;;;;;;12096:108;;;;;;;;;;;;;:::i;43800:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43800:46:0;-1:-1:-1;;;;;43800:46:0;;:::i;13794:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13794:355:0;;;;;;;;;;;;;;;;;:::i;43490:47::-;;;;;;;;;;;;;:::i;52156:141::-;;;;;;;;;;;;;:::i;11939:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52725:123;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52725:123:0;-1:-1:-1;;;;;52725:123:0;;:::i;14558:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14558:218:0;;;;;;;;:::i;43971:30::-;;;;;;;;;;;;;:::i;44111:83::-;;;;;;;;;;;;;:::i;49488:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49488:93:0;;:::i;50933:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50933:123:0;;;;;;;;;;:::i;43422:29::-;;;;;;;;;;;;;:::i;53776:88::-;;;;;;;;;;;;;:::i;52305:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52305:125:0;-1:-1:-1;;;;;52305:125:0;;:::i;49593:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49593:112:0;-1:-1:-1;;;;;49593:112:0;;:::i;49359:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49359:121:0;-1:-1:-1;;;;;49359:121:0;;:::i;50106:205::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50106:205:0;;:::i;54006:141::-;;;;;;;;;;;;;:::i;48227:503::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48227:503:0;-1:-1:-1;;;;;48227:503:0;;:::i;52590:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52590:130:0;-1:-1:-1;;;;;52590:130:0;;:::i;43933:31::-;;;;;;;;;;;;;:::i;53509:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53509:259:0;;:::i;12267:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12267:127:0;-1:-1:-1;;;;;12267:127:0;;:::i;25501:148::-;;;;;;;;;;;;;:::i;43855:33::-;;;;;;;;;;;;;:::i;43546:70::-;;;;;;;;;;;;;:::i;51486:414::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51486:414:0;;:::i;47364:855::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47364:855:0;-1:-1:-1;;;;;47364:855:0;;:::i;24859:79::-;;;;;;;;;;;;;:::i;11196:104::-;;;;;;;;;;;;;:::i;43895:31::-;;;;;;;;;;;;;:::i;50654:267::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50654:267:0;;;;;;;;;;:::i;44357:40::-;;;;;;;;;;;;;:::i;52040:108::-;;;;;;;;;;;;;:::i;44201:75::-;;;;;;;;;;;;;:::i;15279:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15279:269:0;;;;;;;;:::i;52438:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52438:147:0;-1:-1:-1;;;;;52438:147:0;;:::i;12607:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12607:175:0;;;;;;;;:::i;52856:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52856:318:0;-1:-1:-1;;;;;52856:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;52856:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49912:186;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49912:186:0;;:::i;50532:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50532:112:0;;:::i;44673:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44673:58:0;-1:-1:-1;;;;;44673:58:0;;:::i;48738:301::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48738:301:0;;;;;;;;;;:::i;49047:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49047:304:0;-1:-1:-1;49047:304:0;;;;:::i;43625:83::-;;;;;;;;;;;;;:::i;49713:191::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49713:191:0;;:::i;12845:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12845:151:0;;;;;;;;;;:::i;43728:59::-;;;;;;;;;;;;;:::i;53872:126::-;;;;;;;;;;;;;:::i;51908:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51908:124:0;;:::i;53179:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53179:325:0;;:::i;25804:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25804:244:0;-1:-1:-1;;;;;25804:244:0;;:::i;10977:100::-;11064:5;11057:12;;;;;;;;-1:-1:-1;;11057:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11031:13;;11057:12;;11064:5;;11057:12;;11064:5;11057:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10977:100;:::o;13143:169::-;13226:4;13243:39;13252:12;:10;:12::i;:::-;13266:7;13275:6;13243:8;:39::i;:::-;-1:-1:-1;13300:4:0;13143:169;;;;;:::o;50323:201::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;50398:11:::1;:26:::0;;;50484:12:::1;::::0;50466::::1;::::0;50447:14:::1;::::0;:67:::1;::::0;50412:12;;50447:50:::1;::::0;;;:18:::1;:32::i;:::-;:36:::0;::::1;:50::i;:67::-;50435:9;:79:::0;-1:-1:-1;50323:201:0:o;44008:94::-;;;;:::o;43374:41::-;;;-1:-1:-1;;;;;43374:41:0;;:::o;12096:108::-;12184:12;;12096:108;:::o;43800:46::-;;;;;;;;;;;;;;;:::o;13794:355::-;13934:4;13951:36;13961:6;13969:9;13980:6;13951:9;:36::i;:::-;13998:121;14007:6;14015:12;:10;:12::i;:::-;14029:89;14067:6;14029:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14029:19:0;;;;;;:11;:19;;;;;;14049:12;:10;:12::i;:::-;-1:-1:-1;;;;;14029:33:0;;;;;;;;;;;;-1:-1:-1;14029:33:0;;;:89;:37;:89::i;:::-;13998:8;:121::i;:::-;-1:-1:-1;14137:4:0;13794:355;;;;;:::o;43490:47::-;;;-1:-1:-1;;;;;43490:47:0;;:::o;52156:141::-;52246:15;;:43;;;-1:-1:-1;;;52246:43:0;;;;52219:7;;-1:-1:-1;;;;;52246:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52246:43:0;;-1:-1:-1;52156:141:0;:::o;11939:92::-;12022:1;11939:92;:::o;52725:123::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;52798:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;52798:45:0;;-1:-1:-1;;;;;52798:45:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52725:123:::0;:::o;14558:218::-;14646:4;14663:83;14672:12;:10;:12::i;:::-;14686:7;14695:50;14734:10;14695:11;:25;14707:12;:10;:12::i;:::-;-1:-1:-1;;;;;14695:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14695:25:0;;;:34;;;;;;;;;;;:38;:50::i;43971:30::-;;;;:::o;44111:83::-;;;-1:-1:-1;;;;;44111:83:0;;:::o;49488:93::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;49548:25:::1;49554:10;49566:6;49548:5;:25::i;:::-;49488:93:::0;:::o;50933:123::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51017:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;51017:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50933:123::o;43422:29::-;;;-1:-1:-1;;;;;43422:29:0;;:::o;53776:88::-;53807:15;;:49;;;-1:-1:-1;;;53807:49:0;;53838:10;53807:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;53807:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53776:88:0:o;52305:125::-;-1:-1:-1;;;;;52394:28:0;52370:4;52394:28;;;:19;:28;;;;;;;;;52305:125::o;49593:112::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;49673:15:::1;:24:::0;;-1:-1:-1;;;;;;49673:24:0::1;-1:-1:-1::0;;;;;49673:24:0;;;::::1;::::0;;;::::1;::::0;;49593:112::o;49359:121::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;49440:23:::1;:32:::0;;-1:-1:-1;;;;;;49440:32:0::1;-1:-1:-1::0;;;;;49440:32:0;;;::::1;::::0;;;::::1;::::0;;49359:121::o;50106:205::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;50198:13:::1;50183:12;:28;;;;50234:67;50289:11;;50234:50;50271:12;;50234:32;50253:12;;50234:14;;:18;;:32;;;;:::i;54006:141::-:0;54098:15;;:41;;;-1:-1:-1;;;54098:41:0;;;;54071:7;;-1:-1:-1;;;;;54098:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;48227:503;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;48336:15:::1;::::0;-1:-1:-1;;;;;48314:38:0;;::::1;48336:15:::0;::::1;48314:38;;48306:97;;;;-1:-1:-1::0;;;48306:97:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48461:15;::::0;48419:59:::1;::::0;-1:-1:-1;;;;;48461:15:0;;::::1;::::0;48419:59;::::1;::::0;::::1;::::0;48461:15:::1;::::0;48419:59:::1;48489:15;:48:::0;;-1:-1:-1;;;;;;48489:48:0::1;-1:-1:-1::0;;;;;48489:48:0;;::::1;::::0;;;::::1;::::0;;;;48591:25:::1;::::0;;-1:-1:-1;;;48591:25:0;;;;-1:-1:-1;;48591:15:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48591:25:0;48658:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;48658:22:0;;;;-1:-1:-1;;;;;48573:69:0;;::::1;::::0;::::1;::::0;48651:4:::1;::::0;48658:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;48591:25:::1;::::0;48658:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48658:22:0;48573:108:::1;::::0;;-1:-1:-1;;;;;;48573:108:0::1;::::0;;;;;;-1:-1:-1;;;;;48573:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;48658:22:::1;::::0;48573:108;;;;;;;-1:-1:-1;48573:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48573:108:0;48692:13:::1;:30:::0;;-1:-1:-1;;;;;;48692:30:0::1;-1:-1:-1::0;;;;;48692:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;48227:503:0:o;52590:130::-;52681:15;;:34;;;-1:-1:-1;;;52681:34:0;;-1:-1:-1;;;;;52681:34:0;;;;;;;;;52660:7;;52681:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52681:34:0;;52590:130;-1:-1:-1;;52590:130:0:o;43933:31::-;;;;:::o;53509:259::-;53635:15;;:28;;;-1:-1:-1;;;;;;53635:28:0;;;;;;;;;;53569:18;;;;;;-1:-1:-1;;;;;53635:15:0;;;;:23;;:28;;;;;;;;;;;;;;;53569:18;53635:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53635:28:0;;;;;;;;;;;;53673:87;;;;;;;;;;;;;;;;;53635:28;53673:87;;;;;;;53635:28;;-1:-1:-1;53635:28:0;-1:-1:-1;53635:28:0;;-1:-1:-1;53750:9:0;;53738:5;;53673:87;;;;;;;;;53509:259;;;;:::o;12267:127::-;-1:-1:-1;;;;;12368:18:0;12341:7;12368:18;;;;;;;;;;;;12267:127::o;25501:148::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;25592:6:::1;::::0;25571:40:::1;::::0;25608:1:::1;::::0;-1:-1:-1;;;;;25592:6:0::1;::::0;25571:40:::1;::::0;25608:1;;25571:40:::1;25622:6;:19:::0;;-1:-1:-1;;;;;;25622:19:0::1;::::0;;25501:148::o;43855:33::-;;;;:::o;43546:70::-;;;-1:-1:-1;;;;;43546:70:0;;:::o;51486:414::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;51584:6:::1;51572:8;:18;;:40;;;;;51606:6;51594:8;:18;;51572:40;51564:116;;;;-1:-1:-1::0;;;51564:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51711:16;;51699:8;:28;;51691:96;;;;-1:-1:-1::0;;;51691:96:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51837:16;::::0;51803:51:::1;::::0;51827:8;;51803:51:::1;::::0;;;::::1;51865:16;:27:::0;51486:414::o;47364:855::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;47473:15:::1;::::0;-1:-1:-1;;;;;47451:38:0;;::::1;47473:15:::0;::::1;47451:38;;47443:107;;;;-1:-1:-1::0;;;47443:107:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47563:43;47642:10;47563:91;;47713:4;-1:-1:-1::0;;;;;47675:43:0::1;:18;-1:-1:-1::0;;;;;47675:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;47675:26:0;-1:-1:-1;;;;;47675:43:0::1;;47667:137;;;;-1:-1:-1::0;;;47667:137:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47817:18;-1:-1:-1::0;;;;;47817:39:0::1;;47865:18;47817:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;47817:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;47896:54:0::1;::::0;;-1:-1:-1;;;47896:54:0;;47944:4:::1;47896:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;47896:39:0;::::1;::::0;-1:-1:-1;47896:39:0::1;::::0;-1:-1:-1;47896:54:0;;;;;-1:-1:-1;;47896:54:0;;;;;;;-1:-1:-1;47896:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;47961:18;-1:-1:-1::0;;;;;47961:39:0::1;;48001:7;:5;:7::i;:::-;47961:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;47961:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48068:15:0::1;::::0;48020:65:::1;::::0;;-1:-1:-1;;;48020:65:0;;-1:-1:-1;;;;;48068:15:0;;::::1;48020:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;48020:39:0::1;::::0;-1:-1:-1;48020:65:0;;;;;48068:15:::1;::::0;48020:65;;;;;;;;48068:15;48020:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48145:15:0::1;::::0;48103:59:::1;::::0;-1:-1:-1;;;;;48145:15:0;;::::1;::::0;-1:-1:-1;48103:59:0;;::::1;::::0;-1:-1:-1;48103:59:0::1;::::0;48145:15:::1;::::0;48103:59:::1;48175:15;:36:::0;;-1:-1:-1;;;;;;48175:36:0::1;-1:-1:-1::0;;;;;48175:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;47364:855:0:o;24859:79::-;24924:6;;-1:-1:-1;;;;;24924:6:0;24859:79;:::o;11196:104::-;11285:7;11278:14;;;;;;;;-1:-1:-1;;11278:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11252:13;;11278:14;;11285:7;;11278:14;;11285:7;11278:14;;;;;;;;;;;;;;;;;;;;;;;;43895:31;;;;:::o;50654:267::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;50761:13:::1;::::0;-1:-1:-1;;;;;50753:21:0;;::::1;50761:13:::0;::::1;50753:21;;50745:114;;;;-1:-1:-1::0;;;50745:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50872:41;50901:4;50907:5;50872:28;:41::i;44357:40::-:0;;;;:::o;52040:108::-;52113:15;;:27;;;-1:-1:-1;;;52113:27:0;;;;52086:7;;-1:-1:-1;;;;;52113:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;44201:75;;;-1:-1:-1;;;;;44201:75:0;;:::o;15279:269::-;15372:4;15389:129;15398:12;:10;:12::i;:::-;15412:7;15421:96;15460:15;15421:96;;;;;;;;;;;;;;;;;:11;:25;15433:12;:10;:12::i;:::-;-1:-1:-1;;;;;15421:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15421:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;52438:147::-;52531:15;;:47;;;-1:-1:-1;;;52531:47:0;;-1:-1:-1;;;;;52531:47:0;;;;;;;;;52507:7;;52531:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;12607:175;12693:4;12710:42;12720:12;:10;:12::i;:::-;12734:9;12745:6;12710:9;:42::i;52856:318::-;52952:7;52974:6;52995;53016:7;53038;53060;53082;53104;53131:15;;;;;;;;;-1:-1:-1;;;;;53131:15:0;-1:-1:-1;;;;;53131:26:0;;53158:7;53131:35;;;;;;;;;;;;;-1:-1:-1;;;;;53131:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53131:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53131:35:0;;-1:-1:-1;53131:35:0;;-1:-1:-1;53131:35:0;-1:-1:-1;53131:35:0;-1:-1:-1;53131:35:0;-1:-1:-1;53131:35:0;;-1:-1:-1;53131:35:0;-1:-1:-1;52856:318:0;;;;;;;;;:::o;49912:186::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;49980:12:::1;:20:::0;;;50078:11:::1;::::0;50060:12:::1;::::0;50023:14:::1;::::0;:67:::1;::::0;50078:11;50023:50:::1;::::0;;;49995:5;50023:18:::1;:32::i;50532:112::-:0;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;50609:18:::1;:27:::0;50532:112::o;44673:58::-;;;;;;;;;;;;;;;:::o;48738:301::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48831:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;48823:106;;;;-1:-1:-1::0;;;48823:106:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;48940:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;48940:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;48997:34;;;;;;;::::1;::::0;;;;;;;;::::1;48738:301:::0;;:::o;49047:304::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;49164:9:::1;49160:115;49179:19:::0;;::::1;49160:115;;;49255:8;49220:19;:32;49240:8;;49249:1;49240:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;49240:11:0::1;49220:32:::0;;-1:-1:-1;49220:32:0;::::1;::::0;;;;;;-1:-1:-1;49220:32:0;:43;;-1:-1:-1;;49220:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;49200:3:0::1;49160:115;;;;49292:51;49324:8;;49334;49292:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;49292:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;49292:51:0;;-1:-1:-1;;;;;49292:51:0::1;49047:304:::0;;;:::o;43625:83::-;;;:::o;49713:191::-;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;49784:14:::1;:22:::0;;;49884:11:::1;::::0;49866:12:::1;::::0;49848::::1;::::0;49829:67:::1;::::0;49884:11;49829:50:::1;::::0;;;49801:5;;49829:18:::1;:32::i;12845:151::-:0;-1:-1:-1;;;;;12961:18:0;;;12934:7;12961:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12845:151::o;43728:59::-;;;;:::o;53872:126::-;53951:15;;:39;;;-1:-1:-1;;;53951:39:0;;;;53927:7;;-1:-1:-1;;;;;53951:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;51908:124;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;51982:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;51982:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;51982:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;53179:325:::0;53280:7;53302:6;53323;53344:7;53366;53388;53410;53432;53456:15;;;;;;;;;-1:-1:-1;;;;;53456:15:0;-1:-1:-1;;;;;53456:33:0;;53490:5;53456:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25804:244;25081:12;:10;:12::i;:::-;25071:6;;-1:-1:-1;;;;;25071:6:0;;;:22;;;25063:67;;;;;-1:-1:-1;;;25063:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25063:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25893:22:0;::::1;25885:73;;;;-1:-1:-1::0;;;25885:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25995:6;::::0;25974:38:::1;::::0;-1:-1:-1;;;;;25974:38:0;;::::1;::::0;25995:6:::1;::::0;25974:38:::1;::::0;25995:6:::1;::::0;25974:38:::1;26023:6;:17:::0;;-1:-1:-1;;;;;;26023:17:0::1;-1:-1:-1::0;;;;;26023:17:0;;;::::1;::::0;;;::::1;::::0;;25804:244::o;4506:181::-;4564:7;4596:5;;;4620:6;;;;4612:46;;;;;-1:-1:-1;;;4612:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4678:1;4506:181;-1:-1:-1;;;4506:181:0:o;3895:98::-;3975:10;3895:98;:::o;18465:380::-;-1:-1:-1;;;;;18601:19:0;;18593:68;;;;-1:-1:-1;;;18593:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18680:21:0;;18672:68;;;;-1:-1:-1;;;18672:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18753:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18805:32;;;;;;;;;;;;;;;;;18465:380;;;:::o;54157:2796::-;-1:-1:-1;;;;;54289:18:0;;54281:68;;;;-1:-1:-1;;;54281:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54368:16:0;;54360:64;;;;-1:-1:-1;;;54360:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54444:20:0;;;;;;:14;:20;;;;;;;;54443:21;:44;;;;-1:-1:-1;;;;;;54469:18:0;;;;;;:14;:18;;;;;;;;54468:19;54443:44;54435:76;;;;;-1:-1:-1;;;54435:76:0;;;;;;;;;;;;-1:-1:-1;;;54435:76:0;;;;;;;;;;;;;;;54529:11;54526:92;;54557:28;54573:4;54579:2;54583:1;54557:15;:28::i;:::-;54600:7;;54526:92;54632:28;54663:24;54681:4;54663:9;:24::i;:::-;54737:18;;54632:55;;-1:-1:-1;54713:42:0;;;;;;;54772:33;;-1:-1:-1;54797:8:0;;-1:-1:-1;;;54797:8:0;;;;54796:9;54772:33;:82;;;;-1:-1:-1;;;;;;54823:31:0;;;;;;:25;:31;;;;;;;;54822:32;54772:82;:114;;;;;54879:7;:5;:7::i;:::-;-1:-1:-1;;;;;54871:15:0;:4;-1:-1:-1;;;;;54871:15:0;;;54772:114;:144;;;;;54909:7;:5;:7::i;:::-;-1:-1:-1;;;;;54903:13:0;:2;-1:-1:-1;;;;;54903:13:0;;;54772:144;54768:1109;;;54976:8;:15;;-1:-1:-1;;;;54976:15:0;-1:-1:-1;;;54976:15:0;;;55091:9;;55073:11;;55056:12;;54976:15;;55031:70;;55091:9;;55031:55;;55056:29;;:12;:16;:29::i;:::-;55031:20;;:24;:55::i;:::-;:59;;:70::i;:::-;55008:93;-1:-1:-1;55142:21:0;55178:30;55008:93;55178:16;:30::i;:::-;55223:18;55244:42;:21;55270:15;55244:25;:42::i;:::-;55223:63;;55301:22;55326:63;55359:29;55375:12;;55359:11;;:15;;:29;;;;:::i;:::-;55341:12;;55326:28;;:10;;:14;:28::i;:63::-;55301:88;-1:-1:-1;55404:20:0;55427:30;:10;55301:88;55427:14;:30::i;:::-;55480:23;;55472:57;;55404:53;;-1:-1:-1;;;;;;55480:23:0;;55472:57;;;;;55514:14;;55480:23;55472:57;55480:23;55472:57;55514:14;55480:23;55472:57;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55552:15:0;;55544:47;;-1:-1:-1;;;;;55552:15:0;;;;55544:47;;;;;55578:12;;55552:15;55544:47;55552:15;55544:47;55578:12;55552:15;55544:47;;;;;;;;;;;;;;;;;;;;;55608:18;55629:53;55672:9;;55629:38;55654:12;;55629:20;:24;;:38;;;;:::i;:53::-;55608:74;;55697:26;55712:10;55697:14;:26::i;:::-;55740:18;55761:24;55779:4;55761:9;:24::i;:::-;55740:45;;55800:32;55821:10;55800:20;:32::i;:::-;-1:-1:-1;;55849:8:0;:16;;-1:-1:-1;;;;55849:16:0;;;-1:-1:-1;;;;;54768:1109:0;55907:8;;-1:-1:-1;;;;;56016:25:0;;55891:12;56016:25;;;55907:8;56016:25;;;;;;55907:8;-1:-1:-1;;;55907:8:0;;;;;55906:9;;56016:25;;:52;;-1:-1:-1;;;;;;56045:23:0;;;;;;:19;:23;;;;;;;;56016:52;56013:99;;;-1:-1:-1;56095:5:0;56013:99;56127:7;56124:280;;;56148:12;56163:30;56189:3;56163:21;56174:9;;56163:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;56208:29:0;;;;;;:25;:29;;;;;;56148:45;;-1:-1:-1;56208:29:0;;56205:92;;;56262:22;56280:3;56262:13;:6;56273:1;56262:10;:13::i;:22::-;56254:30;56205:92;56317:16;:6;56328:4;56317:10;:16::i;:::-;56308:25;;56350:42;56366:4;56380;56387;56350:15;:42::i;:::-;56124:280;;56416:33;56432:4;56438:2;56442:6;56416:15;:33::i;:::-;56466:15;;-1:-1:-1;;;;;56466:15:0;:26;56501:4;56508:15;56501:4;56508:9;:15::i;:::-;56466:58;;;;;;;;;;;;;-1:-1:-1;;;;;56466:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56462:74;56550:15;;-1:-1:-1;;;;;56550:15:0;:26;56585:2;56590:13;56585:2;56590:9;:13::i;:::-;56550:54;;;;;;;;;;;;;-1:-1:-1;;;;;56550:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56546:70;56632:8;;-1:-1:-1;;;56632:8:0;;;;56628:318;;56665:16;;56696:15;;:28;;;-1:-1:-1;;;;;;56696:28:0;;;;;;;;;;-1:-1:-1;;;;;56696:15:0;;;;:23;;:28;;;;;;;;;;;;;;;56651:11;56696:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56696:28:0;;;;;;;;;;;;;;;;56692:243;;;;;56813:86;;;;;;;;;;;;;;;;;;;;;;;;;;56889:9;;56878:4;;56813:86;;;;;;;;;56725:184;;;56692:243;56628:318;;54157:2796;;;;;;;:::o;5409:192::-;5495:7;5531:12;5523:6;;;;5515:29;;;;-1:-1:-1;;;5515:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5567:5:0;;;5409:192::o;17609:418::-;-1:-1:-1;;;;;17693:21:0;;17685:67;;;;-1:-1:-1;;;17685:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17765:49;17786:7;17803:1;17807:6;17765:20;:49::i;:::-;17848:68;17871:6;17848:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17848:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;17827:18:0;;:9;:18;;;;;;;;;;:89;17942:12;;:24;;17959:6;17942:16;:24::i;:::-;17927:12;:39;17982:37;;;;;;;;18008:1;;-1:-1:-1;;;;;17982:37:0;;;;;;;;;;;;17609:418;;:::o;51066:410::-;-1:-1:-1;;;;;51157:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;51149:120;;;;-1:-1:-1;;;51149:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51280:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;51280:39:0;;;;;;;;;;;;51332:79;;51357:15;;:42;;;-1:-1:-1;;;51357:42:0;;-1:-1:-1;;;;;51357:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51332:79;51428:40;;;;;;-1:-1:-1;;;;;51428:40:0;;;;;;;;51066:410;;:::o;16038:573::-;-1:-1:-1;;;;;16178:20:0;;16170:70;;;;-1:-1:-1;;;16170:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16259:23:0;;16251:71;;;;-1:-1:-1;;;16251:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16335:47;16356:6;16364:9;16375:6;16335:20;:47::i;:::-;16415:71;16437:6;16415:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16415:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16395:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16520:20;;;;;;;:32;;16545:6;16520:24;:32::i;:::-;-1:-1:-1;;;;;16497:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16568:35;;;;;;;16497:20;;16568:35;;;;;;;;;;;;;16038:573;;;:::o;5860:471::-;5918:7;6163:6;6159:47;;-1:-1:-1;6193:1:0;6186:8;;6159:47;6230:5;;;6234:1;6230;:5;:1;6254:5;;;;;:10;6246:56;;;;-1:-1:-1;;;6246:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6807:132;6865:7;6892:39;6896:1;6899;6892:39;;;;;;;;;;;;;;;;;:3;:39::i;57899:595::-;58053:16;;;58067:1;58053:16;;;58029:21;58053:16;;;;;58029:21;58053:16;;;;;;;;;;-1:-1:-1;58053:16:0;58029:40;;58098:4;58080;58085:1;58080:7;;;;;;;;-1:-1:-1;;;;;58080:23:0;;;:7;;;;;;;;;;:23;;;;58124:15;;:22;;;-1:-1:-1;;;58124:22:0;;;;:15;;;;;:20;;:22;;;;;58080:7;;58124:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58124:22:0;58114:7;;:4;;58119:1;;58114:7;;;;;;-1:-1:-1;;;;;58114:32:0;;;:7;;;;;;;;;:32;58191:15;;58159:62;;58176:4;;58191:15;58209:11;58159:8;:62::i;:::-;58260:15;;:224;;-1:-1:-1;;;58260:224:0;;;;;;;;:15;:224;;;;;;58438:4;58260:224;;;;;;58458:15;58260:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58260:15:0;;;;:66;;58341:11;;58411:4;;58438;58458:15;58260:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4970:136;5028:7;5055:43;5059:1;5062;5055:43;;;;;;;;;;;;;;;;;:3;:43::i;56967:922::-;57076:12;57091:13;:6;57102:1;57091:10;:13::i;:::-;57076:28;-1:-1:-1;57115:17:0;57135:16;:6;57076:28;57135:10;:16::i;:::-;57115:36;-1:-1:-1;57454:21:0;57520:22;57537:4;57520:16;:22::i;:::-;57673:18;57694:41;:21;57720:14;57694:25;:41::i;:::-;57673:62;;57785:35;57798:9;57809:10;57785:12;:35::i;:::-;57838:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56967:922;;;;;:::o;59567:403::-;59631:25;59649:6;59631:17;:25::i;:::-;59667:17;59694:4;-1:-1:-1;;;;;59687:22:0;;59718:4;59687:37;;;;;;;;;;;;;-1:-1:-1;;;;;59687:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59687:37:0;59780:15;;59750:58;;;-1:-1:-1;;;59750:58:0;;-1:-1:-1;;;;;59780:15:0;;;59750:58;;;;;;;;;;;;59687:37;;-1:-1:-1;;;59757:4:0;59750:21;;;;;;:58;;;;;59687:37;;59750:58;;;;;;;;-1:-1:-1;59750:21:0;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59750:58:0;;-1:-1:-1;59821:142:0;;;;59849:15;;:50;;;-1:-1:-1;;;59849:50:0;;;;;;;;;;-1:-1:-1;;;;;59849:15:0;;;;:39;;:50;;;;;:15;;:50;;;;;;;;:15;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59919:32:0;;;;;;;;;;;;;;;;-1:-1:-1;59919:32:0;;;;;;;;-1:-1:-1;59919:32:0;59567:403;;;:::o;7435:278::-;7521:7;7556:12;7549:5;7541:28;;;;-1:-1:-1;;;7541:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7580:9;7596:1;7592;:5;;;;;;;7435:278;-1:-1:-1;;;;;7435:278:0:o;59042:517::-;59224:15;;59192:62;;59209:4;;-1:-1:-1;;;;;59224:15:0;59242:11;59192:8;:62::i;:::-;59297:15;;-1:-1:-1;;;;;59297:15:0;:31;59336:9;59369:4;59389:11;59297:15;;59501:7;:5;:7::i;:::-;59523:15;59297:252;;;;;;;;;;;;;-1:-1:-1;;;;;59297:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59297:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;59042:517:0:o;58502:532::-;58595:16;;;58609:1;58595:16;;;;;;;;;58571:21;;58595:16;;;58571:21;;58595:16;;;;;-1:-1:-1;58595:16:0;58571:40;;58640:4;58622;58627:1;58622:7;;;;;;;;-1:-1:-1;;;;;58622:23:0;;;:7;;;;;;;;;;:23;;;;58666:15;;:22;;;-1:-1:-1;;;58666:22:0;;;;:15;;;;;:20;;:22;;;;;58622:7;;58666:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58666:22:0;58656:7;;:4;;58661:1;;58656:7;;;;;;;;;;;:32;-1:-1:-1;;;;;58656:32:0;;;-1:-1:-1;;;;;58656:32:0;;;;;58709:4;58699;58704:1;58699:7;;;;;;;;-1:-1:-1;;;;;58699:14:0;;;:7;;;;;;;;;:14;58758:15;;58726:62;;58743:4;;58758:15;58776:11;58726:8;:62::i;:::-;58827:15;;:199;;-1:-1:-1;;;58827:199:0;;;;;;;;-1:-1:-1;58827:199:0;;;;;;58980:4;58827:199;;;;;;59000:15;58827:199;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58827:15:0;;;;:69;;:199;;;;58980:4;59000:15;58827:199;;;;;;;-1:-1:-1;58827:199:0;;;;;;;;-1:-1:-1;58827:199:0;;;;;;;;;;;;;;;

Swarm Source

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