ETH Price: $3,091.07 (+0.96%)
Gas: 5 Gwei

Token

WindowsLiquidity (Wlinq)
 

Overview

Max Total Supply

100,000,000 Wlinq

Holders

135

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
400,000 Wlinq

Value
$0.00
0x822e631f2e956bb678077379f195dc569bdf4eb4
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:
WindowsLiquidity

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-29
*/

/*
Telegram: https://t.me/WindowsLiquidity

Twitter:  https://twitter.com/WindowsLiquid

Website:  https://wlinq.com/
*/ 

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

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

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

/**
 * @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) {
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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 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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 {
    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}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _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 default value returned by this function, unless
     * it's 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 18;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

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


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

interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable {

  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public LP_Token;


  // 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;
  uint256 public totalDividendsWithdrawn;

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

  function distributeLPDividends(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(payable(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);
      totalDividendsWithdrawn += _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        totalDividendsWithdrawn -= _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);
    }
  }
}

contract WindowsLiquidity is ERC20, Ownable {
    IUniswapRouter public router;
    address public pair;

    bool private swapping;
    bool public swapEnabled = true;
    bool public claimEnabled;
    bool public tradingEnabled;

    WindowsLiquidityDividendTracker public dividendTracker;

    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    struct Taxes {
        uint256 liquidity;
        uint256 dev;
    }

    Taxes public buyTaxes = Taxes(5, 15);
    Taxes public sellTaxes = Taxes(5, 15);

    uint256 public totalBuyTax = 20;
    uint256 public totalSellTax = 20;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    ///////////////
    //   Events  //
    ///////////////

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor(address _developerwallet) ERC20("WindowsLiquidity", "Wlinq") {
        dividendTracker = new WindowsLiquidityDividendTracker();
        setDevWallet(_developerwallet);

        IUniswapRouter _router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;
        setSwapTokensAtAmount(200000); 
        updateMaxWalletAmount(1000000);
        setMaxBuyAndSell(500000, 500000);

        _setAutomatedMarketMakerPair(_pair, true);

        dividendTracker.updateLP_Token(pair);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(0xdead), true);
        dividendTracker.excludeFromDividends(address(_router), true);

        excludeFromMaxWallet(address(_pair), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(_router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        _mint(owner(), 100000000 * (10**18));
    }

    receive() external payable {}

    function updateDividendTracker(address newAddress) public onlyOwner {
        WindowsLiquidityDividendTracker newDividendTracker = WindowsLiquidityDividendTracker(
            payable(newAddress)
        );
        newDividendTracker.excludeFromDividends(
            address(newDividendTracker),
            true
        );
        newDividendTracker.excludeFromDividends(address(this), true);
        newDividendTracker.excludeFromDividends(owner(), true);
        newDividendTracker.excludeFromDividends(address(router), true);
        dividendTracker = newDividendTracker;
    }

    /// @notice Manual claim the dividends
    function claim() external {
        require(claimEnabled, "Claim not enabled");
        dividendTracker.processAccount(payable(msg.sender));
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(newNum >= 1000000, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * 10**18;
    }

    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 500000, "Cannot set maxbuy lower than 0.5% ");
        require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }

    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        swapTokensAtAmount = amount * 10**18;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to dev
    /// @dev It will send all ETH to dev
    function forceSend() external onlyOwner {
        uint256 ETHbalance = address(this).balance;
        (bool success, ) = payable(devWallet).call{value: ETHbalance}("");
        require(success);
    }

    function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner {
        dividendTracker.trackerRescueETH20Tokens(msg.sender, tokenAddress);
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IUniswapRouter(newRouter);
    }

    /////////////////////////////////
    // Exclude / Include functions //
    /////////////////////////////////

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

        emit ExcludeFromFees(account, excluded);
    }

    /// @dev "true" to exlcude, "false" to include
    function excludeFromDividends(address account, bool value)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, value);
    }

    function setDevWallet(address newWallet) public onlyOwner {
        devWallet = newWallet;
    }

    function setBuyTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner {
        require(_liquidity + _dev <= 20, "Fee must be <= 20%");
        buyTaxes = Taxes(_liquidity, _dev);
        totalBuyTax = _liquidity + _dev;
    }

    function setSellTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner {
        require(_liquidity + _dev <= 20, "Fee must be <= 20%");
        sellTaxes = Taxes(_liquidity, _dev);
        totalSellTax = _liquidity + _dev;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }

    function setClaimEnabled(bool state) external onlyOwner {
        claimEnabled = state;
    }


    function setLP_Token(address _lpToken) external onlyOwner {
        dividendTracker.updateLP_Token(_lpToken);
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

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

        if (value) {
            dividendTracker.excludeFromDividends(newPair, true);
        }

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    //////////////////////
    // Getter Functions //
    //////////////////////

    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 getAccountInfo(address account)
        external
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    ////////////////////////
    // Transfer Functions //
    ////////////////////////

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

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

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

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

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

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

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

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwapForLiq = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 tokensToAddLiquidityWith = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 toSwapForDev = (tokens * sellTaxes.dev) / totalSellTax;

        swapTokensForETH(toSwapForLiq);

        uint256 currentbalance = address(this).balance;

        if (currentbalance > 0) {
            // Add liquidity to uni
            addLiquidity(tokensToAddLiquidityWith, currentbalance);
        }

        swapTokensForETH(toSwapForDev);

        uint256 EthTaxBalance = address(this).balance;

        // Send ETH to dev
        uint256 devAmt = EthTaxBalance;

        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send ETH to dev wallet");
        }

        uint256 lpBalance = IERC20(pair).balanceOf(address(this));

        //Send LP to dividends
        uint256 dividends = lpBalance;

        if (dividends > 0) {
            bool success = IERC20(pair).transfer(
                address(dividendTracker),
                dividends
            );
            if (success) {
                dividendTracker.distributeLPDividends(dividends);
                emit SendDividends(tokens, dividends);
            }
        }
    }

    // transfers LP from the owners wallet to holders // must approve this contract, on pair contract before calling
    function ManualLiquidityDistribution(uint256 amount) public onlyOwner {
        bool success = IERC20(pair).transferFrom(
            msg.sender,
            address(dividendTracker),
            amount
        );
        if (success) {
            dividendTracker.distributeLPDividends(amount);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

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

contract WindowsLiquidityDividendTracker is Ownable, DividendPayingToken {
    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

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

    constructor()
        DividendPayingToken("WindowsLiquidity_Dividend_Tracker", "WindowsLiquidity_Dividend_Tracker")
    {}

    function trackerRescueETH20Tokens(address recipient, address tokenAddress)
        external
        onlyOwner
    {
        IERC20(tokenAddress).transfer(
            recipient,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function updateLP_Token(address _lpToken) external onlyOwner {
        LP_Token = _lpToken;
    }

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

    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        require(excludedFromDividends[account] != value);
        excludedFromDividends[account] = value;
        if (value == true) {
            _setBalance(account, 0);
        } else {
            _setBalance(account, balanceOf(account));
        }
        emit ExcludeFromDividends(account, value);
    }

    function getAccount(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

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

    function processAccount(address payable account)
        external
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_developerwallet","type":"address"}],"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":"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":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"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualLiquidityDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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 WindowsLiquidityDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","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":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","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"}]

6007805460ff60a81b1916600160a81b17905560056080819052600f60a0819052600e82905580805561010060405260c082905260e0819052601091909155601155601460128190556013553480156200005857600080fd5b5060405162005589380380620055898339810160408190526200007b9162000c23565b6040518060400160405280601081526020016f57696e646f77734c697175696469747960801b81525060405180604001604052806005815260200164576c696e7160d81b8152508160039081620000d3919062000cf9565b506004620000e2828262000cf9565b505050620000ff620000f96200063760201b60201c565b6200063b565b6040516200010d9062000c15565b604051809103906000f0801580156200012a573d6000803e3d6000fd5b50600880546001600160a01b0319166001600160a01b039290921691909117905562000156816200068d565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d6919062000c23565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000c23565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000c23565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002fe62030d40620006b9565b6200030c620f4240620006dd565b6200031b6207a1208062000765565b6200032881600162000862565b60085460075460405163225b5ecf60e11b81526001600160a01b0391821660048201529116906344b6bd9e90602401600060405180830381600087803b1580156200037257600080fd5b505af115801562000387573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b0390911660048201819052600160248301529250630483f7a09150604401600060405180830381600087803b158015620003d857600080fd5b505af1158015620003ed573d6000803e3d6000fd5b505060085460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200043d57600080fd5b505af115801562000452573d6000803e3d6000fd5b50506008546001600160a01b03169150630483f7a090506200047c6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004c557600080fd5b505af1158015620004da573d6000803e3d6000fd5b505060085460405162241fbd60e51b815261dead6004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200052c57600080fd5b505af115801562000541573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200059357600080fd5b505af1158015620005a8573d6000803e3d6000fd5b50505050620005bf816001620009cc60201b60201c565b620005cc306001620009cc565b620005d9826001620009cc565b620005f8620005f06005546001600160a01b031690565b600162000a01565b6200060530600162000a01565b6200062e6200061c6005546001600160a01b031690565b6a52b7d2dcc80cd2e400000062000aef565b50505062000e11565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200069762000bb2565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b620006c362000bb2565b620006d781670de0b6b3a764000062000ddb565b600a5550565b620006e762000bb2565b620f42408110156200074b5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b60648201526084015b60405180910390fd5b6200075f81670de0b6b3a764000062000ddb565b600d5550565b6200076f62000bb2565b6207a120821015620007cf5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e20302e35604482015261012960f51b606482015260840162000742565b6207a120811015620008305760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b606482015260840162000742565b6200084482670de0b6b3a764000062000ddb565b600b556200085b81670de0b6b3a764000062000ddb565b600c555050565b6001600160a01b03821660009081526015602052604090205481151560ff909116151503620008fa5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840162000742565b6001600160a01b0382166000908152601560205260409020805460ff19168215801591909117909155620009905760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156200097657600080fd5b505af11580156200098b573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b620009d662000bb2565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b62000a0b62000bb2565b6001600160a01b03821660009081526014602052604090205481151560ff90911615150362000a905760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000742565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821662000b475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000742565b806002600082825462000b5b919062000dfb565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b0316331462000c0e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000742565b565b505050565b611a218062003b6883390190565b60006020828403121562000c3657600080fd5b81516001600160a01b038116811462000c4e57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000c8057607f821691505b60208210810362000ca157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c1057600081815260208120601f850160051c8101602086101562000cd05750805b601f850160051c820191505b8181101562000cf15782815560010162000cdc565b505050505050565b81516001600160401b0381111562000d155762000d1562000c55565b62000d2d8162000d26845462000c6b565b8462000ca7565b602080601f83116001811462000d65576000841562000d4c5750858301515b600019600386901b1c1916600185901b17855562000cf1565b600085815260208120601f198616915b8281101562000d965788860151825594840194600190910190840162000d75565b508582101562000db55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000df55762000df562000dc5565b92915050565b8082018082111562000df55762000df562000dc5565b612d478062000e216000396000f3fe60806040526004361061036f5760003560e01c806388bdd9be116101c6578063afa4f3b2116100f7578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610a39578063f66895a314610a59578063f887ea4014610a74578063f8b45b0514610a9457600080fd5b8063dd62ed3e146109e3578063e01af92c14610a03578063e2f4560514610a2357600080fd5b8063c0246668116100d1578063c024666814610963578063c18bc19514610983578063c851cc32146109a3578063d2fcc001146109c357600080fd5b8063afa4f3b2146108f3578063b62496f514610913578063bdf1436d1461094357600080fd5b80639a7a23d611610164578063a8aa1b311161013e578063a8aa1b3114610873578063a8b9d24014610893578063a9059cbb146108b3578063aa35822c146108d357600080fd5b80639a7a23d614610813578063a11a168214610833578063a457c2d71461085357600080fd5b80638da5cb5b116101a05780638da5cb5b146107a05780638ea5220f146107be57806392929a09146107de57806395d89b41146107fe57600080fd5b806388bdd9be1461074a57806388e765ff1461076a5780638c9684f91461078057600080fd5b8063313ce567116102a05780636843cd841161023e578063715018a611610218578063715018a61461069357806379b447bd146106a85780637b510fe8146106c8578063864701a51461071a57600080fd5b80636843cd841461061c5780636ddd17131461063c57806370a082311461065d57600080fd5b80634ada218b1161027a5780634ada218b146105975780634e71d92d146105b85780634fbee193146105cd57806366d602ae1461060657600080fd5b8063313ce56714610545578063395093511461056157806346469afb1461058157600080fd5b80631bff78981161030d5780632866ed21116102e75780632866ed21146104b75780632c1f5216146104d85780632e1ab9041461051057806330bb4cff1461053057600080fd5b80631bff7898146104615780631f53ac021461047757806323b872dd1461049757600080fd5b80630a78097d116103495780630a78097d146103f85780630bd05b691461041857806312b77e8a1461042d57806318160ddd1461044257600080fd5b80630483f7a01461037b57806306fdde031461039d578063095ea7b3146103c857600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b6103963660046128eb565b610aaa565b005b3480156103a957600080fd5b506103b2610b1d565b6040516103bf9190612924565b60405180910390f35b3480156103d457600080fd5b506103e86103e3366004612972565b610baf565b60405190151581526020016103bf565b34801561040457600080fd5b5061039b61041336600461299e565b610bc9565b34801561042457600080fd5b5061039b610ccd565b34801561043957600080fd5b5061039b610d49565b34801561044e57600080fd5b506002545b6040519081526020016103bf565b34801561046d57600080fd5b5061045360135481565b34801561048357600080fd5b5061039b61049236600461299e565b610db5565b3480156104a357600080fd5b506103e86104b23660046129c2565b610ddf565b3480156104c357600080fd5b506007546103e890600160b01b900460ff1681565b3480156104e457600080fd5b506008546104f8906001600160a01b031681565b6040516001600160a01b0390911681526020016103bf565b34801561051c57600080fd5b5061039b61052b36600461299e565b610e03565b34801561053c57600080fd5b50610453610e6e565b34801561055157600080fd5b50604051601281526020016103bf565b34801561056d57600080fd5b506103e861057c366004612972565b610ee1565b34801561058d57600080fd5b5061045360125481565b3480156105a357600080fd5b506007546103e890600160b81b900460ff1681565b3480156105c457600080fd5b5061039b610f03565b3480156105d957600080fd5b506103e86105e836600461299e565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561061257600080fd5b50610453600c5481565b34801561062857600080fd5b5061045361063736600461299e565b610fc1565b34801561064857600080fd5b506007546103e890600160a81b900460ff1681565b34801561066957600080fd5b5061045361067836600461299e565b6001600160a01b031660009081526020819052604090205490565b34801561069f57600080fd5b5061039b611031565b3480156106b457600080fd5b5061039b6106c3366004612a03565b611045565b3480156106d457600080fd5b506106e86106e336600461299e565b611138565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0016103bf565b34801561072657600080fd5b50600e54600f54610735919082565b604080519283526020830191909152016103bf565b34801561075657600080fd5b5061039b61076536600461299e565b6111c2565b34801561077657600080fd5b50610453600b5481565b34801561078c57600080fd5b5061039b61079b36600461299e565b611394565b3480156107ac57600080fd5b506005546001600160a01b03166104f8565b3480156107ca57600080fd5b506009546104f8906001600160a01b031681565b3480156107ea57600080fd5b5061039b6107f9366004612a25565b6113d4565b34801561080a57600080fd5b506103b26113fa565b34801561081f57600080fd5b5061039b61082e3660046128eb565b611409565b34801561083f57600080fd5b5061039b61084e366004612a03565b61141b565b34801561085f57600080fd5b506103e861086e366004612972565b6114a0565b34801561087f57600080fd5b506007546104f8906001600160a01b031681565b34801561089f57600080fd5b506104536108ae36600461299e565b61151b565b3480156108bf57600080fd5b506103e86108ce366004612972565b61154e565b3480156108df57600080fd5b5061039b6108ee366004612a03565b61155c565b3480156108ff57600080fd5b5061039b61090e366004612a42565b6115e1565b34801561091f57600080fd5b506103e861092e36600461299e565b60156020526000908152604090205460ff1681565b34801561094f57600080fd5b5061039b61095e366004612a42565b611601565b34801561096f57600080fd5b5061039b61097e3660046128eb565b6116c6565b34801561098f57600080fd5b5061039b61099e366004612a42565b6117b0565b3480156109af57600080fd5b5061039b6109be36600461299e565b61182e565b3480156109cf57600080fd5b5061039b6109de3660046128eb565b611858565b3480156109ef57600080fd5b506104536109fe366004612a5b565b61188b565b348015610a0f57600080fd5b5061039b610a1e366004612a25565b6118b6565b348015610a2f57600080fd5b50610453600a5481565b348015610a4557600080fd5b5061039b610a5436600461299e565b6118dc565b348015610a6557600080fd5b50601054601154610735919082565b348015610a8057600080fd5b506006546104f8906001600160a01b031681565b348015610aa057600080fd5b50610453600d5481565b610ab2611952565b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610b0157600080fd5b505af1158015610b15573d6000803e3d6000fd5b505050505050565b606060038054610b2c90612a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5890612a89565b8015610ba55780601f10610b7a57610100808354040283529160200191610ba5565b820191906000526020600020905b815481529060010190602001808311610b8857829003601f168201915b5050505050905090565b600033610bbd8185856119ac565b60019150505b92915050565b610bd1611952565b806001600160a01b031663a9059cbb610bf26005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5a9190612ac3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610ca5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc99190612adc565b5050565b610cd5611952565b600754600160b81b900460ff1615610d345760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064015b60405180910390fd5b6007805460ff60b81b1916600160b81b179055565b610d51611952565b60095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610da2576040519150601f19603f3d011682016040523d82523d6000602084013e610da7565b606091505b5050905080610cc957600080fd5b610dbd611952565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600033610ded858285611ad0565b610df8858585611b4a565b506001949350505050565b610e0b611952565b60085460405163225b5ecf60e11b81526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b158015610e5357600080fd5b505af1158015610e67573d6000803e3d6000fd5b5050505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610eb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edc9190612ac3565b905090565b600033610bbd818585610ef4838361188b565b610efe9190612b0f565b6119ac565b600754600160b01b900460ff16610f505760405162461bcd60e51b815260206004820152601160248201527010db185a5b481b9bdd08195b98589b1959607a1b6044820152606401610d2b565b60085460405163807ab4f760e01b81523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af1158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe9190612adc565b50565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa15801561100d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc39190612ac3565b611039611952565b611043600061212d565b565b61104d611952565b6207a1208210156110ab5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e20302e35604482015261012960f51b6064820152608401610d2b565b6207a12081101561110a5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b6064820152608401610d2b565b61111c82670de0b6b3a7640000612b22565b600b5561113181670de0b6b3a7640000612b22565b600c555050565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b09190612b39565b939a9299509097509550909350915050565b6111ca611952565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b15801561121357600080fd5b505af1158015611227573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561127257600080fd5b505af1158015611286573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a06112ab6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156112f357600080fd5b505af1158015611307573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561135857600080fd5b505af115801561136c573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b039490941693909317909255505050565b61139c611952565b60085460405163497ec82360e01b81523360048201526001600160a01b0383811660248301529091169063497ec82390604401610e39565b6113dc611952565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610b2c90612a89565b611411611952565b610cc9828261217f565b611423611952565b601461142f8284612b0f565b11156114725760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610d2b565b60408051808201909152828152602001819052601082905560118190556114998183612b0f565b6013555050565b600033816114ae828661188b565b90508381101561150e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d2b565b610df882868684036119ac565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610ff0565b600033610bbd818585611b4a565b611564611952565b60146115708284612b0f565b11156115b35760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610d2b565b60408051808201909152828152602001819052600e829055600f8190556115da8183612b0f565b6012555050565b6115e9611952565b6115fb81670de0b6b3a7640000612b22565b600a5550565b611609611952565b6007546008546040516323b872dd60e01b81523360048201526001600160a01b0391821660248201526044810184905260009291909116906323b872dd906064016020604051808303816000875af1158015611669573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168d9190612adc565b90508015610cc957600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401610ae7565b6116ce611952565b6001600160a01b03821660009081526014602052604090205481151560ff9091161515036117515760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610d2b565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6117b8611952565b620f42408110156118165760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610d2b565b61182881670de0b6b3a7640000612b22565b600d5550565b611836611952565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b611860611952565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6118be611952565b60078054911515600160a81b0260ff60a81b19909216919091179055565b6118e4611952565b6001600160a01b0381166119495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d2b565b610fbe8161212d565b6005546001600160a01b031633146110435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d2b565b6001600160a01b038316611a0e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d2b565b6001600160a01b038216611a6f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d2b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611adc848461188b565b90506000198114611b445781811015611b375760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d2b565b611b4484848484036119ac565b50505050565b6001600160a01b038316611b705760405162461bcd60e51b8152600401610d2b90612b82565b6001600160a01b038216611b965760405162461bcd60e51b8152600401610d2b90612bc7565b6001600160a01b03831660009081526014602052604090205460ff16158015611bd857506001600160a01b03821660009081526014602052604090205460ff16155b8015611bee5750600754600160a01b900460ff16155b15611dc057600754600160b81b900460ff16611c415760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610d2b565b6001600160a01b03821660009081526015602052604090205460ff1615611cb957600c54811115611cb45760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610d2b565b611d2c565b6001600160a01b03831660009081526015602052604090205460ff1615611d2c57600b54811115611d2c5760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610d2b565b6001600160a01b03821660009081526016602052604090205460ff16611dc057600d546001600160a01b038316600090815260208190526040902054611d729083612b0f565b1115611dc05760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610d2b565b80600003611dd957611dd4838360006122e4565b505050565b30600090815260208190526040902054600a5481108015908190611e075750600754600160a01b900460ff16155b8015611e1c5750600754600160a81b900460ff165b8015611e4057506001600160a01b03841660009081526015602052604090205460ff165b8015611e6557506001600160a01b03851660009081526014602052604090205460ff16155b8015611e8a57506001600160a01b03841660009081526014602052604090205460ff16155b15611ec3576007805460ff60a01b1916600160a01b17905560135415611eb557611eb5600a5461240e565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526014602052604090205460ff600160a01b909204821615911680611f1157506001600160a01b03851660009081526014602052604090205460ff165b15611f1a575060005b6001600160a01b03851660009081526015602052604090205460ff16158015611f5c57506001600160a01b03861660009081526015602052604090205460ff16155b15611f65575060005b8015612004576001600160a01b03851660009081526015602052604081205460ff1615611fad57606460135486611f9c9190612b22565b611fa69190612c0a565b9050611feb565b6001600160a01b03871660009081526015602052604090205460ff1615611feb57606460125486611fde9190612b22565b611fe89190612c0a565b90505b611ff58186612c2c565b94506120028730836122e4565b505b61200f8686866122e4565b6008546001600160a01b031663e30443bc87612040816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561208657600080fd5b505af1925050508015612097575060015b506008546001600160a01b031663e30443bc866120c9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561210f57600080fd5b505af1925050508015612120575060015b15610b1557505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526015602052604090205481151560ff9091161515036122155760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610d2b565b6001600160a01b0382166000908152601560205260409020805460ff191682158015919091179091556122a85760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b15801561228f57600080fd5b505af11580156122a3573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661230a5760405162461bcd60e51b8152600401610d2b90612b82565b6001600160a01b0382166123305760405162461bcd60e51b8152600401610d2b90612bc7565b6001600160a01b038316600090815260208190526040902054818110156123a85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d2b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611b44565b6013546010546000916002916124249085612b22565b61242e9190612c0a565b6124389190612c0a565b905060006002601354601060000154856124529190612b22565b61245c9190612c0a565b6124669190612c0a565b60135460115491925060009161247c9086612b22565b6124869190612c0a565b9050612491836126fa565b4780156124a2576124a2838261281e565b6124ab826126fa565b47808015612558576009546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612500576040519150601f19603f3d011682016040523d82523d6000602084013e612505565b606091505b50509050806125565760405162461bcd60e51b815260206004820181905260248201527f4661696c656420746f2073656e642045544820746f206465762077616c6c65746044820152606401610d2b565b505b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156125a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125c59190612ac3565b90508080156126ef5760075460085460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612628573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061264c9190612adc565b905080156126ed57600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b15801561269a57600080fd5b505af11580156126ae573d6000803e3d6000fd5b5050604080518d8152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505b505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061272f5761272f612c3f565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ac9190612c55565b816001815181106127bf576127bf612c3f565b6001600160a01b0392831660209182029290920101526006546127e591309116846119ac565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610ae7908590600090869030904290600401612c72565b6006546128369030906001600160a01b0316846119ac565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156128a3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e679190612ce3565b6001600160a01b0381168114610fbe57600080fd5b8015158114610fbe57600080fd5b600080604083850312156128fe57600080fd5b8235612909816128c8565b91506020830135612919816128dd565b809150509250929050565b600060208083528351808285015260005b8181101561295157858101830151858201604001528201612935565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561298557600080fd5b8235612990816128c8565b946020939093013593505050565b6000602082840312156129b057600080fd5b81356129bb816128c8565b9392505050565b6000806000606084860312156129d757600080fd5b83356129e2816128c8565b925060208401356129f2816128c8565b929592945050506040919091013590565b60008060408385031215612a1657600080fd5b50508035926020909101359150565b600060208284031215612a3757600080fd5b81356129bb816128dd565b600060208284031215612a5457600080fd5b5035919050565b60008060408385031215612a6e57600080fd5b8235612a79816128c8565b91506020830135612919816128c8565b600181811c90821680612a9d57607f821691505b602082108103612abd57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612ad557600080fd5b5051919050565b600060208284031215612aee57600080fd5b81516129bb816128dd565b634e487b7160e01b600052601160045260246000fd5b80820180821115610bc357610bc3612af9565b8082028115828204841417610bc357610bc3612af9565b600080600080600060a08688031215612b5157600080fd5b8551612b5c816128c8565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082612c2757634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610bc357610bc3612af9565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c6757600080fd5b81516129bb816128c8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612cc25784516001600160a01b031683529383019391830191600101612c9d565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612cf857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203462ee8c5011d6d12b344e64c48317ed5770a23709a1df5558ff1dceb852d0c164736f6c6343000812003360806040523480156200001157600080fd5b5060405180606001604052806021815260200162001a006021913960405180606001604052806021815260200162001a00602191398181600362000056838262000185565b50600462000065828262000185565b505050620000826200007c6200008a60201b60201c565b6200008e565b505062000251565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010b57607f821691505b6020821081036200012c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018057600081815260208120601f850160051c810160208610156200015b5750805b601f850160051c820191505b818110156200017c5782815560010162000167565b5050505b505050565b81516001600160401b03811115620001a157620001a1620000e0565b620001b981620001b28454620000f6565b8462000132565b602080601f831160018114620001f15760008415620001d85750858301515b600019600386901b1c1916600185901b1785556200017c565b600085815260208120601f198616915b82811015620002225788860151825594840194600190910190840162000201565b5085821015620002415787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61179f80620002616000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc1461042d578063ede6ad9c14610440578063f2fde38b14610453578063fbcbc0f11461046657600080fd5b8063a8b9d240146103cb578063a9059cbb146103de578063aafd847a146103f1578063dd62ed3e1461041a57600080fd5b806391b89fba116100de57806391b89fba1461039457806395d89b41146103a75780639e1e0661146103af578063a457c2d7146103b857600080fd5b8063715018a61461035f578063807ab4f71461036757806385a6b3ae1461037a5780638da5cb5b1461038357600080fd5b806327ce014711610187578063497ec82311610156578063497ec823146102f85780634e7b827f1461030b5780636a4740021461032e57806370a082311461033657600080fd5b806327ce0147146102b0578063313ce567146102c357806339509351146102d257806344b6bd9e146102e557600080fd5b80631162c4b6116101c35780631162c4b61461024057806318160ddd1461026b578063226cfa3d1461027d57806323b872dd1461029d57600080fd5b80630483f7a0146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f83660046114e4565b6104ab565b005b61020761058f565b604051610214919061151d565b60405180910390f35b61023061022b36600461156b565b610621565b6040519015158152602001610214565b600654610253906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6002545b604051908152602001610214565b61026f61028b366004611597565b600d6020526000908152604090205481565b6102306102ab3660046115b4565b61063b565b61026f6102be366004611597565b61065f565b60405160128152602001610214565b6102306102e036600461156b565b6106bb565b6101fd6102f3366004611597565b6106dd565b6101fd6103063660046115f5565b610707565b610230610319366004611597565b600c6020526000908152604090205460ff1681565b6101fd6107f5565b61026f610344366004611597565b6001600160a01b031660009081526020819052604090205490565b6101fd610801565b610230610375366004611597565b610815565b61026f600a5481565b6005546001600160a01b0316610253565b61026f6103a2366004611597565b610899565b6102076108a4565b61026f600b5481565b6102306103c636600461156b565b6108b3565b61026f6103d9366004611597565b610933565b6102306103ec36600461156b565b61095f565b61026f6103ff366004611597565b6001600160a01b031660009081526009602052604090205490565b61026f6104283660046115f5565b61096d565b6101fd61043b36600461156b565b610998565b6101fd61044e366004611623565b6109ce565b6101fd610461366004611597565b610a69565b610479610474366004611597565b610adf565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a001610214565b6104b3610b87565b6001600160a01b0382166000908152600c602052604090205481151560ff9091161515036104e057600080fd5b6001600160a01b0382166000908152600c60205260409020805460ff191682151590811790915560010361051e57610519826000610be1565b610546565b61054682610541846001600160a01b031660009081526020819052604090205490565b610be1565b816001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610583911515815260200190565b60405180910390a25050565b60606003805461059e9061163c565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca9061163c565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b60003361062f818585610c40565b60019150505b92915050565b600033610649858285610d64565b610654858585610dd8565b506001949350505050565b6001600160a01b03811660009081526008602090815260408083205491839052822054600754600160801b926106b1926106ac926106a6916106a19190610e46565b610ecf565b90610edf565b610f1d565b610635919061168c565b60003361062f8185856106ce838361096d565b6106d891906116ae565b610c40565b6106e5610b87565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b61070f610b87565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90849083906370a0823190602401602060405180830381865afa15801561075d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078191906116c1565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156107cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f091906116da565b505050565b6107fe33610f30565b50565b610809610b87565b61081360006110be565b565b600061081f610b87565b600061082a83610f30565b90508015610890576001600160a01b0383166000818152600d602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49061087f9084815260200190565b60405180910390a250600192915050565b50600092915050565b600061063582610933565b60606004805461059e9061163c565b600033816108c1828661096d565b9050838110156109265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106548286868403610c40565b6001600160a01b038116600090815260096020526040812054610635906109598461065f565b90611110565b60003361062f818585610dd8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109a0610b87565b6001600160a01b0382166000908152600c602052604090205460ff166109ca576109ca8282610be1565b5050565b6109d6610b87565b60006109e160025490565b116109eb57600080fd5b80156107fe57610a1e6109fd60025490565b610a0b83600160801b610e46565b610a15919061168c565b60075490611152565b60075560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600a54610a639082611152565b600a5550565b610a71610b87565b6001600160a01b038116610ad65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091d565b6107fe816110be565b6000806000806000610b1b604051806080016040528060006001600160a01b031681526020016000815260200160008152602001600081525090565b6001600160a01b0387168152610b3087610933565b6020820152610b3e8761065f565b60408281019182526001600160a01b03989098166000908152600d60209081529890205460608301819052825198909201519051600b5498999198909750919550909350915050565b6005546001600160a01b031633146108135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091d565b6001600160a01b03821660009081526020819052604090205480821115610c20576000610c0e8383611110565b9050610c1a84826111b1565b50505050565b808210156107f0576000610c348284611110565b9050610c1a8482611215565b6001600160a01b038316610ca25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161091d565b6001600160a01b038216610d035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161091d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d70848461096d565b90506000198114610c1a5781811015610dcb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161091d565b610c1a8484848403610c40565b60405162461bcd60e51b815260206004820152603760248201527f57696e646f77734c69717569646974795f4469766964656e645f547261636b6560448201527f723a204e6f207472616e736665727320616c6c6f776564000000000000000000606482015260840161091d565b600082600003610e5857506000610635565b6000610e6483856116f7565b905082610e71858361168c565b14610ec85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161091d565b9392505050565b6000818181121561063557600080fd5b600080610eec838561170e565b905060008312158015610eff5750838112155b80610f145750600083128015610f1457508381125b610ec857600080fd5b600080821215610f2c57600080fd5b5090565b600080610f3c83610933565b90508015610890576001600160a01b038316600090815260096020526040902054610f679082611152565b6001600160a01b038416600090815260096020526040812091909155600b8054839290610f959084906116ae565b90915550506040518181526001600160a01b038416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260065460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af115801561102c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105091906116da565b9050806110b7576001600160a01b03841660009081526009602052604090205461107a9083611110565b6001600160a01b038516600090815260096020526040812091909155600b80548492906110a8908490611736565b90915550600095945050505050565b5092915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610ec883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611259565b60008061115f83856116ae565b905083811015610ec85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161091d565b6111bb8282611293565b6111f56111d66106a183600754610e4690919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611352565b6001600160a01b0390921660009081526008602052604090209190915550565b61121f828261138f565b6111f561123a6106a183600754610e4690919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490610edf565b6000818484111561127d5760405162461bcd60e51b815260040161091d919061151d565b50600061128a8486611736565b95945050505050565b6001600160a01b0382166112e95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161091d565b80600260008282546112fb91906116ae565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008061135f8385611749565b9050600083121580156113725750838113155b80610f145750600083128015610f145750838113610ec857600080fd5b6001600160a01b0382166113ef5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161091d565b6001600160a01b038216600090815260208190526040902054818110156114635760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161091d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03811681146107fe57600080fd5b80151581146107fe57600080fd5b600080604083850312156114f757600080fd5b8235611502816114c1565b91506020830135611512816114d6565b809150509250929050565b600060208083528351808285015260005b8181101561154a5785810183015185820160400152820161152e565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561157e57600080fd5b8235611589816114c1565b946020939093013593505050565b6000602082840312156115a957600080fd5b8135610ec8816114c1565b6000806000606084860312156115c957600080fd5b83356115d4816114c1565b925060208401356115e4816114c1565b929592945050506040919091013590565b6000806040838503121561160857600080fd5b8235611613816114c1565b91506020830135611512816114c1565b60006020828403121561163557600080fd5b5035919050565b600181811c9082168061165057607f821691505b60208210810361167057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826116a957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561063557610635611676565b6000602082840312156116d357600080fd5b5051919050565b6000602082840312156116ec57600080fd5b8151610ec8816114d6565b808202811582820484141761063557610635611676565b808201828112600083128015821682158216171561172e5761172e611676565b505092915050565b8181038181111561063557610635611676565b81810360008312801583831316838312821617156110b7576110b761167656fea2646970667358221220d9709da6a36f89754a770bb99e42c29e30282f8b697c1ff845c3c5a61c481a0664736f6c6343000812003357696e646f77734c69717569646974795f4469766964656e645f547261636b6572000000000000000000000000bcd0c145e4829c90708033632218cd98f7229102

Deployed Bytecode

0x60806040526004361061036f5760003560e01c806388bdd9be116101c6578063afa4f3b2116100f7578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610a39578063f66895a314610a59578063f887ea4014610a74578063f8b45b0514610a9457600080fd5b8063dd62ed3e146109e3578063e01af92c14610a03578063e2f4560514610a2357600080fd5b8063c0246668116100d1578063c024666814610963578063c18bc19514610983578063c851cc32146109a3578063d2fcc001146109c357600080fd5b8063afa4f3b2146108f3578063b62496f514610913578063bdf1436d1461094357600080fd5b80639a7a23d611610164578063a8aa1b311161013e578063a8aa1b3114610873578063a8b9d24014610893578063a9059cbb146108b3578063aa35822c146108d357600080fd5b80639a7a23d614610813578063a11a168214610833578063a457c2d71461085357600080fd5b80638da5cb5b116101a05780638da5cb5b146107a05780638ea5220f146107be57806392929a09146107de57806395d89b41146107fe57600080fd5b806388bdd9be1461074a57806388e765ff1461076a5780638c9684f91461078057600080fd5b8063313ce567116102a05780636843cd841161023e578063715018a611610218578063715018a61461069357806379b447bd146106a85780637b510fe8146106c8578063864701a51461071a57600080fd5b80636843cd841461061c5780636ddd17131461063c57806370a082311461065d57600080fd5b80634ada218b1161027a5780634ada218b146105975780634e71d92d146105b85780634fbee193146105cd57806366d602ae1461060657600080fd5b8063313ce56714610545578063395093511461056157806346469afb1461058157600080fd5b80631bff78981161030d5780632866ed21116102e75780632866ed21146104b75780632c1f5216146104d85780632e1ab9041461051057806330bb4cff1461053057600080fd5b80631bff7898146104615780631f53ac021461047757806323b872dd1461049757600080fd5b80630a78097d116103495780630a78097d146103f85780630bd05b691461041857806312b77e8a1461042d57806318160ddd1461044257600080fd5b80630483f7a01461037b57806306fdde031461039d578063095ea7b3146103c857600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b6103963660046128eb565b610aaa565b005b3480156103a957600080fd5b506103b2610b1d565b6040516103bf9190612924565b60405180910390f35b3480156103d457600080fd5b506103e86103e3366004612972565b610baf565b60405190151581526020016103bf565b34801561040457600080fd5b5061039b61041336600461299e565b610bc9565b34801561042457600080fd5b5061039b610ccd565b34801561043957600080fd5b5061039b610d49565b34801561044e57600080fd5b506002545b6040519081526020016103bf565b34801561046d57600080fd5b5061045360135481565b34801561048357600080fd5b5061039b61049236600461299e565b610db5565b3480156104a357600080fd5b506103e86104b23660046129c2565b610ddf565b3480156104c357600080fd5b506007546103e890600160b01b900460ff1681565b3480156104e457600080fd5b506008546104f8906001600160a01b031681565b6040516001600160a01b0390911681526020016103bf565b34801561051c57600080fd5b5061039b61052b36600461299e565b610e03565b34801561053c57600080fd5b50610453610e6e565b34801561055157600080fd5b50604051601281526020016103bf565b34801561056d57600080fd5b506103e861057c366004612972565b610ee1565b34801561058d57600080fd5b5061045360125481565b3480156105a357600080fd5b506007546103e890600160b81b900460ff1681565b3480156105c457600080fd5b5061039b610f03565b3480156105d957600080fd5b506103e86105e836600461299e565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561061257600080fd5b50610453600c5481565b34801561062857600080fd5b5061045361063736600461299e565b610fc1565b34801561064857600080fd5b506007546103e890600160a81b900460ff1681565b34801561066957600080fd5b5061045361067836600461299e565b6001600160a01b031660009081526020819052604090205490565b34801561069f57600080fd5b5061039b611031565b3480156106b457600080fd5b5061039b6106c3366004612a03565b611045565b3480156106d457600080fd5b506106e86106e336600461299e565b611138565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0016103bf565b34801561072657600080fd5b50600e54600f54610735919082565b604080519283526020830191909152016103bf565b34801561075657600080fd5b5061039b61076536600461299e565b6111c2565b34801561077657600080fd5b50610453600b5481565b34801561078c57600080fd5b5061039b61079b36600461299e565b611394565b3480156107ac57600080fd5b506005546001600160a01b03166104f8565b3480156107ca57600080fd5b506009546104f8906001600160a01b031681565b3480156107ea57600080fd5b5061039b6107f9366004612a25565b6113d4565b34801561080a57600080fd5b506103b26113fa565b34801561081f57600080fd5b5061039b61082e3660046128eb565b611409565b34801561083f57600080fd5b5061039b61084e366004612a03565b61141b565b34801561085f57600080fd5b506103e861086e366004612972565b6114a0565b34801561087f57600080fd5b506007546104f8906001600160a01b031681565b34801561089f57600080fd5b506104536108ae36600461299e565b61151b565b3480156108bf57600080fd5b506103e86108ce366004612972565b61154e565b3480156108df57600080fd5b5061039b6108ee366004612a03565b61155c565b3480156108ff57600080fd5b5061039b61090e366004612a42565b6115e1565b34801561091f57600080fd5b506103e861092e36600461299e565b60156020526000908152604090205460ff1681565b34801561094f57600080fd5b5061039b61095e366004612a42565b611601565b34801561096f57600080fd5b5061039b61097e3660046128eb565b6116c6565b34801561098f57600080fd5b5061039b61099e366004612a42565b6117b0565b3480156109af57600080fd5b5061039b6109be36600461299e565b61182e565b3480156109cf57600080fd5b5061039b6109de3660046128eb565b611858565b3480156109ef57600080fd5b506104536109fe366004612a5b565b61188b565b348015610a0f57600080fd5b5061039b610a1e366004612a25565b6118b6565b348015610a2f57600080fd5b50610453600a5481565b348015610a4557600080fd5b5061039b610a5436600461299e565b6118dc565b348015610a6557600080fd5b50601054601154610735919082565b348015610a8057600080fd5b506006546104f8906001600160a01b031681565b348015610aa057600080fd5b50610453600d5481565b610ab2611952565b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610b0157600080fd5b505af1158015610b15573d6000803e3d6000fd5b505050505050565b606060038054610b2c90612a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5890612a89565b8015610ba55780601f10610b7a57610100808354040283529160200191610ba5565b820191906000526020600020905b815481529060010190602001808311610b8857829003601f168201915b5050505050905090565b600033610bbd8185856119ac565b60019150505b92915050565b610bd1611952565b806001600160a01b031663a9059cbb610bf26005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5a9190612ac3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610ca5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc99190612adc565b5050565b610cd5611952565b600754600160b81b900460ff1615610d345760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064015b60405180910390fd5b6007805460ff60b81b1916600160b81b179055565b610d51611952565b60095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610da2576040519150601f19603f3d011682016040523d82523d6000602084013e610da7565b606091505b5050905080610cc957600080fd5b610dbd611952565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600033610ded858285611ad0565b610df8858585611b4a565b506001949350505050565b610e0b611952565b60085460405163225b5ecf60e11b81526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b158015610e5357600080fd5b505af1158015610e67573d6000803e3d6000fd5b5050505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610eb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edc9190612ac3565b905090565b600033610bbd818585610ef4838361188b565b610efe9190612b0f565b6119ac565b600754600160b01b900460ff16610f505760405162461bcd60e51b815260206004820152601160248201527010db185a5b481b9bdd08195b98589b1959607a1b6044820152606401610d2b565b60085460405163807ab4f760e01b81523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af1158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe9190612adc565b50565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa15801561100d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc39190612ac3565b611039611952565b611043600061212d565b565b61104d611952565b6207a1208210156110ab5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e20302e35604482015261012960f51b6064820152608401610d2b565b6207a12081101561110a5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b6064820152608401610d2b565b61111c82670de0b6b3a7640000612b22565b600b5561113181670de0b6b3a7640000612b22565b600c555050565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b09190612b39565b939a9299509097509550909350915050565b6111ca611952565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b15801561121357600080fd5b505af1158015611227573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561127257600080fd5b505af1158015611286573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a06112ab6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156112f357600080fd5b505af1158015611307573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561135857600080fd5b505af115801561136c573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b039490941693909317909255505050565b61139c611952565b60085460405163497ec82360e01b81523360048201526001600160a01b0383811660248301529091169063497ec82390604401610e39565b6113dc611952565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610b2c90612a89565b611411611952565b610cc9828261217f565b611423611952565b601461142f8284612b0f565b11156114725760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610d2b565b60408051808201909152828152602001819052601082905560118190556114998183612b0f565b6013555050565b600033816114ae828661188b565b90508381101561150e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d2b565b610df882868684036119ac565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610ff0565b600033610bbd818585611b4a565b611564611952565b60146115708284612b0f565b11156115b35760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610d2b565b60408051808201909152828152602001819052600e829055600f8190556115da8183612b0f565b6012555050565b6115e9611952565b6115fb81670de0b6b3a7640000612b22565b600a5550565b611609611952565b6007546008546040516323b872dd60e01b81523360048201526001600160a01b0391821660248201526044810184905260009291909116906323b872dd906064016020604051808303816000875af1158015611669573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168d9190612adc565b90508015610cc957600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401610ae7565b6116ce611952565b6001600160a01b03821660009081526014602052604090205481151560ff9091161515036117515760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610d2b565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6117b8611952565b620f42408110156118165760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610d2b565b61182881670de0b6b3a7640000612b22565b600d5550565b611836611952565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b611860611952565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6118be611952565b60078054911515600160a81b0260ff60a81b19909216919091179055565b6118e4611952565b6001600160a01b0381166119495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d2b565b610fbe8161212d565b6005546001600160a01b031633146110435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d2b565b6001600160a01b038316611a0e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d2b565b6001600160a01b038216611a6f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d2b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611adc848461188b565b90506000198114611b445781811015611b375760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d2b565b611b4484848484036119ac565b50505050565b6001600160a01b038316611b705760405162461bcd60e51b8152600401610d2b90612b82565b6001600160a01b038216611b965760405162461bcd60e51b8152600401610d2b90612bc7565b6001600160a01b03831660009081526014602052604090205460ff16158015611bd857506001600160a01b03821660009081526014602052604090205460ff16155b8015611bee5750600754600160a01b900460ff16155b15611dc057600754600160b81b900460ff16611c415760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610d2b565b6001600160a01b03821660009081526015602052604090205460ff1615611cb957600c54811115611cb45760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610d2b565b611d2c565b6001600160a01b03831660009081526015602052604090205460ff1615611d2c57600b54811115611d2c5760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610d2b565b6001600160a01b03821660009081526016602052604090205460ff16611dc057600d546001600160a01b038316600090815260208190526040902054611d729083612b0f565b1115611dc05760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610d2b565b80600003611dd957611dd4838360006122e4565b505050565b30600090815260208190526040902054600a5481108015908190611e075750600754600160a01b900460ff16155b8015611e1c5750600754600160a81b900460ff165b8015611e4057506001600160a01b03841660009081526015602052604090205460ff165b8015611e6557506001600160a01b03851660009081526014602052604090205460ff16155b8015611e8a57506001600160a01b03841660009081526014602052604090205460ff16155b15611ec3576007805460ff60a01b1916600160a01b17905560135415611eb557611eb5600a5461240e565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526014602052604090205460ff600160a01b909204821615911680611f1157506001600160a01b03851660009081526014602052604090205460ff165b15611f1a575060005b6001600160a01b03851660009081526015602052604090205460ff16158015611f5c57506001600160a01b03861660009081526015602052604090205460ff16155b15611f65575060005b8015612004576001600160a01b03851660009081526015602052604081205460ff1615611fad57606460135486611f9c9190612b22565b611fa69190612c0a565b9050611feb565b6001600160a01b03871660009081526015602052604090205460ff1615611feb57606460125486611fde9190612b22565b611fe89190612c0a565b90505b611ff58186612c2c565b94506120028730836122e4565b505b61200f8686866122e4565b6008546001600160a01b031663e30443bc87612040816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561208657600080fd5b505af1925050508015612097575060015b506008546001600160a01b031663e30443bc866120c9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561210f57600080fd5b505af1925050508015612120575060015b15610b1557505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526015602052604090205481151560ff9091161515036122155760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610d2b565b6001600160a01b0382166000908152601560205260409020805460ff191682158015919091179091556122a85760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b15801561228f57600080fd5b505af11580156122a3573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661230a5760405162461bcd60e51b8152600401610d2b90612b82565b6001600160a01b0382166123305760405162461bcd60e51b8152600401610d2b90612bc7565b6001600160a01b038316600090815260208190526040902054818110156123a85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d2b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611b44565b6013546010546000916002916124249085612b22565b61242e9190612c0a565b6124389190612c0a565b905060006002601354601060000154856124529190612b22565b61245c9190612c0a565b6124669190612c0a565b60135460115491925060009161247c9086612b22565b6124869190612c0a565b9050612491836126fa565b4780156124a2576124a2838261281e565b6124ab826126fa565b47808015612558576009546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612500576040519150601f19603f3d011682016040523d82523d6000602084013e612505565b606091505b50509050806125565760405162461bcd60e51b815260206004820181905260248201527f4661696c656420746f2073656e642045544820746f206465762077616c6c65746044820152606401610d2b565b505b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156125a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125c59190612ac3565b90508080156126ef5760075460085460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612628573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061264c9190612adc565b905080156126ed57600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b15801561269a57600080fd5b505af11580156126ae573d6000803e3d6000fd5b5050604080518d8152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505b505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061272f5761272f612c3f565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ac9190612c55565b816001815181106127bf576127bf612c3f565b6001600160a01b0392831660209182029290920101526006546127e591309116846119ac565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610ae7908590600090869030904290600401612c72565b6006546128369030906001600160a01b0316846119ac565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156128a3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e679190612ce3565b6001600160a01b0381168114610fbe57600080fd5b8015158114610fbe57600080fd5b600080604083850312156128fe57600080fd5b8235612909816128c8565b91506020830135612919816128dd565b809150509250929050565b600060208083528351808285015260005b8181101561295157858101830151858201604001528201612935565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561298557600080fd5b8235612990816128c8565b946020939093013593505050565b6000602082840312156129b057600080fd5b81356129bb816128c8565b9392505050565b6000806000606084860312156129d757600080fd5b83356129e2816128c8565b925060208401356129f2816128c8565b929592945050506040919091013590565b60008060408385031215612a1657600080fd5b50508035926020909101359150565b600060208284031215612a3757600080fd5b81356129bb816128dd565b600060208284031215612a5457600080fd5b5035919050565b60008060408385031215612a6e57600080fd5b8235612a79816128c8565b91506020830135612919816128c8565b600181811c90821680612a9d57607f821691505b602082108103612abd57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612ad557600080fd5b5051919050565b600060208284031215612aee57600080fd5b81516129bb816128dd565b634e487b7160e01b600052601160045260246000fd5b80820180821115610bc357610bc3612af9565b8082028115828204841417610bc357610bc3612af9565b600080600080600060a08688031215612b5157600080fd5b8551612b5c816128c8565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082612c2757634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610bc357610bc3612af9565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c6757600080fd5b81516129bb816128c8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612cc25784516001600160a01b031683529383019391830191600101612c9d565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612cf857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203462ee8c5011d6d12b344e64c48317ed5770a23709a1df5558ff1dceb852d0c164736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000bcd0c145e4829c90708033632218cd98f7229102

-----Decoded View---------------
Arg [0] : _developerwallet (address): 0xBcD0C145E4829c90708033632218Cd98f7229102

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bcd0c145e4829c90708033632218cd98f7229102


Deployed Bytecode Sourcemap

37532:14855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43620:170;;;;;;;;;;-1:-1:-1;43620:170:0;;;;;:::i;:::-;;:::i;:::-;;15565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17925:201;;;;;;;;;;-1:-1:-1;17925:201:0;;;;;:::i;:::-;;:::i;:::-;;;1698:14:1;;1691:22;1673:41;;1661:2;1646:18;17925:201:0;1533:187:1;42311:209:0;;;;;;;;;;-1:-1:-1;42311:209:0;;;;;:::i;:::-;;:::i;44636:148::-;;;;;;;;;;;;;:::i;42613:204::-;;;;;;;;;;;;;:::i;16694:108::-;;;;;;;;;;-1:-1:-1;16782:12:0;;16694:108;;;2123:25:1;;;2111:2;2096:18;16694:108:0;1977:177:1;38221:32:0;;;;;;;;;;;;;;;;43798:98;;;;;;;;;;-1:-1:-1;43798:98:0;;;;;:::i;:::-;;:::i;18706:261::-;;;;;;;;;;-1:-1:-1;18706:261:0;;;;;:::i;:::-;;:::i;37711:24::-;;;;;;;;;;-1:-1:-1;37711:24:0;;;;-1:-1:-1;;;37711:24:0;;;;;;37777:54;;;;;;;;;;-1:-1:-1;37777:54:0;;;;-1:-1:-1;;;;;37777:54:0;;;;;;-1:-1:-1;;;;;2824:32:1;;;2806:51;;2794:2;2779:18;37777:54:0;2620:243:1;44897:117:0;;;;;;;;;;-1:-1:-1;44897:117:0;;;;;:::i;:::-;;:::i;45815:141::-;;;;;;;;;;;;;:::i;16536:93::-;;;;;;;;;;-1:-1:-1;16536:93:0;;16619:2;3010:36:1;;2998:2;2983:18;16536:93:0;2868:184:1;19376:238:0;;;;;;;;;;-1:-1:-1;19376:238:0;;;;;:::i;:::-;;:::i;38183:31::-;;;;;;;;;;;;;;;;37742:26;;;;;;;;;;-1:-1:-1;37742:26:0;;;;-1:-1:-1;;;37742:26:0;;;;;;41196:149;;;;;;;;;;;;;:::i;45964:126::-;;;;;;;;;;-1:-1:-1;45964:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;46054:28:0;46030:4;46054:28;;;:19;:28;;;;;;;;;45964:126;37947:28;;;;;;;;;;;;;;;;46290:171;;;;;;;;;;-1:-1:-1;46290:171:0;;;;;:::i;:::-;;:::i;37674:30::-;;;;;;;;;;-1:-1:-1;37674:30:0;;;;-1:-1:-1;;;37674:30:0;;;;;;16865:127;;;;;;;;;;-1:-1:-1;16865:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;16966:18:0;16939:7;16966:18;;;;;;;;;;;;16865:127;12222:103;;;;;;;;;;;;;:::i;41546:341::-;;;;;;;;;;-1:-1:-1;41546:341:0;;;;;:::i;:::-;;:::i;46469:278::-;;;;;;;;;;-1:-1:-1;46469:278:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3587:32:1;;;3569:51;;3651:2;3636:18;;3629:34;;;;3679:18;;;3672:34;;;;3737:2;3722:18;;3715:34;3780:3;3765:19;;3758:35;3556:3;3541:19;46469:278:0;3310:489:1;38094:36:0;;;;;;;;;;-1:-1:-1;38094:36:0;;;;;;;;;;;;;3978:25:1;;;4034:2;4019:18;;4012:34;;;;3951:18;38094:36:0;3804:248:1;40550:594:0;;;;;;;;;;-1:-1:-1;40550:594:0;;;;;:::i;:::-;;:::i;37913:27::-;;;;;;;;;;;;;;;;42825:160;;;;;;;;;;-1:-1:-1;42825:160:0;;;;;:::i;:::-;;:::i;11581:87::-;;;;;;;;;;-1:-1:-1;11654:6:0;;-1:-1:-1;;;;;11654:6:0;11581:87;;37840:24;;;;;;;;;;-1:-1:-1;37840:24:0;;;;-1:-1:-1;;;;;37840:24:0;;;44792:95;;;;;;;;;;-1:-1:-1;44792:95:0;;;;;:::i;:::-;;:::i;15784:104::-;;;;;;;;;;;;;:::i;45084:171::-;;;;;;;;;;-1:-1:-1;45084:171:0;;;;;:::i;:::-;;:::i;44146:237::-;;;;;;;;;;-1:-1:-1;44146:237:0;;;;;:::i;:::-;;:::i;20117:436::-;;;;;;;;;;-1:-1:-1;20117:436:0;;;;;:::i;:::-;;:::i;37618:19::-;;;;;;;;;;-1:-1:-1;37618:19:0;;;;-1:-1:-1;;;;;37618:19:0;;;46098:184;;;;;;;;;;-1:-1:-1;46098:184:0;;;;;:::i;:::-;;:::i;17198:193::-;;;;;;;;;;-1:-1:-1;17198:193:0;;;;;:::i;:::-;;:::i;43904:234::-;;;;;;;;;;-1:-1:-1;43904:234:0;;;;;:::i;:::-;;:::i;41895:119::-;;;;;;;;;;-1:-1:-1;41895:119:0;;;;;:::i;:::-;;:::i;38321:57::-;;;;;;;;;;-1:-1:-1;38321:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51045:320;;;;;;;;;;-1:-1:-1;51045:320:0;;;;;:::i;:::-;;:::i;43233:327::-;;;;;;;;;;-1:-1:-1;43233:327:0;;;;;:::i;:::-;;:::i;41353:185::-;;;;;;;;;;-1:-1:-1;41353:185:0;;;;;:::i;:::-;;:::i;42993:113::-;;;;;;;;;;-1:-1:-1;42993:113:0;;;;;:::i;:::-;;:::i;42022:165::-;;;;;;;;;;-1:-1:-1;42022:165:0;;;;;:::i;:::-;;:::i;17454:151::-;;;;;;;;;;-1:-1:-1;17454:151:0;;;;;:::i;:::-;;:::i;44529:99::-;;;;;;;;;;-1:-1:-1;44529:99:0;;;;;:::i;:::-;;:::i;37873:33::-;;;;;;;;;;;;;;;;12480:201;;;;;;;;;;-1:-1:-1;12480:201:0;;;;;:::i;:::-;;:::i;38137:37::-;;;;;;;;;;-1:-1:-1;38137:37:0;;;;;;;;;37583:28;;;;;;;;;;-1:-1:-1;37583:28:0;;;;-1:-1:-1;;;;;37583:28:0;;;37982:24;;;;;;;;;;;;;;;;43620:170;11467:13;:11;:13::i;:::-;43730:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;43730:52:0;;-1:-1:-1;;;;;5506:32:1;;;43730:52:0::1;::::0;::::1;5488:51:1::0;5582:14;;5575:22;5555:18;;;5548:50;43730:15:0;;::::1;::::0;:36:::1;::::0;5461:18:1;;43730:52:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43620:170:::0;;:::o;15565:100::-;15619:13;15652:5;15645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15565:100;:::o;17925:201::-;18008:4;7689:10;18064:32;7689:10;18080:7;18089:6;18064:8;:32::i;:::-;18114:4;18107:11;;;17925:201;;;;;:::o;42311:209::-;11467:13;:11;:13::i;:::-;42397:12:::1;-1:-1:-1::0;;;;;42390:29:0::1;;42434:7;11654:6:::0;;-1:-1:-1;;;;;11654:6:0;;11581:87;42434:7:::1;42456:45;::::0;-1:-1:-1;;;42456:45:0;;42495:4:::1;42456:45;::::0;::::1;2806:51:1::0;-1:-1:-1;;;;;42456:30:0;::::1;::::0;::::1;::::0;2779:18:1;;42456:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42390:122;::::0;-1:-1:-1;;;;;;42390:122:0::1;::::0;;;;;;-1:-1:-1;;;;;6375:32:1;;;42390:122:0::1;::::0;::::1;6357:51:1::0;6424:18;;;6417:34;6330:18;;42390:122:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42311:209:::0;:::o;44636:148::-;11467:13;:11;:13::i;:::-;44702:14:::1;::::0;-1:-1:-1;;;44702:14:0;::::1;;;44701:15;44693:51;;;::::0;-1:-1:-1;;;44693:51:0;;6914:2:1;44693:51:0::1;::::0;::::1;6896:21:1::0;6953:2;6933:18;;;6926:30;6992:25;6972:18;;;6965:53;7035:18;;44693:51:0::1;;;;;;;;;44755:14;:21:::0;;-1:-1:-1;;;;44755:21:0::1;-1:-1:-1::0;;;44755:21:0::1;::::0;;44636:148::o;42613:204::-;11467:13;:11;:13::i;:::-;42744:9:::1;::::0;42736:46:::1;::::0;42685:21:::1;::::0;42664:18:::1;::::0;-1:-1:-1;;;;;42744:9:0;;::::1;::::0;42685:21;;42664:18;42736:46;42664:18;42736:46;42685:21;42744:9;42736:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42717:65;;;42801:7;42793:16;;;::::0;::::1;43798:98:::0;11467:13;:11;:13::i;:::-;43867:9:::1;:21:::0;;-1:-1:-1;;;;;;43867:21:0::1;-1:-1:-1::0;;;;;43867:21:0;;;::::1;::::0;;;::::1;::::0;;43798:98::o;18706:261::-;18803:4;7689:10;18861:38;18877:4;7689:10;18892:6;18861:15;:38::i;:::-;18910:27;18920:4;18926:2;18930:6;18910:9;:27::i;:::-;-1:-1:-1;18955:4:0;;18706:261;-1:-1:-1;;;;18706:261:0:o;44897:117::-;11467:13;:11;:13::i;:::-;44966:15:::1;::::0;:40:::1;::::0;-1:-1:-1;;;44966:40:0;;-1:-1:-1;;;;;2824:32:1;;;44966:40:0::1;::::0;::::1;2806:51:1::0;44966:15:0;;::::1;::::0;:30:::1;::::0;2779:18:1;;44966:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44897:117:::0;:::o;45815:141::-;45905:15;;:43;;;-1:-1:-1;;;45905:43:0;;;;45878:7;;-1:-1:-1;;;;;45905:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45898:50;;45815:141;:::o;19376:238::-;19464:4;7689:10;19520:64;7689:10;19536:7;19573:10;19545:25;7689:10;19536:7;19545:9;:25::i;:::-;:38;;;;:::i;:::-;19520:8;:64::i;41196:149::-;41241:12;;-1:-1:-1;;;41241:12:0;;;;41233:42;;;;-1:-1:-1;;;41233:42:0;;7738:2:1;41233:42:0;;;7720:21:1;7777:2;7757:18;;;7750:30;-1:-1:-1;;;7796:18:1;;;7789:47;7853:18;;41233:42:0;7536:341:1;41233:42:0;41286:15;;:51;;-1:-1:-1;;;41286:51:0;;41325:10;41286:51;;;2806::1;-1:-1:-1;;;;;41286:15:0;;;;:30;;2779:18:1;;41286:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41196:149::o;46290:171::-;46419:15;;:34;;-1:-1:-1;;;46419:34:0;;-1:-1:-1;;;;;2824:32:1;;;46419:34:0;;;2806:51:1;46387:7:0;;46419:15;;:25;;2779:18:1;;46419:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12222:103::-;11467:13;:11;:13::i;:::-;12287:30:::1;12314:1;12287:18;:30::i;:::-;12222:103::o:0;41546:341::-;11467:13;:11;:13::i;:::-;41674:6:::1;41664;:16;;41656:63;;;::::0;-1:-1:-1;;;41656:63:0;;8308:2:1;41656:63:0::1;::::0;::::1;8290:21:1::0;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;-1:-1:-1;;;8437:18:1;;;8430:32;8479:19;;41656:63:0::1;8106:398:1::0;41656:63:0::1;41749:6;41738:7;:17;;41730:65;;;::::0;-1:-1:-1;;;41730:65:0;;8711:2:1;41730:65:0::1;::::0;::::1;8693:21:1::0;8750:2;8730:18;;;8723:30;8789:34;8769:18;;;8762:62;-1:-1:-1;;;8840:18:1;;;8833:33;8883:19;;41730:65:0::1;8509:399:1::0;41730:65:0::1;41821:15;:6:::0;41830::::1;41821:15;:::i;:::-;41806:12;:30:::0;41863:16:::1;:7:::0;41873:6:::1;41863:16;:::i;:::-;41847:13;:32:::0;-1:-1:-1;;41546:341:0:o;46469:278::-;46704:15;;:35;;-1:-1:-1;;;46704:35:0;;-1:-1:-1;;;;;2824:32:1;;;46704:35:0;;;2806:51:1;46574:7:0;;;;;;;;;;46704:15;;;:26;;2779:18:1;;46704:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46697:42;;;;-1:-1:-1;46697:42:0;;-1:-1:-1;46697:42:0;-1:-1:-1;46697:42:0;;-1:-1:-1;46469:278:0;-1:-1:-1;;46469:278:0:o;40550:594::-;11467:13;:11;:13::i;:::-;40769:111:::1;::::0;-1:-1:-1;;;40769:111:0;;-1:-1:-1;;;;;40769:39:0;::::1;:111;::::0;::::1;5488:51:1::0;;;40865:4:0::1;5555:18:1::0;;;5548:50;40736:10:0;;40769:39:::1;::::0;5461:18:1;;40769:111:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;40891:60:0::1;::::0;-1:-1:-1;;;40891:60:0;;40939:4:::1;40891:60;::::0;::::1;5488:51:1::0;40946:4:0::1;5555:18:1::0;;;5548:50;-1:-1:-1;;;;;40891:39:0;::::1;::::0;-1:-1:-1;40891:39:0::1;::::0;-1:-1:-1;5461:18:1;;40891:60:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40962:18;-1:-1:-1::0;;;;;40962:39:0::1;;41002:7;11654:6:::0;;-1:-1:-1;;;;;11654:6:0;;11581:87;41002:7:::1;40962:54;::::0;-1:-1:-1;;;;;;40962:54:0::1;::::0;;;;;;-1:-1:-1;;;;;5506:32:1;;;40962:54:0::1;::::0;::::1;5488:51:1::0;41011:4:0::1;5555:18:1::0;;;5548:50;5461:18;;40962:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;41075:6:0::1;::::0;41027:62:::1;::::0;-1:-1:-1;;;41027:62:0;;-1:-1:-1;;;;;41075:6:0;;::::1;41027:62;::::0;::::1;5488:51:1::0;41075:6:0;5555:18:1;;;5548:50;41027:39:0;;::::1;::::0;-1:-1:-1;41027:39:0::1;::::0;-1:-1:-1;5461:18:1;;41027:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;41100:15:0::1;:36:::0;;-1:-1:-1;;;;;;41100:36:0::1;-1:-1:-1::0;;;;;41100:36:0;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;40550:594:0:o;42825:160::-;11467:13;:11;:13::i;:::-;42911:15:::1;::::0;:66:::1;::::0;-1:-1:-1;;;42911:66:0;;42952:10:::1;42911:66;::::0;::::1;9800:34:1::0;-1:-1:-1;;;;;9870:15:1;;;9850:18;;;9843:43;42911:15:0;;::::1;::::0;:40:::1;::::0;9735:18:1;;42911:66:0::1;9588:304:1::0;44792:95:0;11467:13;:11;:13::i;:::-;44859:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;44859:20:0::1;-1:-1:-1::0;;;;44859:20:0;;::::1;::::0;;;::::1;::::0;;44792:95::o;15784:104::-;15840:13;15873:7;15866:14;;;;;:::i;45084:171::-;11467:13;:11;:13::i;:::-;45203:44:::1;45232:7;45241:5;45203:28;:44::i;44146:237::-:0;11467:13;:11;:13::i;:::-;44261:2:::1;44240:17;44253:4:::0;44240:10;:17:::1;:::i;:::-;:23;;44232:54;;;::::0;-1:-1:-1;;;44232:54:0;;10099:2:1;44232:54:0::1;::::0;::::1;10081:21:1::0;10138:2;10118:18;;;10111:30;-1:-1:-1;;;10157:18:1;;;10150:48;10215:18;;44232:54:0::1;9897:342:1::0;44232:54:0::1;44309:23;::::0;;;;::::1;::::0;;;;;;::::1;;::::0;;;44297:9:::1;:35:::0;;;;;;;44358:17:::1;44327:4:::0;44315:10;44358:17:::1;:::i;:::-;44343:12;:32:::0;-1:-1:-1;;44146:237:0:o;20117:436::-;20210:4;7689:10;20210:4;20293:25;7689:10;20310:7;20293:9;:25::i;:::-;20266:52;;20357:15;20337:16;:35;;20329:85;;;;-1:-1:-1;;;20329:85:0;;10446:2:1;20329:85:0;;;10428:21:1;10485:2;10465:18;;;10458:30;10524:34;10504:18;;;10497:62;-1:-1:-1;;;10575:18:1;;;10568:35;10620:19;;20329:85:0;10244:401:1;20329:85:0;20450:60;20459:5;20466:7;20494:15;20475:16;:34;20450:8;:60::i;46098:184::-;46227:15;;:47;;-1:-1:-1;;;46227:47:0;;-1:-1:-1;;;;;2824:32:1;;;46227:47:0;;;2806:51:1;46195:7:0;;46227:15;;:38;;2779:18:1;;46227:47:0;2620:243:1;17198:193:0;17277:4;7689:10;17333:28;7689:10;17350:2;17354:6;17333:9;:28::i;43904:234::-;11467:13;:11;:13::i;:::-;44018:2:::1;43997:17;44010:4:::0;43997:10;:17:::1;:::i;:::-;:23;;43989:54;;;::::0;-1:-1:-1;;;43989:54:0;;10099:2:1;43989:54:0::1;::::0;::::1;10081:21:1::0;10138:2;10118:18;;;10111:30;-1:-1:-1;;;10157:18:1;;;10150:48;10215:18;;43989:54:0::1;9897:342:1::0;43989:54:0::1;44065:23;::::0;;;;::::1;::::0;;;;;;::::1;;::::0;;;44054:8:::1;:34:::0;;;;;;;44113:17:::1;44083:4:::0;44071:10;44113:17:::1;:::i;:::-;44099:11;:31:::0;-1:-1:-1;;43904:234:0:o;41895:119::-;11467:13;:11;:13::i;:::-;41991:15:::1;:6:::0;42000::::1;41991:15;:::i;:::-;41970:18;:36:::0;-1:-1:-1;41895:119:0:o;51045:320::-;11467:13;:11;:13::i;:::-;51148:4:::1;::::0;51214:15:::1;::::0;51141:121:::1;::::0;-1:-1:-1;;;51141:121:0;;51181:10:::1;51141:121;::::0;::::1;10890:34:1::0;-1:-1:-1;;;;;51214:15:0;;::::1;10940:18:1::0;;;10933:43;10992:18;;;10985:34;;;51126:12:0::1;::::0;51148:4;;;::::1;::::0;51141:25:::1;::::0;10825:18:1;;51141:121:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51126:136;;51277:7;51273:85;;;51301:15;::::0;:45:::1;::::0;-1:-1:-1;;;51301:45:0;;::::1;::::0;::::1;2123:25:1::0;;;-1:-1:-1;;;;;51301:15:0;;::::1;::::0;:37:::1;::::0;2096:18:1;;51301:45:0::1;1977:177:1::0;43233:327:0;11467:13;:11;:13::i;:::-;-1:-1:-1;;;;;43340:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;43318:132:::1;;;::::0;-1:-1:-1;;;43318:132:0;;11232:2:1;43318:132:0::1;::::0;::::1;11214:21:1::0;11271:2;11251:18;;;11244:30;11310:34;11290:18;;;11283:62;-1:-1:-1;;;11361:18:1;;;11354:40;11411:19;;43318:132:0::1;11030:406:1::0;43318:132:0::1;-1:-1:-1::0;;;;;43461:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43461:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43518:34;;1673:41:1;;;43518:34:0::1;::::0;1646:18:1;43518:34:0::1;;;;;;;43233:327:::0;;:::o;41353:185::-;11467:13;:11;:13::i;:::-;41446:7:::1;41436:6;:17;;41428:64;;;::::0;-1:-1:-1;;;41428:64:0;;11643:2:1;41428:64:0::1;::::0;::::1;11625:21:1::0;11682:2;11662:18;;;11655:30;11721:34;11701:18;;;11694:62;-1:-1:-1;;;11772:18:1;;;11765:32;11814:19;;41428:64:0::1;11441:398:1::0;41428:64:0::1;41515:15;:6:::0;41524::::1;41515:15;:::i;:::-;41503:9;:27:::0;-1:-1:-1;41353:185:0:o;42993:113::-;11467:13;:11;:13::i;:::-;43064:6:::1;:34:::0;;-1:-1:-1;;;;;;43064:34:0::1;-1:-1:-1::0;;;;;43064:34:0;;;::::1;::::0;;;::::1;::::0;;42993:113::o;42022:165::-;11467:13;:11;:13::i;:::-;-1:-1:-1;;;;;42135:33:0;;;::::1;;::::0;;;:24:::1;:33;::::0;;;;:44;;-1:-1:-1;;42135:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42022:165::o;17454:151::-;-1:-1:-1;;;;;17570:18:0;;;17543:7;17570:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17454:151::o;44529:99::-;11467:13;:11;:13::i;:::-;44598:11:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;44598:22:0::1;-1:-1:-1::0;;;;44598:22:0;;::::1;::::0;;;::::1;::::0;;44529:99::o;12480:201::-;11467:13;:11;:13::i;:::-;-1:-1:-1;;;;;12569:22:0;::::1;12561:73;;;::::0;-1:-1:-1;;;12561:73:0;;12046:2:1;12561:73:0::1;::::0;::::1;12028:21:1::0;12085:2;12065:18;;;12058:30;12124:34;12104:18;;;12097:62;-1:-1:-1;;;12175:18:1;;;12168:36;12221:19;;12561:73:0::1;11844:402:1::0;12561:73:0::1;12645:28;12664:8;12645:18;:28::i;11746:132::-:0;11654:6;;-1:-1:-1;;;;;11654:6:0;7689:10;11810:23;11802:68;;;;-1:-1:-1;;;11802:68:0;;12453:2:1;11802:68:0;;;12435:21:1;;;12472:18;;;12465:30;12531:34;12511:18;;;12504:62;12583:18;;11802:68:0;12251:356:1;24110:346:0;-1:-1:-1;;;;;24212:19:0;;24204:68;;;;-1:-1:-1;;;24204:68:0;;12814:2:1;24204:68:0;;;12796:21:1;12853:2;12833:18;;;12826:30;12892:34;12872:18;;;12865:62;-1:-1:-1;;;12943:18:1;;;12936:34;12987:19;;24204:68:0;12612:400:1;24204:68:0;-1:-1:-1;;;;;24291:21:0;;24283:68;;;;-1:-1:-1;;;24283:68:0;;13219:2:1;24283:68:0;;;13201:21:1;13258:2;13238:18;;;13231:30;13297:34;13277:18;;;13270:62;-1:-1:-1;;;13348:18:1;;;13341:32;13390:19;;24283:68:0;13017:398:1;24283:68:0;-1:-1:-1;;;;;24364:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24416:32;;2123:25:1;;;24416:32:0;;2096:18:1;24416:32:0;;;;;;;24110:346;;;:::o;24747:419::-;24848:24;24875:25;24885:5;24892:7;24875:9;:25::i;:::-;24848:52;;-1:-1:-1;;24915:16:0;:37;24911:248;;24997:6;24977:16;:26;;24969:68;;;;-1:-1:-1;;;24969:68:0;;13622:2:1;24969:68:0;;;13604:21:1;13661:2;13641:18;;;13634:30;13700:31;13680:18;;;13673:59;13749:18;;24969:68:0;13420:353:1;24969:68:0;25081:51;25090:5;25097:7;25125:6;25106:16;:25;25081:8;:51::i;:::-;24837:329;24747:419;;;:::o;46847:2652::-;-1:-1:-1;;;;;46979:18:0;;46971:68;;;;-1:-1:-1;;;46971:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47058:16:0;;47050:64;;;;-1:-1:-1;;;47050:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47146:25:0;;;;;;:19;:25;;;;;;;;47145:26;:54;;;;-1:-1:-1;;;;;;47176:23:0;;;;;;:19;:23;;;;;;;;47175:24;47145:54;:67;;;;-1:-1:-1;47204:8:0;;-1:-1:-1;;;47204:8:0;;;;47203:9;47145:67;47127:788;;;47247:14;;-1:-1:-1;;;47247:14:0;;;;47239:45;;;;-1:-1:-1;;;47239:45:0;;14790:2:1;47239:45:0;;;14772:21:1;14829:2;14809:18;;;14802:30;-1:-1:-1;;;14848:18:1;;;14841:48;14906:18;;47239:45:0;14588:342:1;47239:45:0;-1:-1:-1;;;;;47303:29:0;;;;;;:25;:29;;;;;;;;47299:384;;;47393:13;;47383:6;:23;;47353:128;;;;-1:-1:-1;;;47353:128:0;;15137:2:1;47353:128:0;;;15119:21:1;15176:2;15156:18;;;15149:30;15215:33;15195:18;;;15188:61;15266:18;;47353:128:0;14935:355:1;47353:128:0;47299:384;;;-1:-1:-1;;;;;47507:31:0;;;;;;:25;:31;;;;;;;;47503:180;;;47597:12;;47587:6;:22;;47557:126;;;;-1:-1:-1;;;47557:126:0;;15497:2:1;47557:126:0;;;15479:21:1;15536:2;15516:18;;;15509:30;15575:32;15555:18;;;15548:60;15625:18;;47557:126:0;15295:354:1;47557:126:0;-1:-1:-1;;;;;47703:28:0;;;;;;:24;:28;;;;;;;;47698:206;;47808:9;;-1:-1:-1;;;;;16966:18:0;;16939:7;16966:18;;;;;;;;;;;47782:22;;:6;:22;:::i;:::-;:35;;47752:136;;;;-1:-1:-1;;;47752:136:0;;15856:2:1;47752:136:0;;;15838:21:1;15895:2;15875:18;;;15868:30;15934:29;15914:18;;;15907:57;15981:18;;47752:136:0;15654:351:1;47752:136:0;47931:6;47941:1;47931:11;47927:93;;47959:28;47975:4;47981:2;47985:1;47959:15;:28::i;:::-;46847:2652;;;:::o;47927:93::-;48081:4;48032:28;16966:18;;;;;;;;;;;48137;;48113:42;;;;;;;48186:33;;-1:-1:-1;48211:8:0;;-1:-1:-1;;;48211:8:0;;;;48210:9;48186:33;:61;;;;-1:-1:-1;48236:11:0;;-1:-1:-1;;;48236:11:0;;;;48186:61;:107;;;;-1:-1:-1;;;;;;48264:29:0;;;;;;:25;:29;;;;;;;;48186:107;:150;;;;-1:-1:-1;;;;;;48311:25:0;;;;;;:19;:25;;;;;;;;48310:26;48186:150;:191;;;;-1:-1:-1;;;;;;48354:23:0;;;;;;:19;:23;;;;;;;;48353:24;48186:191;48168:403;;;48404:8;:15;;-1:-1:-1;;;;48404:15:0;-1:-1:-1;;;48404:15:0;;;48440:12;;:16;48436:91;;48477:34;48492:18;;48477:14;:34::i;:::-;48543:8;:16;;-1:-1:-1;;;;48543:16:0;;;48168:403;48599:8;;-1:-1:-1;;;;;48709:25:0;;48583:12;48709:25;;;48599:8;48709:25;;;;;;48599:8;-1:-1:-1;;;48599:8:0;;;;;48598:9;;48709:25;;:52;;-1:-1:-1;;;;;;48738:23:0;;;;;;:19;:23;;;;;;;;48709:52;48705:100;;;-1:-1:-1;48788:5:0;48705:100;-1:-1:-1;;;;;48822:29:0;;;;;;:25;:29;;;;;;;;48821:30;:66;;;;-1:-1:-1;;;;;;48856:31:0;;;;;;:25;:31;;;;;;;;48855:32;48821:66;48817:100;;;-1:-1:-1;48912:5:0;48817:100;48934:7;48930:370;;;-1:-1:-1;;;;;48991:29:0;;48958:14;48991:29;;;:25;:29;;;;;;;;48987:201;;;49074:3;49058:12;;49049:6;:21;;;;:::i;:::-;49048:29;;;;:::i;:::-;49039:38;;48987:201;;;-1:-1:-1;;;;;49101:31:0;;;;;;:25;:31;;;;;;;;49097:91;;;49185:3;49170:11;;49161:6;:20;;;;:::i;:::-;49160:28;;;;:::i;:::-;49151:37;;49097:91;49214:15;49223:6;49214;:15;:::i;:::-;49205:24;;49244:44;49260:4;49274;49281:6;49244:15;:44::i;:::-;48943:357;48930:370;49310:33;49326:4;49332:2;49336:6;49310:15;:33::i;:::-;49360:15;;-1:-1:-1;;;;;49360:15:0;:26;49387:4;49393:15;49387:4;-1:-1:-1;;;;;16966:18:0;16939:7;16966:18;;;;;;;;;;;;16865:127;49393:15;49360:49;;-1:-1:-1;;;;;;49360:49:0;;;;;;;-1:-1:-1;;;;;6375:32:1;;;49360:49:0;;;6357:51:1;6424:18;;;6417:34;6330:18;;49360:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49356:65;49435:15;;-1:-1:-1;;;;;49435:15:0;:26;49462:2;49466:13;49462:2;-1:-1:-1;;;;;16966:18:0;16939:7;16966:18;;;;;;;;;;;;16865:127;49466:13;49435:45;;-1:-1:-1;;;;;;49435:45:0;;;;;;;-1:-1:-1;;;;;6375:32:1;;;49435:45:0;;;6357:51:1;6424:18;;;6417:34;6330:18;;49435:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49431:61;;;46960:2539;;;46847:2652;;;:::o;12841:191::-;12934:6;;;-1:-1:-1;;;;;12951:17:0;;;-1:-1:-1;;;;;;12951:17:0;;;;;;;12984:40;;12934:6;;;12951:17;12934:6;;12984:40;;12915:16;;12984:40;12904:128;12841:191;:::o;45263:458::-;-1:-1:-1;;;;;45371:34:0;;;;;;:25;:34;;;;;;:43;;;:34;;;;:43;;;45349:149;;;;-1:-1:-1;;;45349:149:0;;16567:2:1;45349:149:0;;;16549:21:1;16606:2;16586:18;;;16579:30;16645:34;16625:18;;;16618:62;16716:26;16696:18;;;16689:54;16760:19;;45349:149:0;16365:420:1;45349:149:0;-1:-1:-1;;;;;45509:34:0;;;;;;:25;:34;;;;;:42;;-1:-1:-1;;45509:42:0;;;;;;;;;;;;45564:89;;45590:15;;:51;;-1:-1:-1;;;45590:51:0;;-1:-1:-1;;;;;5506:32:1;;;45590:51:0;;;5488::1;45590:15:0;5555:18:1;;;5548:50;45590:15:0;;;;:36;;5461:18:1;;45590:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45564:89;45670:43;;;;;;-1:-1:-1;;;;;45670:43:0;;;;;;;;45263:458;;:::o;21023:806::-;-1:-1:-1;;;;;21120:18:0;;21112:68;;;;-1:-1:-1;;;21112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21199:16:0;;21191:64;;;;-1:-1:-1;;;21191:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21341:15:0;;21319:19;21341:15;;;;;;;;;;;21375:21;;;;21367:72;;;;-1:-1:-1;;;21367:72:0;;16992:2:1;21367:72:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;-1:-1:-1;;;17121:18:1;;;17114:36;17167:19;;21367:72:0;16790:402:1;21367:72:0;-1:-1:-1;;;;;21475:15:0;;;:9;:15;;;;;;;;;;;21493:20;;;21475:38;;21693:13;;;;;;;;;;:23;;;;;;21745:26;;2123:25:1;;;21693:13:0;;21745:26;;2096:18:1;21745:26:0;;;;;;;21784:37;46847:2652;49507:1412;49623:12;;49600:9;:19;49566:20;;49639:1;;49591:28;;:6;:28;:::i;:::-;49590:45;;;;:::i;:::-;49589:51;;;;:::i;:::-;49566:74;;49651:32;49736:1;49720:12;;49697:9;:19;;;49688:6;:28;;;;:::i;:::-;49687:45;;;;:::i;:::-;49686:51;;;;:::i;:::-;49798:12;;49781:13;;49651:86;;-1:-1:-1;49748:20:0;;49772:22;;:6;:22;:::i;:::-;49771:39;;;;:::i;:::-;49748:62;;49823:30;49840:12;49823:16;:30::i;:::-;49891:21;49929:18;;49925:142;;50001:54;50014:24;50040:14;50001:12;:54::i;:::-;50079:30;50096:12;50079:16;:30::i;:::-;50146:21;;50255:10;;50251:171;;50309:9;;50301:42;;50283:12;;-1:-1:-1;;;;;50309:9:0;;50332:6;;50283:12;50301:42;50283:12;50301:42;50332:6;50309:9;50301:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50282:61;;;50366:7;50358:52;;;;-1:-1:-1;;;50358:52:0;;17399:2:1;50358:52:0;;;17381:21:1;;;17418:18;;;17411:30;17477:34;17457:18;;;17450:62;17529:18;;50358:52:0;17197:356:1;50358:52:0;50267:155;50251:171;50461:4;;50454:37;;-1:-1:-1;;;50454:37:0;;50485:4;50454:37;;;2806:51:1;50434:17:0;;-1:-1:-1;;;;;50461:4:0;;50454:22;;2779:18:1;;50454:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50434:57;-1:-1:-1;50434:57:0;50582:13;;50578:334;;50634:4;;50675:15;;50627:107;;-1:-1:-1;;;50627:107:0;;-1:-1:-1;;;;;50675:15:0;;;50627:107;;;6357:51:1;6424:18;;;6417:34;;;50612:12:0;;50634:4;;;;;50627:21;;6330:18:1;;50627:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50612:122;;50753:7;50749:152;;;50781:15;;:48;;-1:-1:-1;;;50781:48:0;;;;;2123:25:1;;;-1:-1:-1;;;;;50781:15:0;;;;:37;;2096:18:1;;50781:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50853:32:0;;;3978:25:1;;;4034:2;4019:18;;4012:34;;;50853:32:0;;-1:-1:-1;3951:18:1;;-1:-1:-1;50853:32:0;;;;;;;50749:152;50597:315;50578:334;49555:1364;;;;;;;;49507:1412;:::o;51373:502::-;51463:16;;;51477:1;51463:16;;;;;;;;51439:21;;51463:16;;;;;;;;;;-1:-1:-1;51463:16:0;51439:40;;51508:4;51490;51495:1;51490:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51490:23:0;;;:7;;;;;;;;;;:23;;;;51534:6;;:13;;;-1:-1:-1;;;51534:13:0;;;;:6;;;;;:11;;:13;;;;;51490:7;;51534:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51524:4;51529:1;51524:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51524:23:0;;;:7;;;;;;;;;:23;51592:6;;51560:53;;51577:4;;51592:6;51601:11;51560:8;:53::i;:::-;51652:6;;:215;;-1:-1:-1;;;51652:215:0;;-1:-1:-1;;;;;51652:6:0;;;;:57;;:215;;51724:11;;51652:6;;51794:4;;51821;;51841:15;;51652:215;;;:::i;51883:501::-;52063:6;;52031:53;;52048:4;;-1:-1:-1;;;;;52063:6:0;52072:11;52031:8;:53::i;:::-;52127:6;;:249;;-1:-1:-1;;;52127:249:0;;52190:4;52127:249;;;19404:34:1;;;19454:18;;;19447:34;;;52127:6:0;19497:18:1;;;19490:34;;;19540:18;;;19533:34;19583:19;;;19576:44;52350:15:0;19636:19:1;;;19629:35;-1:-1:-1;;;;;52127:6:0;;;;:22;;52157:9;;19338:19:1;;52127:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:118;236:5;229:13;222:21;215:5;212:32;202:60;;258:1;255;248:12;273:382;338:6;346;399:2;387:9;378:7;374:23;370:32;367:52;;;415:1;412;405:12;367:52;454:9;441:23;473:31;498:5;473:31;:::i;:::-;523:5;-1:-1:-1;580:2:1;565:18;;552:32;593:30;552:32;593:30;:::i;:::-;642:7;632:17;;;273:382;;;;;:::o;660:548::-;772:4;801:2;830;819:9;812:21;862:6;856:13;905:6;900:2;889:9;885:18;878:34;930:1;940:140;954:6;951:1;948:13;940:140;;;1049:14;;;1045:23;;1039:30;1015:17;;;1034:2;1011:26;1004:66;969:10;;940:140;;;944:3;1129:1;1124:2;1115:6;1104:9;1100:22;1096:31;1089:42;1199:2;1192;1188:7;1183:2;1175:6;1171:15;1167:29;1156:9;1152:45;1148:54;1140:62;;;;660:548;;;;:::o;1213:315::-;1281:6;1289;1342:2;1330:9;1321:7;1317:23;1313:32;1310:52;;;1358:1;1355;1348:12;1310:52;1397:9;1384:23;1416:31;1441:5;1416:31;:::i;:::-;1466:5;1518:2;1503:18;;;;1490:32;;-1:-1:-1;;;1213:315:1:o;1725:247::-;1784:6;1837:2;1825:9;1816:7;1812:23;1808:32;1805:52;;;1853:1;1850;1843:12;1805:52;1892:9;1879:23;1911:31;1936:5;1911:31;:::i;:::-;1961:5;1725:247;-1:-1:-1;;;1725:247:1:o;2159:456::-;2236:6;2244;2252;2305:2;2293:9;2284:7;2280:23;2276:32;2273:52;;;2321:1;2318;2311:12;2273:52;2360:9;2347:23;2379:31;2404:5;2379:31;:::i;:::-;2429:5;-1:-1:-1;2486:2:1;2471:18;;2458:32;2499:33;2458:32;2499:33;:::i;:::-;2159:456;;2551:7;;-1:-1:-1;;;2605:2:1;2590:18;;;;2577:32;;2159:456::o;3057:248::-;3125:6;3133;3186:2;3174:9;3165:7;3161:23;3157:32;3154:52;;;3202:1;3199;3192:12;3154:52;-1:-1:-1;;3225:23:1;;;3295:2;3280:18;;;3267:32;;-1:-1:-1;3057:248:1:o;4265:241::-;4321:6;4374:2;4362:9;4353:7;4349:23;4345:32;4342:52;;;4390:1;4387;4380:12;4342:52;4429:9;4416:23;4448:28;4470:5;4448:28;:::i;4511:180::-;4570:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:52;;;4639:1;4636;4629:12;4591:52;-1:-1:-1;4662:23:1;;4511:180;-1:-1:-1;4511:180:1:o;4696:388::-;4764:6;4772;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;4880:9;4867:23;4899:31;4924:5;4899:31;:::i;:::-;4949:5;-1:-1:-1;5006:2:1;4991:18;;4978:32;5019:33;4978:32;5019:33;:::i;5609:380::-;5688:1;5684:12;;;;5731;;;5752:61;;5806:4;5798:6;5794:17;5784:27;;5752:61;5859:2;5851:6;5848:14;5828:18;5825:38;5822:161;;5905:10;5900:3;5896:20;5893:1;5886:31;5940:4;5937:1;5930:15;5968:4;5965:1;5958:15;5822:161;;5609:380;;;:::o;5994:184::-;6064:6;6117:2;6105:9;6096:7;6092:23;6088:32;6085:52;;;6133:1;6130;6123:12;6085:52;-1:-1:-1;6156:16:1;;5994:184;-1:-1:-1;5994:184:1:o;6462:245::-;6529:6;6582:2;6570:9;6561:7;6557:23;6553:32;6550:52;;;6598:1;6595;6588:12;6550:52;6630:9;6624:16;6649:28;6671:5;6649:28;:::i;7274:127::-;7335:10;7330:3;7326:20;7323:1;7316:31;7366:4;7363:1;7356:15;7390:4;7387:1;7380:15;7406:125;7471:9;;;7492:10;;;7489:36;;;7505:18;;:::i;8913:168::-;8986:9;;;9017;;9034:15;;;9028:22;;9014:37;9004:71;;9055:18;;:::i;9086:497::-;9192:6;9200;9208;9216;9224;9277:3;9265:9;9256:7;9252:23;9248:33;9245:53;;;9294:1;9291;9284:12;9245:53;9326:9;9320:16;9345:31;9370:5;9345:31;:::i;:::-;9440:2;9425:18;;9419:25;9484:2;9469:18;;9463:25;9528:2;9513:18;;9507:25;9572:3;9557:19;;;9551:26;9395:5;;9419:25;;-1:-1:-1;9463:25:1;9507;-1:-1:-1;9551:26:1;;-1:-1:-1;9086:497:1;-1:-1:-1;;;9086:497:1:o;13778:401::-;13980:2;13962:21;;;14019:2;13999:18;;;13992:30;14058:34;14053:2;14038:18;;14031:62;-1:-1:-1;;;14124:2:1;14109:18;;14102:35;14169:3;14154:19;;13778:401::o;14184:399::-;14386:2;14368:21;;;14425:2;14405:18;;;14398:30;14464:34;14459:2;14444:18;;14437:62;-1:-1:-1;;;14530:2:1;14515:18;;14508:33;14573:3;14558:19;;14184:399::o;16010:217::-;16050:1;16076;16066:132;;16120:10;16115:3;16111:20;16108:1;16101:31;16155:4;16152:1;16145:15;16183:4;16180:1;16173:15;16066:132;-1:-1:-1;16212:9:1;;16010:217::o;16232:128::-;16299:9;;;16320:11;;;16317:37;;;16334:18;;:::i;17690:127::-;17751:10;17746:3;17742:20;17739:1;17732:31;17782:4;17779:1;17772:15;17806:4;17803:1;17796:15;17822:251;17892:6;17945:2;17933:9;17924:7;17920:23;17916:32;17913:52;;;17961:1;17958;17951:12;17913:52;17993:9;17987:16;18012:31;18037:5;18012:31;:::i;18078:980::-;18340:4;18388:3;18377:9;18373:19;18419:6;18408:9;18401:25;18445:2;18483:6;18478:2;18467:9;18463:18;18456:34;18526:3;18521:2;18510:9;18506:18;18499:31;18550:6;18585;18579:13;18616:6;18608;18601:22;18654:3;18643:9;18639:19;18632:26;;18693:2;18685:6;18681:15;18667:29;;18714:1;18724:195;18738:6;18735:1;18732:13;18724:195;;;18803:13;;-1:-1:-1;;;;;18799:39:1;18787:52;;18894:15;;;;18859:12;;;;18835:1;18753:9;18724:195;;;-1:-1:-1;;;;;;;18975:32:1;;;;18970:2;18955:18;;18948:60;-1:-1:-1;;;19039:3:1;19024:19;19017:35;18936:3;18078:980;-1:-1:-1;;;18078:980:1:o;19675:306::-;19763:6;19771;19779;19832:2;19820:9;19811:7;19807:23;19803:32;19800:52;;;19848:1;19845;19838:12;19800:52;19877:9;19871:16;19861:26;;19927:2;19916:9;19912:18;19906:25;19896:35;;19971:2;19960:9;19956:18;19950:25;19940:35;;19675:306;;;;;:::o

Swarm Source

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