ETH Price: $3,389.44 (-1.52%)
Gas: 2 Gwei

Token

PumpETH (PumpETH)
 

Overview

Max Total Supply

50,000,000,000 PumpETH

Holders

399

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,652,000 PumpETH

Value
$0.00
0xfbf84849894f848fca51f61a72bc1571eaed6731
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:
PumpETH

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

PumpETH

1) 10% distribution in Ethereum
2) 2% swapped and added to the liquidity pool
                                                                                   
    _/_/_/                                        _/_/_/_/  _/_/_/_/_/  _/    _/   
   _/    _/  _/    _/  _/_/_/  _/_/    _/_/_/    _/            _/      _/    _/    
  _/_/_/    _/    _/  _/    _/    _/  _/    _/  _/_/_/        _/      _/_/_/_/     
 _/        _/    _/  _/    _/    _/  _/    _/  _/            _/      _/    _/      
_/          _/_/_/  _/    _/    _/  _/_/_/    _/_/_/_/      _/      _/    _/       
                                   _/                                              
                                  _/                                               

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private liquidating;

    PumpETHDividendTracker public dividendTracker;
    
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;
    address public liquidityWallet;

    uint256 public MAX_SELL_TRANSACTION_AMOUNT = 250000000 * (10**18); // 250 Million (0.5%)

    uint256 public ETH_REWARDS_FEE = 10;
    uint256 public LIQUIDITY_FEE = 2;
    uint256 public TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;

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

    // liquidate tokens for ETH when the contract reaches 100k tokens by default
    uint256 public liquidateTokensAtAmount = 50000 * (10**18); // 50 Thousand (0.0001%);

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

    function activateTrading() public onlyOwner {
        require(!tradingEnabled, "PumpETH: Trading is already enabled");
        tradingEnabled = true;
    }

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

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

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

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

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

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    
    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

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

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

    event Liquified(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SentDividends(
        uint256 tokensSwapped,
        uint256 amount
    );

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

    constructor() ERC20("PumpETH", "PumpETH") {
        assert(TOTAL_FEES == 12);

        dividendTracker = new PumpETHDividendTracker();
        liquidityWallet = owner();

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(deadAddress);

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

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

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

    receive() external payable {}
    
    function prepareForPresale() external onlyOwner {
        ETH_REWARDS_FEE = 0;
        LIQUIDITY_FEE = 0;
        TOTAL_FEES = 0;
    }
    
    function afterPresale() external onlyOwner {
        ETH_REWARDS_FEE = 10;
        LIQUIDITY_FEE = 2;
        TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
    }
    
  	function whitelistDxSale(address _presaleAddress, address _routerAddress) public onlyOwner {
        dividendTracker.excludeFromDividends(_presaleAddress);
        excludeFromFees(_presaleAddress, true);

        dividendTracker.excludeFromDividends(_routerAddress);
        excludeFromFees(_routerAddress, true);
  	}

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

        PumpETHDividendTracker newDividendTracker = PumpETHDividendTracker(payable(newAddress));

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

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));
        newDividendTracker.excludeFromDividends(address(deadAddress));

        emit UpdatedDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "PumpETH: The router already has that address");
        emit UpdatedUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool value) public onlyOwner {
        require(!_isExcludedFromFees[account], "PumpETH: Account is already excluded from fees");
        _isExcludedFromFees[account] = value;
    }
    
    function excludeFromDividends(address account) public onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }
    
    function setMaxSellTransactionAmount(uint256 amount) external onlyOwner {
        MAX_SELL_TRANSACTION_AMOUNT = amount * (10**18);   
    }
  	
  	function setEthRewardsFee(uint256 amount) external onlyOwner {
  	    require(amount >= 0 && amount <= 100, "PumpETH: Rewards fee must be between 0 (0%) and 100 (100%)");
  	    ETH_REWARDS_FEE = amount;
  	    TOTAL_FEES = LIQUIDITY_FEE + ETH_REWARDS_FEE;
  	}
  	
  	function setLiquidityFee(uint256 amount) external onlyOwner {
  	    require(amount >= 0 && amount <= 100, "PumpETH: Liquidity fee must be between 0 (0%) and 100 (100%)");
  	    LIQUIDITY_FEE = amount;
  	    TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
  	}

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function allowTransferBeforeTradingIsEnabled(address account) public onlyOwner {
        require(!canTransferBeforeTradingIsEnabled[account], "PumpETH: Account is already allowed to transfer before trading is enabled");
        canTransferBeforeTradingIsEnabled[account] = true;
    }
    
    function updateLiquidityWallet(address newLiquidityWallet) public onlyOwner {
        require(newLiquidityWallet != liquidityWallet, "PumpETH: This address is already the liquidity wallet");
        excludeFromFees(newLiquidityWallet, true);
        emit LiquidityWalletUpdated(newLiquidityWallet, liquidityWallet);
        liquidityWallet = newLiquidityWallet;
    }

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

    function updateLiquidationThreshold(uint256 newValue) external onlyOwner {
        require(newValue != liquidateTokensAtAmount, "PumpETH: Cannot update gasForProcessing to same value");
        emit LiquidationThresholdUpdated(newValue, liquidateTokensAtAmount);
        liquidateTokensAtAmount = newValue;
    }

    function updateGasForTransfer(uint256 gasForTransfer) external onlyOwner {
        dividendTracker.updateGasForTransfer(gasForTransfer);
    }

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

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

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

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

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

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

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

    function getAccountDividendsInfo(address account)
    external view returns (
        address,
        int256,
        int256,
        uint256,
        uint256,
        uint256,
        uint256,
        uint256) {
        return dividendTracker.getAccount(account);
    }

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

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

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

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

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

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

        bool tradingIsEnabled = tradingEnabled;

        // only whitelisted addresses can make transfers before the public presale is over.
        if (!tradingIsEnabled) {
            require(canTransferBeforeTradingIsEnabled[from], "PumpETH: This account cannot send tokens until trading is enabled");
        }

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

        if (!liquidating &&
            tradingIsEnabled &&
            automatedMarketMakerPairs[to] && // sells only by detecting transfer to automated market maker pair
            from != address(uniswapV2Router) && //router -> pair is removing liquidity which shouldn't have max
            !_isExcludedFromFees[to] //no max tx-amount and wallet token amount for those excluded from fees
        ) {
            require(amount <= MAX_SELL_TRANSACTION_AMOUNT, "Sell transfer amount exceeds the MAX_SELL_TRANSACTION_AMOUNT.");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= liquidateTokensAtAmount;

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

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

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

            liquidating = false;
        }

        bool takeFee = tradingIsEnabled && !liquidating;

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

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

        }

        super._transfer(from, to, amount);

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

        if (!liquidating) {
            uint256 gas = gasForProcessing;

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

            }
        }
    }

    function swapAndLiquify(uint256 tokens) private {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

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

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

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

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

        emit Liquified(half, newBalance, otherHalf);
    }

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

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

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

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

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

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForEth(tokens);
        uint256 dividends = address(this).balance;

        (bool success,) = address(dividendTracker).call{value: dividends}("");
        if (success) {
            emit SentDividends(tokens, dividends);
        }
    }
}

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

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

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

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

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

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

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

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

/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

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

    uint256 internal magnifiedDividendPerShare;

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

    // Need to make gas fee customizable to future-proof against Ethereum network upgrades.
    uint256 public gasForTransfer;

    uint256 public totalDividendsDistributed;

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

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

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

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

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

    /// @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);
            emit DividendWithdrawn(user, _withdrawableDividend);
            (bool success,) = user.call{value: _withdrawableDividend, gas: gasForTransfer}("");

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

            return _withdrawableDividend;
        }

        return 0;
    }

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

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

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


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

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

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

    /// @dev Internal function that mints tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _mint(address account, uint256 value) internal override {
        super._mint(account, value);

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

    /// @dev Internal function that burns an amount of the token of a given account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account whose tokens will be burnt.
    /// @param value The amount that will be burnt.
    function _burn(address account, uint256 value) internal override {
        super._burn(account, value);

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

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

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

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

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public constant MIN_TOKEN_BALANCE_FOR_DIVIDENDS = 200000 * (10**18); // Must hold 200,000+ tokens.

    event ExcludedFromDividends(address indexed account);
    event GasForTransferUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

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

    constructor() DividendPayingToken("PumpETH_Dividend_Tracker", "PumpETH_Dividend_Tracker") {
        claimWait = 43200; // 12 hours
    }

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

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

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

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

        emit ExcludedFromDividends(account);
    }

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

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

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

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

    function getAccount(address _account)
    public view returns (
        address account,
        int256 index,
        int256 iterationsUntilProcessed,
        uint256 withdrawableDividends,
        uint256 totalDividends,
        uint256 lastClaimTime,
        uint256 nextClaimTime,
        uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

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

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

        lastClaimTime = lastClaimTimes[account];
        nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0;
        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0;
    }

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

        address account = tokenHoldersMap.getKeyAtIndex(index);
        return getAccount(account);
    }

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

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

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

        processAccount(account, true);
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
        uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

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

        uint256 _lastProcessedIndex = lastProcessedIndex;

        uint256 gasUsed = 0;
        uint256 gasLeft = gasleft();

        uint256 iterations = 0;
        uint256 claims = 0;

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

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

            address account = tokenHoldersMap.keys[_lastProcessedIndex];

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

            iterations++;

            uint256 newGasLeft = gasleft();

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

            gasLeft = newGasLeft;
        }

        lastProcessedIndex = _lastProcessedIndex;

        return (iterations, claims, lastProcessedIndex);
    }

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

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

        return false;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"LiquidationThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"Liquified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SentDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdatedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdatedUniswapV2Router","type":"event"},{"inputs":[],"name":"ETH_REWARDS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_TRANSACTION_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FEES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"afterPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"allowTransferBeforeTradingIsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canTransferBeforeTradingIsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract PumpETHDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGasForTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidateTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareForPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setEthRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gasForTransfer","type":"uint256"}],"name":"updateGasForTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateLiquidationThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLiquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleAddress","type":"address"},{"internalType":"address","name":"_routerAddress","type":"address"}],"name":"whitelistDxSale","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"}]

60a0604052600880546001600160a01b03191661dead1790556acecb8f27f4200f3a000000600a908155600b8190556002600c819055620000409162000ad1565b600d55620249f0600e55690a968163f0a57b400000600f553480156200006557600080fd5b506040805180820182526007808252660a0eadae08aa8960cb1b602080840182815285518087019096529285528401528151919291620000a891600391620009f4565b508051620000be906004906020840190620009f4565b5050506000620000d36200061060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d54600c146200014257634e487b7160e01b600052600160045260246000fd5b604051620001509062000a83565b604051809103906000f0801580156200016d573d6000803e3d6000fd5b50600780546001600160a01b03199081166001600160a01b0393841617909155600554600980549190931691161790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a0155916004808301926020929190829003018186803b158015620001ee57600080fd5b505afa15801562000203573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000229919062000aa8565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027257600080fd5b505afa15801562000287573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ad919062000aa8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002f657600080fd5b505af11580156200030b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000331919062000aa8565b600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b03191660805290506200036d81600162000614565b60075460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003b457600080fd5b505af1158015620003c9573d6000803e3d6000fd5b505060075460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060075460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200047457600080fd5b505af115801562000489573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db09050620004b36005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004f557600080fd5b505af11580156200050a573d6000803e3d6000fd5b505060075460085460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156200055857600080fd5b505af11580156200056d573d6000803e3d6000fd5b50505050620005843060016200078560201b60201c565b6009546200059d906001600160a01b0316600162000785565b600160126000620005b66005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905562000608620005f56005546001600160a01b031690565b6ba18f07d736b90be5500000006200088e565b505062000b33565b3390565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620006b95760405162461bcd60e51b815260206004820152604160248201527f50756d704554483a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155620007495760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200072f57600080fd5b505af115801562000744573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620007e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006b0565b6001600160a01b03821660009081526011602052604090205460ff1615620008635760405162461bcd60e51b815260206004820152602e60248201527f50756d704554483a204163636f756e7420697320616c7265616479206578636c60448201526d756465642066726f6d206665657360901b6064820152608401620006b0565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6001600160a01b038216620008e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006b0565b62000902816002546200098a60201b620020c01790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000935918390620020c06200098a821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008062000999838562000ad1565b905083811015620009ed5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620006b0565b9392505050565b82805462000a029062000af6565b90600052602060002090601f01602090048101928262000a26576000855562000a71565b82601f1062000a4157805160ff191683800117855562000a71565b8280016001018555821562000a71579182015b8281111562000a7157825182559160200191906001019062000a54565b5062000a7f92915062000a91565b5090565b6123668062003fca83390190565b5b8082111562000a7f576000815560010162000a92565b60006020828403121562000aba578081fd5b81516001600160a01b0381168114620009ed578182fd5b6000821982111562000af157634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000b0b57607f821691505b6020821081141562000b2d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61347162000b59600039600081816105c801526119ba01526134716000f3fe6080604052600436106103855760003560e01c80637e0e155c116101d1578063a9059cbb11610102578063dd62ed3e116100a0578063e98030c71161006f578063e98030c714610a9c578063f27fd25414610abc578063f2fde38b14610adc578063fd5db2af14610afc57600080fd5b8063dd62ed3e14610a0c578063de87e0a514610a52578063e37ba8f914610a67578063e7841ec014610a8757600080fd5b8063c0246668116100dc578063c024666814610996578063c816e4b6146109b6578063d3b5be1a146109cc578063d4698016146109ec57600080fd5b8063a9059cbb146108e1578063ad56c13c14610901578063b62496f51461096657600080fd5b806395d89b411161016f5780639d55d16f116101495780639d55d16f1461086c578063a26579ad1461088c578063a457c2d7146108a1578063a8b9d240146108c157600080fd5b806395d89b41146108215780639a7a23d6146108365780639c1b8af51461085657600080fd5b806388bdd9be116101ab57806388bdd9be146107b8578063899e8689146107d85780638da5cb5b146107ed57806392ca1e8d1461080b57600080fd5b80637e0e155c146107485780638649847c14610778578063871c128d1461079857600080fd5b806331e79db0116102b65780634fbee193116102545780636843cd84116102235780636843cd84146106bd578063700bb191146106dd57806370a08231146106fd578063715018a61461073357600080fd5b80634fbee1931461063957806353ab431b1461067257806364b0f6531461068857806365b8dbc01461069d57600080fd5b806349bd5a5e1161029057806349bd5a5e146105b65780634ada218b146105ea5780634e71d92d146106045780634e83ff6f1461061957600080fd5b806331e79db014610556578063357bf15c14610576578063395093511461059657600080fd5b806323b872dd116103235780632c1f5216116102fd5780632c1f5216146104ef5780632d17f2691461050f57806330bb4cff14610525578063313ce5671461053a57600080fd5b806323b872dd1461049a57806327c8f835146104ba5780632a8407b4146104da57600080fd5b806316216e5f1161035f57806316216e5f146104035780631694505e1461042357806318160ddd1461045b578063229d50771461047a57600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630bd05b69146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610b12565b6040516103b39190613111565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461306d565b610ba4565b60405190151581526020016103b3565b3480156103f857600080fd5b50610401610bbb565b005b34801561040f57600080fd5b5061040161041e3660046130b4565b610c5c565b34801561042f57600080fd5b50600654610443906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561046757600080fd5b506002545b6040519081526020016103b3565b34801561048657600080fd5b506104016104953660046130b4565b610c9e565b3480156104a657600080fd5b506103dc6104b5366004612f97565b610d58565b3480156104c657600080fd5b50600854610443906001600160a01b031681565b3480156104e657600080fd5b5061046c610dc1565b3480156104fb57600080fd5b50600754610443906001600160a01b031681565b34801561051b57600080fd5b5061046c600b5481565b34801561053157600080fd5b5061046c610e43565b34801561054657600080fd5b50604051601281526020016103b3565b34801561056257600080fd5b50610401610571366004612f27565b610e88565b34801561058257600080fd5b506104016105913660046130b4565b610f15565b3480156105a257600080fd5b506103dc6105b136600461306d565b610fc9565b3480156105c257600080fd5b506104437f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f657600080fd5b506010546103dc9060ff1681565b34801561061057600080fd5b50610401610fff565b34801561062557600080fd5b50610401610634366004612f5f565b611086565b34801561064557600080fd5b506103dc610654366004612f27565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561067e57600080fd5b5061046c600c5481565b34801561069457600080fd5b5061046c611188565b3480156106a957600080fd5b506104016106b8366004612f27565b6111cd565b3480156106c957600080fd5b5061046c6106d8366004612f27565b6112c7565b3480156106e957600080fd5b506104016106f83660046130b4565b611346565b34801561070957600080fd5b5061046c610718366004612f27565b6001600160a01b031660009081526020819052604090205490565b34801561073f57600080fd5b50610401611427565b34801561075457600080fd5b506103dc610763366004612f27565b60126020526000908152604090205460ff1681565b34801561078457600080fd5b50610401610793366004612f27565b61149b565b3480156107a457600080fd5b506104016107b33660046130b4565b61158a565b3480156107c457600080fd5b506104016107d3366004612f27565b611609565b3480156107e457600080fd5b50610401611939565b3480156107f957600080fd5b506005546001600160a01b0316610443565b34801561081757600080fd5b5061046c600d5481565b34801561082d57600080fd5b506103a661197f565b34801561084257600080fd5b50610401610851366004612fd7565b61198e565b34801561086257600080fd5b5061046c600e5481565b34801561087857600080fd5b506104016108873660046130b4565b611a7d565b34801561089857600080fd5b5061046c611ad8565b3480156108ad57600080fd5b506103dc6108bc36600461306d565b611b1d565b3480156108cd57600080fd5b5061046c6108dc366004612f27565b611b6c565b3480156108ed57600080fd5b506103dc6108fc36600461306d565b611b9f565b34801561090d57600080fd5b5061092161091c366004612f27565b611bac565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103b3565b34801561097257600080fd5b506103dc610981366004612f27565b60136020526000908152604090205460ff1681565b3480156109a257600080fd5b506104016109b1366004612fd7565b611c56565b3480156109c257600080fd5b5061046c600f5481565b3480156109d857600080fd5b506104016109e73660046130b4565b611d2b565b3480156109f857600080fd5b50600954610443906001600160a01b031681565b348015610a1857600080fd5b5061046c610a27366004612f5f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a5e57600080fd5b50610401611daa565b348015610a7357600080fd5b50610401610a82366004612f27565b611de5565b348015610a9357600080fd5b5061046c611ef3565b348015610aa857600080fd5b50610401610ab73660046130b4565b611f38565b348015610ac857600080fd5b50610921610ad73660046130b4565b611f93565b348015610ae857600080fd5b50610401610af7366004612f27565b611fd5565b348015610b0857600080fd5b5061046c600a5481565b606060038054610b2190613354565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4d90613354565b8015610b9a5780601f10610b6f57610100808354040283529160200191610b9a565b820191906000526020600020905b815481529060010190602001808311610b7d57829003601f168201915b5050505050905090565b6000610bb1338484612126565b5060015b92915050565b6005546001600160a01b03163314610bee5760405162461bcd60e51b8152600401610be5906131fc565b60405180910390fd5b60105460ff1615610c4d5760405162461bcd60e51b815260206004820152602360248201527f50756d704554483a2054726164696e6720697320616c726561647920656e61626044820152621b195960ea1b6064820152608401610be5565b6010805460ff19166001179055565b6005546001600160a01b03163314610c865760405162461bcd60e51b8152600401610be5906131fc565b610c9881670de0b6b3a764000061331e565b600a5550565b6005546001600160a01b03163314610cc85760405162461bcd60e51b8152600401610be5906131fc565b6064811115610d3f5760405162461bcd60e51b815260206004820152603a60248201527f50756d704554483a205265776172647320666565206d7573742062652062657460448201527f7765656e2030202830252920616e6420313030202831303025290000000000006064820152608401610be5565b600b819055600c54610d529082906132e6565b600d5550565b6000610d6584848461224b565b610db78433610db2856040518060600160405280602881526020016133ef602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906127db565b612126565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e91906130cc565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610e0657600080fd5b6005546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610be5906131fc565b60075460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610efa57600080fd5b505af1158015610f0e573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610f3f5760405162461bcd60e51b8152600401610be5906131fc565b6064811115610fb65760405162461bcd60e51b815260206004820152603c60248201527f50756d704554483a204c697175696469747920666565206d757374206265206260448201527f65747765656e2030202830252920616e642031303020283130302529000000006064820152608401610be5565b600c819055600b54610d529082906132e6565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bb1918590610db290866120c0565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b15801561104b57600080fd5b505af115801561105f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110839190613098565b50565b6005546001600160a01b031633146110b05760405162461bcd60e51b8152600401610be5906131fc565b60075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156110f757600080fd5b505af115801561110b573d6000803e3d6000fd5b5050505061111a826001611c56565b60075460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b15801561116157600080fd5b505af1158015611175573d6000803e3d6000fd5b50505050611184816001611c56565b5050565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610e0657600080fd5b6005546001600160a01b031633146111f75760405162461bcd60e51b8152600401610be5906131fc565b6006546001600160a01b038281169116141561126a5760405162461bcd60e51b815260206004820152602c60248201527f50756d704554483a2054686520726f7574657220616c7265616479206861732060448201526b74686174206164647265737360a01b6064820152608401610be5565b6006546040516001600160a01b03918216918316907fcd2acde3ae4de754da8074077404027fae40be67d89638ee1ceca2427883da7d90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561130e57600080fd5b505afa158015611322573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb591906130cc565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561139457600080fd5b505af11580156113a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cc91906130e4565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b031633146114515760405162461bcd60e51b8152600401610be5906131fc565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146114c55760405162461bcd60e51b8152600401610be5906131fc565b6001600160a01b03811660009081526012602052604090205460ff16156115665760405162461bcd60e51b815260206004820152604960248201527f50756d704554483a204163636f756e7420697320616c726561647920616c6c6f60448201527f77656420746f207472616e73666572206265666f72652074726164696e6720696064820152681cc8195b98589b195960ba1b608482015260a401610be5565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6005546001600160a01b031633146115b45760405162461bcd60e51b8152600401610be5906131fc565b600e548114156115d65760405162461bcd60e51b8152600401610be5906131a7565b600e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600e55565b6005546001600160a01b031633146116335760405162461bcd60e51b8152600401610be5906131fc565b6007546001600160a01b03828116911614156116b05760405162461bcd60e51b815260206004820152603660248201527f50756d704554483a20546865206469766964656e6420747261636b657220616c6044820152757265616479206861732074686174206164647265737360501b6064820152608401610be5565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156116f857600080fd5b505afa15801561170c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117309190612f43565b6001600160a01b0316146117c25760405162461bcd60e51b815260206004820152604d60248201527f50756d704554483a20546865206e6577206469766964656e6420747261636b6560448201527f72206d757374206265206f776e6564206279207468652050756d70455448207460648201526c1bdad95b8818dbdb9d1c9858dd609a1b608482015260a401610be5565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b15801561180457600080fd5b505af1158015611818573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561186357600080fd5b505af1158015611877573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156118c257600080fd5b505af11580156118d6573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f1ae8fd4f008d9dd6f83c1182b3f30d87aed4ac15a15833ad625bbb740463e3c990600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031633146119635760405162461bcd60e51b8152600401610be5906131fc565b600a600b8190556002600c81905561197a916132e6565b600d55565b606060048054610b2190613354565b6005546001600160a01b031633146119b85760405162461bcd60e51b8152600401610be5906131fc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415611a735760405162461bcd60e51b815260206004820152604a60248201527f50756d704554483a2054686520556e697377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a401610be5565b6111848282612815565b6005546001600160a01b03163314611aa75760405162461bcd60e51b8152600401610be5906131fc565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f90602401610ee0565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610e0657600080fd5b6000610bb13384610db285604051806060016040528060258152602001613417602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906127db565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016112f6565b6000610bb133848461224b565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b158015611c0357600080fd5b505afa158015611c17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3b9190613004565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611c805760405162461bcd60e51b8152600401610be5906131fc565b6001600160a01b03821660009081526011602052604090205460ff1615611d005760405162461bcd60e51b815260206004820152602e60248201527f50756d704554483a204163636f756e7420697320616c7265616479206578636c60448201526d756465642066726f6d206665657360901b6064820152608401610be5565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314611d555760405162461bcd60e51b8152600401610be5906131fc565b600f54811415611d775760405162461bcd60e51b8152600401610be5906131a7565b600f5460405182907fcdadd717dc9ee3550a289071d1af75e229726888d51e3a31c9e3dfc693d4852b90600090a3600f55565b6005546001600160a01b03163314611dd45760405162461bcd60e51b8152600401610be5906131fc565b6000600b819055600c819055600d55565b6005546001600160a01b03163314611e0f5760405162461bcd60e51b8152600401610be5906131fc565b6009546001600160a01b0382811691161415611e8b5760405162461bcd60e51b815260206004820152603560248201527f50756d704554483a2054686973206164647265737320697320616c7265616479604482015274081d1a19481b1a5c5d5a591a5d1e481dd85b1b195d605a1b6064820152608401610be5565b611e96816001611c56565b6009546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610e0657600080fd5b6005546001600160a01b03163314611f625760405162461bcd60e51b8152600401610be5906131fc565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610ee0565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611bea565b6005546001600160a01b03163314611fff5760405162461bcd60e51b8152600401610be5906131fc565b6001600160a01b0381166120645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be5565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806120cd83856132e6565b90508381101561211f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610be5565b9392505050565b6001600160a01b0383166121885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610be5565b6001600160a01b0382166121e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610be5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166122715760405162461bcd60e51b8152600401610be590613231565b6001600160a01b0382166122975760405162461bcd60e51b8152600401610be590613164565b60105460ff168061233a576001600160a01b03841660009081526012602052604090205460ff1661233a5760405162461bcd60e51b815260206004820152604160248201527f50756d704554483a2054686973206163636f756e742063616e6e6f742073656e60448201527f6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c656064820152601960fa1b608482015260a401610be5565b816123515761234b8484600061297d565b50505050565b600654600160a01b900460ff161580156123685750805b801561238c57506001600160a01b03831660009081526013602052604090205460ff165b80156123a657506006546001600160a01b03858116911614155b80156123cb57506001600160a01b03831660009081526011602052604090205460ff16155b1561244857600a548211156124485760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610be5565b30600090815260208190526040902054600f548110158280156124685750805b801561247e5750600654600160a01b900460ff16155b80156124a357506001600160a01b03861660009081526013602052604090205460ff16155b80156124b857506001600160a01b0386163014155b80156124cd57506001600160a01b0385163014155b15612537576006805460ff60a01b1916600160a01b179055600d54600c54600091612503916124fd908690612a86565b90612b05565b905061250e81612b47565b3060009081526020819052604090205461252781612bce565b50506006805460ff60a01b191690555b60008380156125505750600654600160a01b900460ff16155b6001600160a01b03881660009081526011602052604090205490915060ff168061259257506001600160a01b03861660009081526011602052604090205460ff165b1561259b575060005b80156125cc57600d546000906125bc906125b6886064612b05565b90612a86565b90506125c88682612c76565b9550505b6125d787878761297d565b6007546001600160a01b031663e30443bc88612608816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561264e57600080fd5b505af192505050801561265f575060015b506007546001600160a01b031663e30443bc87612691816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126d757600080fd5b505af19250505080156126e8575060015b50600654600160a01b900460ff166127d257600e546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561274657600080fd5b505af1925050508015612776575060408051601f3d908101601f19168201909252612773918101906130e4565b60015b61277f576127d0565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156127ff5760405162461bcd60e51b8152600401610be59190613111565b50600061280c848661333d565b95945050505050565b6001600160a01b03821660009081526013602052604090205460ff16151581151514156128b45760405162461bcd60e51b815260206004820152604160248201527f50756d704554483a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a401610be5565b6001600160a01b0382166000908152601360205260409020805460ff191682158015919091179091556129415760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561292857600080fd5b505af115801561293c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129a35760405162461bcd60e51b8152600401610be590613231565b6001600160a01b0382166129c95760405162461bcd60e51b8152600401610be590613164565b612a06816040518060600160405280602681526020016133c9602691396001600160a01b03861660009081526020819052604090205491906127db565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612a3590826120c0565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161223e565b600082612a9557506000610bb5565b6000612aa1838561331e565b905082612aae85836132fe565b1461211f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610be5565b600061211f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cb8565b6000612b54826002612b05565b90506000612b628383612c76565b905047612b6e83612ce6565b6000612b7a4783612c76565b9050612b868382612e6b565b60408051858152602081018390529081018490527ffb82c2300f807cc60e7abf909b045a028ef3b1807785a6b675eb0fa21e461fa19060600160405180910390a15050505050565b612bd781612ce6565b60075460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114612c28576040519150601f19603f3d011682016040523d82523d6000602084013e612c2d565b606091505b505090508015612c715760408051848152602081018490527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca910160405180910390a15b505050565b600061211f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506127db565b60008183612cd95760405162461bcd60e51b8152600401610be59190613111565b50600061280c84866132fe565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d2957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612d7d57600080fd5b505afa158015612d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db59190612f43565b81600181518110612dd657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612dfc9130911684612126565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612e35908590600090869030904290600401613276565b600060405180830381600087803b158015612e4f57600080fd5b505af1158015612e63573d6000803e3d6000fd5b505050505050565b600654612e839030906001600160a01b031684612126565b60065460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015612eee57600080fd5b505af1158015612f02573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f0e91906130e4565b600060208284031215612f38578081fd5b813561211f816133a5565b600060208284031215612f54578081fd5b815161211f816133a5565b60008060408385031215612f71578081fd5b8235612f7c816133a5565b91506020830135612f8c816133a5565b809150509250929050565b600080600060608486031215612fab578081fd5b8335612fb6816133a5565b92506020840135612fc6816133a5565b929592945050506040919091013590565b60008060408385031215612fe9578182fd5b8235612ff4816133a5565b91506020830135612f8c816133ba565b600080600080600080600080610100898b031215613020578384fd5b885161302b816133a5565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b6000806040838503121561307f578182fd5b823561308a816133a5565b946020939093013593505050565b6000602082840312156130a9578081fd5b815161211f816133ba565b6000602082840312156130c5578081fd5b5035919050565b6000602082840312156130dd578081fd5b5051919050565b6000806000606084860312156130f8578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561313d57858101830151858201604001528201613121565b8181111561314e5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526035908201527f50756d704554483a2043616e6e6f742075706461746520676173466f7250726f60408201527463657373696e6720746f2073616d652076616c756560581b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156132c55784516001600160a01b0316835293830193918301916001016132a0565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156132f9576132f961338f565b500190565b60008261331957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156133385761333861338f565b500290565b60008282101561334f5761334f61338f565b500390565b600181811c9082168061336857607f821691505b6020821081141561338957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461108357600080fd5b801515811461108357600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f514bac8d35fa6ec651c6dc599ba93fba610ba9a461637740b07ef7c635c22264736f6c6343000804003360806040523480156200001157600080fd5b5060408051808201825260188082527f50756d704554485f4469766964656e645f547261636b65720000000000000000602080840182815285518087019096529285528401528151919291839183916200006e91600391620000e0565b50805162000084906004906020840190620000e0565b5050610bb86008555050600a80546001600160a01b0319163390811790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061a8c0601255620001c3565b828054620000ee9062000186565b90600052602060002090601f0160209004810192826200011257600085556200015d565b82601f106200012d57805160ff19168380011785556200015d565b828001600101855582156200015d579182015b828111156200015d57825182559160200191906001019062000140565b506200016b9291506200016f565b5090565b5b808211156200016b576000815560010162000170565b600181811c908216806200019b57607f821691505b60208210811415620001bd57634e487b7160e01b600052602260045260246000fd5b50919050565b61219380620001d36000396000f3fe60806040526004361061021e5760003560e01c806385a6b3ae11610123578063bc4c4b37116100ab578063e98030c71161006f578063e98030c714610695578063f2fde38b146106b5578063f39b5020146106d5578063fbcbc0f1146106eb578063ffb2c4791461070b57600080fd5b8063bc4c4b37146105dc578063c38f9cad146105fc578063dd62ed3e1461061a578063e30443bc14610660578063e7841ec01461068057600080fd5b80639d55d16f116100f25780639d55d16f14610526578063a457c2d714610546578063a8b9d24014610566578063a9059cbb14610586578063aafd847a146105a657600080fd5b806385a6b3ae146104b35780638da5cb5b146104c957806391b89fba146104f157806395d89b411461051157600080fd5b8063313ce567116101a65780635183d6fd116101755780635183d6fd146103d85780636a4740021461043d5780636f2789ec1461045257806370a0823114610468578063715018a61461049e57600080fd5b8063313ce5671461034c57806331e79db01461036857806339509351146103885780634e7b827f146103a857600080fd5b806318160ddd116101ed57806318160ddd146102b4578063226cfa3d146102c957806323b872dd146102f657806327ce0147146103165780633009a6091461033657600080fd5b806303c833021461023257806306fdde031461023a578063095ea7b31461026557806309bbedde1461029557600080fd5b3661022d5761022b610746565b005b600080fd5b61022b610746565b34801561024657600080fd5b5061024f6107d9565b60405161025c9190611ef4565b60405180910390f35b34801561027157600080fd5b50610285610280366004611e2c565b61086b565b604051901515815260200161025c565b3480156102a157600080fd5b50600b545b60405190815260200161025c565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102a66102e4366004611db8565b60116020526000908152604090205481565b34801561030257600080fd5b50610285610311366004611e84565b610882565b34801561032257600080fd5b506102a6610331366004611db8565b6108eb565b34801561034257600080fd5b506102a6600f5481565b34801561035857600080fd5b506040516012815260200161025c565b34801561037457600080fd5b5061022b610383366004611db8565b610947565b34801561039457600080fd5b506102856103a3366004611e2c565b610a77565b3480156103b457600080fd5b506102856103c3366004611db8565b60106020526000908152604090205460ff1681565b3480156103e457600080fd5b506103f86103f3366004611edc565b610aad565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161025c565b34801561044957600080fd5b5061022b610c1f565b34801561045e57600080fd5b506102a660125481565b34801561047457600080fd5b506102a6610483366004611db8565b6001600160a01b031660009081526020819052604090205490565b3480156104aa57600080fd5b5061022b610cc7565b3480156104bf57600080fd5b506102a660095481565b3480156104d557600080fd5b50600a546040516001600160a01b03909116815260200161025c565b3480156104fd57600080fd5b506102a661050c366004611db8565b610d3b565b34801561051d57600080fd5b5061024f610d46565b34801561053257600080fd5b5061022b610541366004611edc565b610d55565b34801561055257600080fd5b50610285610561366004611e2c565b610e38565b34801561057257600080fd5b506102a6610581366004611db8565b610e87565b34801561059257600080fd5b506102856105a1366004611e2c565b610eb3565b3480156105b257600080fd5b506102a66105c1366004611db8565b6001600160a01b031660009081526007602052604090205490565b3480156105e857600080fd5b506102856105f7366004611df0565b610ec0565b34801561060857600080fd5b506102a6692a5a058fc295ed00000081565b34801561062657600080fd5b506102a6610635366004611e57565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561066c57600080fd5b5061022b61067b366004611e2c565b610f6e565b34801561068c57600080fd5b50600f546102a6565b3480156106a157600080fd5b5061022b6106b0366004611edc565b6110e4565b3480156106c157600080fd5b5061022b6106d0366004611db8565b611256565b3480156106e157600080fd5b506102a660085481565b3480156106f757600080fd5b506103f8610706366004611db8565b611341565b34801561071757600080fd5b5061072b610726366004611edc565b6114b9565b6040805193845260208401929092529082015260600161025c565b600061075160025490565b1161075b57600080fd5b34156107d75761078e61076d60025490565b61077b34600160801b6115e2565b6107859190611fd5565b60055490611668565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a26009546107d39034611668565b6009555b565b6060600380546107e89061206a565b80601f01602080910402602001604051908101604052809291908181526020018280546108149061206a565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b60006108783384846116c7565b5060015b92915050565b600061088f8484846117eb565b6108e184336108dc85604051806060016040528060288152602001612111602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061184a565b6116c7565b5060019392505050565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b9261093d92610938926109329161092d91906115e2565b611884565b90611894565b6118d2565b61087c9190611fd5565b600a546001600160a01b0316331461097a5760405162461bcd60e51b815260040161097190611f47565b60405180910390fd5b6001600160a01b03811660009081526010602052604090205460ff16156109a057600080fd5b6001600160a01b0381166000908152601060205260408120805460ff191660011790556109ce9082906118e5565b60405163131836e760e21b8152600b60048201526001600160a01b038216602482015273e116428a1a432c890f4acafb4e563f5d5337f6bf90634c60db9c9060440160006040518083038186803b158015610a2857600080fd5b505af4158015610a3c573d6000803e3d6000fd5b50506040516001600160a01b03841692507fbc358c1a6bbec2cf1d21c2fb5a564b55d7828e32fb5da64adf3c5479264650109150600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108789185906108dc9086611668565b600080600080600080600080600b73e116428a1a432c890f4acafb4e563f5d5337f6bf63deb3d89690916040518263ffffffff1660e01b8152600401610af591815260200190565b60206040518083038186803b158015610b0d57600080fd5b505af4158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b459190611ec4565b8910610b6a575060009650600019955085945086935083925082915081905080610c14565b6040516368d54f3f60e11b8152600b6004820152602481018a905260009073e116428a1a432c890f4acafb4e563f5d5337f6bf9063d1aa9e7e9060440160206040518083038186803b158015610bbf57600080fd5b505af4158015610bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf79190611dd4565b9050610c0281611341565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606b60248201527f50756d704554485f4469766964656e645f547261636b65723a2077697468647260448201527f61774469766964656e642064697361626c65642e20557365207468652027636c60648201527f61696d272066756e6374696f6e206f6e20746865206d61696e2050756d70455460848201526a241031b7b73a3930b1ba1760a91b60a482015260c401610971565b600a546001600160a01b03163314610cf15760405162461bcd60e51b815260040161097190611f47565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600061087c82610e87565b6060600480546107e89061206a565b600a546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161097190611f47565b600854811415610e055760405162461bcd60e51b8152602060048201526044602482018190527f50756d704554485f4469766964656e645f547261636b65723a2043616e6e6f74908201527f2075706461746520676173466f725472616e7366657220746f2073616d652076606482015263616c756560e01b608482015260a401610971565b60085460405182907f5e2963a3d7c88b344b101641f89a2f7da9734fc777ed11ad0097b2775a9e9d1790600090a3600855565b600061087833846108dc85604051806060016040528060258152602001612139602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061184a565b6001600160a01b03811660009081526007602052604081205461087c90610ead846108eb565b90611944565b60006108783384846117eb565b600a546000906001600160a01b03163314610eed5760405162461bcd60e51b815260040161097190611f47565b6000610ef884611986565b90508015610f64576001600160a01b038416600081815260116020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610f529085815260200190565b60405180910390a3600191505061087c565b5060009392505050565b600a546001600160a01b03163314610f985760405162461bcd60e51b815260040161097190611f47565b6001600160a01b03821660009081526010602052604090205460ff1615610fbd575050565b692a5a058fc295ed000000811061105657610fd882826118e5565b604051632f0ad01760e21b8152600b60048201526001600160a01b03831660248201526044810182905273e116428a1a432c890f4acafb4e563f5d5337f6bf9063bc2b405c9060640160006040518083038186803b15801561103957600080fd5b505af415801561104d573d6000803e3d6000fd5b505050506110d4565b6110618260006118e5565b60405163131836e760e21b8152600b60048201526001600160a01b038316602482015273e116428a1a432c890f4acafb4e563f5d5337f6bf90634c60db9c9060440160006040518083038186803b1580156110bb57600080fd5b505af41580156110cf573d6000803e3d6000fd5b505050505b6110df826001610ec0565b505050565b600a546001600160a01b0316331461110e5760405162461bcd60e51b815260040161097190611f47565b610e1081101580156111235750620151808111155b6111ab5760405162461bcd60e51b815260206004820152604d60248201527f50756d704554485f4469766964656e645f547261636b65723a20636c61696d5760448201527f616974206d757374206265207570646174656420746f206265747765656e203160648201526c20616e6420323420686f75727360981b608482015260a401610971565b6012548114156112235760405162461bcd60e51b815260206004820152603f60248201527f50756d704554485f4469766964656e645f547261636b65723a2043616e6e6f7460448201527f2075706461746520636c61696d5761697420746f2073616d652076616c7565006064820152608401610971565b60125460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601255565b600a546001600160a01b031633146112805760405162461bcd60e51b815260040161097190611f47565b6001600160a01b0381166112e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610971565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516317e142d160e01b8152600b60048201526001600160a01b0382166024820152819060009081908190819081908190819073e116428a1a432c890f4acafb4e563f5d5337f6bf906317e142d19060440160206040518083038186803b1580156113ac57600080fd5b505af41580156113c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e49190611ec4565b965060001995506000871261144657600f5487111561141257600f5461140b908890611ac9565b9550611446565b600f54600b5460009110611427576000611436565b600f54600b5461143691611944565b90506114428882611894565b9650505b61144f88610e87565b945061145a886108eb565b6001600160a01b038916600090815260116020526040902054909450925082611484576000611492565b601254611492908490611668565b91504282116114a25760006114ac565b6114ac8242611944565b9050919395975091939597565b600b5460009081908190806114d9575050600f54600092508291506115db565b600f546000805a90506000805b89841080156114f457508582105b156115ca5784611503816120a5565b600b549096508610905061151657600094505b6000600b600001868154811061153c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316808352601190915260409091205490915061156d90611b06565b156115905761157d816001610ec0565b15611590578161158c816120a5565b9250505b8261159a816120a5565b93505060005a9050808511156115c1576115be6115b78683611944565b8790611668565b95505b93506114e69050565b600f85905590975095509193505050505b9193909250565b6000826115f15750600061087c565b60006115fd8385611ff5565b90508261160a8583611fd5565b146116615760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610971565b9392505050565b6000806116758385611fbd565b9050838110156116615760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610971565b6001600160a01b0383166117295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610971565b6001600160a01b03821661178a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610971565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602e60248201527f50756d704554485f4469766964656e645f547261636b65723a204e6f2074726160448201526d1b9cd9995c9cc8185b1b1bddd95960921b6064820152608401610971565b6000818484111561186e5760405162461bcd60e51b81526004016109719190611ef4565b50600061187b8486612053565b95945050505050565b6000818181121561087c57600080fd5b6000806118a18385611f7c565b9050600083121580156118b45750838112155b806118c957506000831280156118c957508381125b61166157600080fd5b6000808212156118e157600080fd5b5090565b6001600160a01b038216600090815260208190526040902054808211156119245760006119128383611944565b905061191e8482611b2d565b50505050565b808210156110df5760006119388284611944565b905061191e8482611b91565b600061166183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061184a565b60008061199283610e87565b90508015611ac0576001600160a01b0383166000908152600760205260409020546119bd9082611668565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d90611a0c9084815260200190565b60405180910390a26008546040516000916001600160a01b03861691849084818181858888f193505050503d8060008114611a63576040519150601f19603f3d011682016040523d82523d6000602084013e611a68565b606091505b5050905080611ab9576001600160a01b038416600090815260076020526040902054611a949083611944565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b600080611ad68385612014565b905060008312158015611ae95750838113155b806118c957506000831280156118c9575083811361166157600080fd5b600042821115611b1857506000919050565b601254611b254284611944565b101592915050565b611b378282611bd5565b611b71611b5261092d836005546115e290919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611ac9565b6001600160a01b0390921660009081526006602052604090209190915550565b611b9b8282611cb4565b611b71611bb661092d836005546115e290919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611894565b6001600160a01b038216611c2b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610971565b600254611c389082611668565b6002556001600160a01b038216600090815260208190526040902054611c5e9082611668565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611d145760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610971565b611d51816040518060600160405280602281526020016120ef602291396001600160a01b038516600090815260208190526040902054919061184a565b6001600160a01b038316600090815260208190526040902055600254611d779082611944565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611ca8565b600060208284031215611dc9578081fd5b8135611661816120d6565b600060208284031215611de5578081fd5b8151611661816120d6565b60008060408385031215611e02578081fd5b8235611e0d816120d6565b915060208301358015158114611e21578182fd5b809150509250929050565b60008060408385031215611e3e578182fd5b8235611e49816120d6565b946020939093013593505050565b60008060408385031215611e69578182fd5b8235611e74816120d6565b91506020830135611e21816120d6565b600080600060608486031215611e98578081fd5b8335611ea3816120d6565b92506020840135611eb3816120d6565b929592945050506040919091013590565b600060208284031215611ed5578081fd5b5051919050565b600060208284031215611eed578081fd5b5035919050565b6000602080835283518082850152825b81811015611f2057858101830151858201604001528201611f04565b81811115611f315783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b0384900385131615611f9e57611f9e6120c0565b600160ff1b8390038412811615611fb757611fb76120c0565b50500190565b60008219821115611fd057611fd06120c0565b500190565b600082611ff057634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561200f5761200f6120c0565b500290565b60008083128015600160ff1b850184121615612032576120326120c0565b6001600160ff1b038401831381161561204d5761204d6120c0565b50500390565b600082821015612065576120656120c0565b500390565b600181811c9082168061207e57607f821691505b6020821081141561209f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120b9576120b96120c0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146120eb57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122072077ba48f6ff1281382c7a764b5cd1075e1407e8b2af575685308c704fe33d764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103855760003560e01c80637e0e155c116101d1578063a9059cbb11610102578063dd62ed3e116100a0578063e98030c71161006f578063e98030c714610a9c578063f27fd25414610abc578063f2fde38b14610adc578063fd5db2af14610afc57600080fd5b8063dd62ed3e14610a0c578063de87e0a514610a52578063e37ba8f914610a67578063e7841ec014610a8757600080fd5b8063c0246668116100dc578063c024666814610996578063c816e4b6146109b6578063d3b5be1a146109cc578063d4698016146109ec57600080fd5b8063a9059cbb146108e1578063ad56c13c14610901578063b62496f51461096657600080fd5b806395d89b411161016f5780639d55d16f116101495780639d55d16f1461086c578063a26579ad1461088c578063a457c2d7146108a1578063a8b9d240146108c157600080fd5b806395d89b41146108215780639a7a23d6146108365780639c1b8af51461085657600080fd5b806388bdd9be116101ab57806388bdd9be146107b8578063899e8689146107d85780638da5cb5b146107ed57806392ca1e8d1461080b57600080fd5b80637e0e155c146107485780638649847c14610778578063871c128d1461079857600080fd5b806331e79db0116102b65780634fbee193116102545780636843cd84116102235780636843cd84146106bd578063700bb191146106dd57806370a08231146106fd578063715018a61461073357600080fd5b80634fbee1931461063957806353ab431b1461067257806364b0f6531461068857806365b8dbc01461069d57600080fd5b806349bd5a5e1161029057806349bd5a5e146105b65780634ada218b146105ea5780634e71d92d146106045780634e83ff6f1461061957600080fd5b806331e79db014610556578063357bf15c14610576578063395093511461059657600080fd5b806323b872dd116103235780632c1f5216116102fd5780632c1f5216146104ef5780632d17f2691461050f57806330bb4cff14610525578063313ce5671461053a57600080fd5b806323b872dd1461049a57806327c8f835146104ba5780632a8407b4146104da57600080fd5b806316216e5f1161035f57806316216e5f146104035780631694505e1461042357806318160ddd1461045b578063229d50771461047a57600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630bd05b69146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610b12565b6040516103b39190613111565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461306d565b610ba4565b60405190151581526020016103b3565b3480156103f857600080fd5b50610401610bbb565b005b34801561040f57600080fd5b5061040161041e3660046130b4565b610c5c565b34801561042f57600080fd5b50600654610443906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561046757600080fd5b506002545b6040519081526020016103b3565b34801561048657600080fd5b506104016104953660046130b4565b610c9e565b3480156104a657600080fd5b506103dc6104b5366004612f97565b610d58565b3480156104c657600080fd5b50600854610443906001600160a01b031681565b3480156104e657600080fd5b5061046c610dc1565b3480156104fb57600080fd5b50600754610443906001600160a01b031681565b34801561051b57600080fd5b5061046c600b5481565b34801561053157600080fd5b5061046c610e43565b34801561054657600080fd5b50604051601281526020016103b3565b34801561056257600080fd5b50610401610571366004612f27565b610e88565b34801561058257600080fd5b506104016105913660046130b4565b610f15565b3480156105a257600080fd5b506103dc6105b136600461306d565b610fc9565b3480156105c257600080fd5b506104437f0000000000000000000000001a4154aa3fc63888a4181064e0a91f6e3382594d81565b3480156105f657600080fd5b506010546103dc9060ff1681565b34801561061057600080fd5b50610401610fff565b34801561062557600080fd5b50610401610634366004612f5f565b611086565b34801561064557600080fd5b506103dc610654366004612f27565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561067e57600080fd5b5061046c600c5481565b34801561069457600080fd5b5061046c611188565b3480156106a957600080fd5b506104016106b8366004612f27565b6111cd565b3480156106c957600080fd5b5061046c6106d8366004612f27565b6112c7565b3480156106e957600080fd5b506104016106f83660046130b4565b611346565b34801561070957600080fd5b5061046c610718366004612f27565b6001600160a01b031660009081526020819052604090205490565b34801561073f57600080fd5b50610401611427565b34801561075457600080fd5b506103dc610763366004612f27565b60126020526000908152604090205460ff1681565b34801561078457600080fd5b50610401610793366004612f27565b61149b565b3480156107a457600080fd5b506104016107b33660046130b4565b61158a565b3480156107c457600080fd5b506104016107d3366004612f27565b611609565b3480156107e457600080fd5b50610401611939565b3480156107f957600080fd5b506005546001600160a01b0316610443565b34801561081757600080fd5b5061046c600d5481565b34801561082d57600080fd5b506103a661197f565b34801561084257600080fd5b50610401610851366004612fd7565b61198e565b34801561086257600080fd5b5061046c600e5481565b34801561087857600080fd5b506104016108873660046130b4565b611a7d565b34801561089857600080fd5b5061046c611ad8565b3480156108ad57600080fd5b506103dc6108bc36600461306d565b611b1d565b3480156108cd57600080fd5b5061046c6108dc366004612f27565b611b6c565b3480156108ed57600080fd5b506103dc6108fc36600461306d565b611b9f565b34801561090d57600080fd5b5061092161091c366004612f27565b611bac565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103b3565b34801561097257600080fd5b506103dc610981366004612f27565b60136020526000908152604090205460ff1681565b3480156109a257600080fd5b506104016109b1366004612fd7565b611c56565b3480156109c257600080fd5b5061046c600f5481565b3480156109d857600080fd5b506104016109e73660046130b4565b611d2b565b3480156109f857600080fd5b50600954610443906001600160a01b031681565b348015610a1857600080fd5b5061046c610a27366004612f5f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a5e57600080fd5b50610401611daa565b348015610a7357600080fd5b50610401610a82366004612f27565b611de5565b348015610a9357600080fd5b5061046c611ef3565b348015610aa857600080fd5b50610401610ab73660046130b4565b611f38565b348015610ac857600080fd5b50610921610ad73660046130b4565b611f93565b348015610ae857600080fd5b50610401610af7366004612f27565b611fd5565b348015610b0857600080fd5b5061046c600a5481565b606060038054610b2190613354565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4d90613354565b8015610b9a5780601f10610b6f57610100808354040283529160200191610b9a565b820191906000526020600020905b815481529060010190602001808311610b7d57829003601f168201915b5050505050905090565b6000610bb1338484612126565b5060015b92915050565b6005546001600160a01b03163314610bee5760405162461bcd60e51b8152600401610be5906131fc565b60405180910390fd5b60105460ff1615610c4d5760405162461bcd60e51b815260206004820152602360248201527f50756d704554483a2054726164696e6720697320616c726561647920656e61626044820152621b195960ea1b6064820152608401610be5565b6010805460ff19166001179055565b6005546001600160a01b03163314610c865760405162461bcd60e51b8152600401610be5906131fc565b610c9881670de0b6b3a764000061331e565b600a5550565b6005546001600160a01b03163314610cc85760405162461bcd60e51b8152600401610be5906131fc565b6064811115610d3f5760405162461bcd60e51b815260206004820152603a60248201527f50756d704554483a205265776172647320666565206d7573742062652062657460448201527f7765656e2030202830252920616e6420313030202831303025290000000000006064820152608401610be5565b600b819055600c54610d529082906132e6565b600d5550565b6000610d6584848461224b565b610db78433610db2856040518060600160405280602881526020016133ef602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906127db565b612126565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e91906130cc565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610e0657600080fd5b6005546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610be5906131fc565b60075460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610efa57600080fd5b505af1158015610f0e573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610f3f5760405162461bcd60e51b8152600401610be5906131fc565b6064811115610fb65760405162461bcd60e51b815260206004820152603c60248201527f50756d704554483a204c697175696469747920666565206d757374206265206260448201527f65747765656e2030202830252920616e642031303020283130302529000000006064820152608401610be5565b600c819055600b54610d529082906132e6565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bb1918590610db290866120c0565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b15801561104b57600080fd5b505af115801561105f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110839190613098565b50565b6005546001600160a01b031633146110b05760405162461bcd60e51b8152600401610be5906131fc565b60075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156110f757600080fd5b505af115801561110b573d6000803e3d6000fd5b5050505061111a826001611c56565b60075460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b15801561116157600080fd5b505af1158015611175573d6000803e3d6000fd5b50505050611184816001611c56565b5050565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610e0657600080fd5b6005546001600160a01b031633146111f75760405162461bcd60e51b8152600401610be5906131fc565b6006546001600160a01b038281169116141561126a5760405162461bcd60e51b815260206004820152602c60248201527f50756d704554483a2054686520726f7574657220616c7265616479206861732060448201526b74686174206164647265737360a01b6064820152608401610be5565b6006546040516001600160a01b03918216918316907fcd2acde3ae4de754da8074077404027fae40be67d89638ee1ceca2427883da7d90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561130e57600080fd5b505afa158015611322573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb591906130cc565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561139457600080fd5b505af11580156113a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cc91906130e4565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b031633146114515760405162461bcd60e51b8152600401610be5906131fc565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146114c55760405162461bcd60e51b8152600401610be5906131fc565b6001600160a01b03811660009081526012602052604090205460ff16156115665760405162461bcd60e51b815260206004820152604960248201527f50756d704554483a204163636f756e7420697320616c726561647920616c6c6f60448201527f77656420746f207472616e73666572206265666f72652074726164696e6720696064820152681cc8195b98589b195960ba1b608482015260a401610be5565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6005546001600160a01b031633146115b45760405162461bcd60e51b8152600401610be5906131fc565b600e548114156115d65760405162461bcd60e51b8152600401610be5906131a7565b600e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600e55565b6005546001600160a01b031633146116335760405162461bcd60e51b8152600401610be5906131fc565b6007546001600160a01b03828116911614156116b05760405162461bcd60e51b815260206004820152603660248201527f50756d704554483a20546865206469766964656e6420747261636b657220616c6044820152757265616479206861732074686174206164647265737360501b6064820152608401610be5565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156116f857600080fd5b505afa15801561170c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117309190612f43565b6001600160a01b0316146117c25760405162461bcd60e51b815260206004820152604d60248201527f50756d704554483a20546865206e6577206469766964656e6420747261636b6560448201527f72206d757374206265206f776e6564206279207468652050756d70455448207460648201526c1bdad95b8818dbdb9d1c9858dd609a1b608482015260a401610be5565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b15801561180457600080fd5b505af1158015611818573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561186357600080fd5b505af1158015611877573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156118c257600080fd5b505af11580156118d6573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f1ae8fd4f008d9dd6f83c1182b3f30d87aed4ac15a15833ad625bbb740463e3c990600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031633146119635760405162461bcd60e51b8152600401610be5906131fc565b600a600b8190556002600c81905561197a916132e6565b600d55565b606060048054610b2190613354565b6005546001600160a01b031633146119b85760405162461bcd60e51b8152600401610be5906131fc565b7f0000000000000000000000001a4154aa3fc63888a4181064e0a91f6e3382594d6001600160a01b0316826001600160a01b03161415611a735760405162461bcd60e51b815260206004820152604a60248201527f50756d704554483a2054686520556e697377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a401610be5565b6111848282612815565b6005546001600160a01b03163314611aa75760405162461bcd60e51b8152600401610be5906131fc565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f90602401610ee0565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610e0657600080fd5b6000610bb13384610db285604051806060016040528060258152602001613417602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906127db565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016112f6565b6000610bb133848461224b565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b158015611c0357600080fd5b505afa158015611c17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3b9190613004565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611c805760405162461bcd60e51b8152600401610be5906131fc565b6001600160a01b03821660009081526011602052604090205460ff1615611d005760405162461bcd60e51b815260206004820152602e60248201527f50756d704554483a204163636f756e7420697320616c7265616479206578636c60448201526d756465642066726f6d206665657360901b6064820152608401610be5565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314611d555760405162461bcd60e51b8152600401610be5906131fc565b600f54811415611d775760405162461bcd60e51b8152600401610be5906131a7565b600f5460405182907fcdadd717dc9ee3550a289071d1af75e229726888d51e3a31c9e3dfc693d4852b90600090a3600f55565b6005546001600160a01b03163314611dd45760405162461bcd60e51b8152600401610be5906131fc565b6000600b819055600c819055600d55565b6005546001600160a01b03163314611e0f5760405162461bcd60e51b8152600401610be5906131fc565b6009546001600160a01b0382811691161415611e8b5760405162461bcd60e51b815260206004820152603560248201527f50756d704554483a2054686973206164647265737320697320616c7265616479604482015274081d1a19481b1a5c5d5a591a5d1e481dd85b1b195d605a1b6064820152608401610be5565b611e96816001611c56565b6009546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610e0657600080fd5b6005546001600160a01b03163314611f625760405162461bcd60e51b8152600401610be5906131fc565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610ee0565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611bea565b6005546001600160a01b03163314611fff5760405162461bcd60e51b8152600401610be5906131fc565b6001600160a01b0381166120645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be5565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806120cd83856132e6565b90508381101561211f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610be5565b9392505050565b6001600160a01b0383166121885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610be5565b6001600160a01b0382166121e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610be5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166122715760405162461bcd60e51b8152600401610be590613231565b6001600160a01b0382166122975760405162461bcd60e51b8152600401610be590613164565b60105460ff168061233a576001600160a01b03841660009081526012602052604090205460ff1661233a5760405162461bcd60e51b815260206004820152604160248201527f50756d704554483a2054686973206163636f756e742063616e6e6f742073656e60448201527f6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c656064820152601960fa1b608482015260a401610be5565b816123515761234b8484600061297d565b50505050565b600654600160a01b900460ff161580156123685750805b801561238c57506001600160a01b03831660009081526013602052604090205460ff165b80156123a657506006546001600160a01b03858116911614155b80156123cb57506001600160a01b03831660009081526011602052604090205460ff16155b1561244857600a548211156124485760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610be5565b30600090815260208190526040902054600f548110158280156124685750805b801561247e5750600654600160a01b900460ff16155b80156124a357506001600160a01b03861660009081526013602052604090205460ff16155b80156124b857506001600160a01b0386163014155b80156124cd57506001600160a01b0385163014155b15612537576006805460ff60a01b1916600160a01b179055600d54600c54600091612503916124fd908690612a86565b90612b05565b905061250e81612b47565b3060009081526020819052604090205461252781612bce565b50506006805460ff60a01b191690555b60008380156125505750600654600160a01b900460ff16155b6001600160a01b03881660009081526011602052604090205490915060ff168061259257506001600160a01b03861660009081526011602052604090205460ff165b1561259b575060005b80156125cc57600d546000906125bc906125b6886064612b05565b90612a86565b90506125c88682612c76565b9550505b6125d787878761297d565b6007546001600160a01b031663e30443bc88612608816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561264e57600080fd5b505af192505050801561265f575060015b506007546001600160a01b031663e30443bc87612691816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126d757600080fd5b505af19250505080156126e8575060015b50600654600160a01b900460ff166127d257600e546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561274657600080fd5b505af1925050508015612776575060408051601f3d908101601f19168201909252612773918101906130e4565b60015b61277f576127d0565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156127ff5760405162461bcd60e51b8152600401610be59190613111565b50600061280c848661333d565b95945050505050565b6001600160a01b03821660009081526013602052604090205460ff16151581151514156128b45760405162461bcd60e51b815260206004820152604160248201527f50756d704554483a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a401610be5565b6001600160a01b0382166000908152601360205260409020805460ff191682158015919091179091556129415760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561292857600080fd5b505af115801561293c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129a35760405162461bcd60e51b8152600401610be590613231565b6001600160a01b0382166129c95760405162461bcd60e51b8152600401610be590613164565b612a06816040518060600160405280602681526020016133c9602691396001600160a01b03861660009081526020819052604090205491906127db565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612a3590826120c0565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161223e565b600082612a9557506000610bb5565b6000612aa1838561331e565b905082612aae85836132fe565b1461211f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610be5565b600061211f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cb8565b6000612b54826002612b05565b90506000612b628383612c76565b905047612b6e83612ce6565b6000612b7a4783612c76565b9050612b868382612e6b565b60408051858152602081018390529081018490527ffb82c2300f807cc60e7abf909b045a028ef3b1807785a6b675eb0fa21e461fa19060600160405180910390a15050505050565b612bd781612ce6565b60075460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114612c28576040519150601f19603f3d011682016040523d82523d6000602084013e612c2d565b606091505b505090508015612c715760408051848152602081018490527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca910160405180910390a15b505050565b600061211f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506127db565b60008183612cd95760405162461bcd60e51b8152600401610be59190613111565b50600061280c84866132fe565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d2957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612d7d57600080fd5b505afa158015612d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db59190612f43565b81600181518110612dd657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612dfc9130911684612126565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612e35908590600090869030904290600401613276565b600060405180830381600087803b158015612e4f57600080fd5b505af1158015612e63573d6000803e3d6000fd5b505050505050565b600654612e839030906001600160a01b031684612126565b60065460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015612eee57600080fd5b505af1158015612f02573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f0e91906130e4565b600060208284031215612f38578081fd5b813561211f816133a5565b600060208284031215612f54578081fd5b815161211f816133a5565b60008060408385031215612f71578081fd5b8235612f7c816133a5565b91506020830135612f8c816133a5565b809150509250929050565b600080600060608486031215612fab578081fd5b8335612fb6816133a5565b92506020840135612fc6816133a5565b929592945050506040919091013590565b60008060408385031215612fe9578182fd5b8235612ff4816133a5565b91506020830135612f8c816133ba565b600080600080600080600080610100898b031215613020578384fd5b885161302b816133a5565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b6000806040838503121561307f578182fd5b823561308a816133a5565b946020939093013593505050565b6000602082840312156130a9578081fd5b815161211f816133ba565b6000602082840312156130c5578081fd5b5035919050565b6000602082840312156130dd578081fd5b5051919050565b6000806000606084860312156130f8578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561313d57858101830151858201604001528201613121565b8181111561314e5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526035908201527f50756d704554483a2043616e6e6f742075706461746520676173466f7250726f60408201527463657373696e6720746f2073616d652076616c756560581b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156132c55784516001600160a01b0316835293830193918301916001016132a0565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156132f9576132f961338f565b500190565b60008261331957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156133385761333861338f565b500290565b60008282101561334f5761334f61338f565b500390565b600181811c9082168061336857607f821691505b6020821081141561338957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461108357600080fd5b801515811461108357600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f514bac8d35fa6ec651c6dc599ba93fba610ba9a461637740b07ef7c635c22264736f6c63430008040033

Libraries Used


Deployed Bytecode Sourcemap

24081:16841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10750:169;;;;;;;;;;-1:-1:-1;10750:169:0;;;;;:::i;:::-;;:::i;:::-;;;6315:14:1;;6308:22;6290:41;;6278:2;6263:18;10750:169:0;6245:92:1;25082:158:0;;;;;;;;;;;;;:::i;:::-;;30475:141;;;;;;;;;;-1:-1:-1;30475:141:0;;;;;:::i;:::-;;:::i;24158:41::-;;;;;;;;;;-1:-1:-1;24158:41:0;;;;-1:-1:-1;;;;;24158:41:0;;;;;;-1:-1:-1;;;;;4188:32:1;;;4170:51;;4158:2;4143:18;24158:41:0;4125:102:1;9703:108:0;;;;;;;;;;-1:-1:-1;9791:12:0;;9703:108;;;16906:25:1;;;16894:2;16879:18;9703:108:0;16861:76:1;30626:265:0;;;;;;;;;;-1:-1:-1;30626:265:0;;;;;:::i;:::-;;:::i;11401:355::-;;;;;;;;;;-1:-1:-1;11401:355:0;;;;;:::i;:::-;;:::i;24344:71::-;;;;;;;;;;-1:-1:-1;24344:71:0;;;;-1:-1:-1;;;;;24344:71:0;;;33536:118;;;;;;;;;;;;;:::i;24286:45::-;;;;;;;;;;-1:-1:-1;24286:45:0;;;;-1:-1:-1;;;;;24286:45:0;;;24557:35;;;;;;;;;;;;;;;;33778:141;;;;;;;;;;;;;:::i;9545:93::-;;;;;;;;;;-1:-1:-1;9545:93:0;;9628:2;19045:36:1;;19033:2;19018:18;9545:93:0;19000:87:1;30335:128:0;;;;;;;;;;-1:-1:-1;30335:128:0;;;;;:::i;:::-;;:::i;30901:264::-;;;;;;;;;;-1:-1:-1;30901:264:0;;;;;:::i;:::-;;:::i;12165:218::-;;;;;;;;;;-1:-1:-1;12165:218:0;;;;;:::i;:::-;;:::i;24206:38::-;;;;;;;;;;;;;;;25047:26;;;;;;;;;;-1:-1:-1;25047:26:0;;;;;;;;35235:103;;;;;;;;;;;;;:::i;28639:324::-;;;;;;;;;;-1:-1:-1;28639:324:0;;;;;:::i;:::-;;:::i;33927:125::-;;;;;;;;;;-1:-1:-1;33927:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;34016:28:0;33992:4;34016:28;;;:19;:28;;;;;;;;;33927:125;24599:32;;;;;;;;;;;;;;;;35483:141;;;;;;;;;;;;;:::i;29773:317::-;;;;;;;;;;-1:-1:-1;29773:317:0;;;;;:::i;:::-;;:::i;34219:139::-;;;;;;;;;;-1:-1:-1;34219:139:0;;;;;:::i;:::-;;:::i;34956:271::-;;;;;;;;;;-1:-1:-1;34956:271:0;;;;;:::i;:::-;;:::i;9874:127::-;;;;;;;;;;-1:-1:-1;9874:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9975:18:0;9948:7;9975:18;;;;;;;;;;;;9874:127;2734:148;;;;;;;;;;;;;:::i;25428:66::-;;;;;;;;;;-1:-1:-1;25428:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31859:287;;;;;;;;;;-1:-1:-1;31859:287:0;;;;;:::i;:::-;;:::i;32538:382::-;;;;;;;;;;-1:-1:-1;32538:382:0;;;;;:::i;:::-;;:::i;28971:794::-;;;;;;;;;;-1:-1:-1;28971:794:0;;;;;:::i;:::-;;:::i;28463:165::-;;;;;;;;;;;;;:::i;2092:79::-;;;;;;;;;;-1:-1:-1;2157:6:0;;-1:-1:-1;;;;;2157:6:0;2092:79;;24638:59;;;;;;;;;;;;;;;;8802:104;;;;;;;;;;;;;:::i;31173:261::-;;;;;;;;;;-1:-1:-1;31173:261:0;;;;;:::i;:::-;;:::i;24776:40::-;;;;;;;;;;;;;;;;33252:144;;;;;;;;;;-1:-1:-1;33252:144:0;;;;;:::i;:::-;;:::i;33662:108::-;;;;;;;;;;;;;:::i;12886:269::-;;;;;;;;;;-1:-1:-1;12886:269:0;;;;;:::i;:::-;;:::i;34060:151::-;;;;;;;;;;-1:-1:-1;34060:151:0;;;;;:::i;:::-;;:::i;10214:175::-;;;;;;;;;;-1:-1:-1;10214:175:0;;;;;:::i;:::-;;:::i;34366:282::-;;;;;;;;;;-1:-1:-1;34366:282:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5189:32:1;;;5171:51;;5253:2;5238:18;;5231:34;;;;5281:18;;;5274:34;;;;5339:2;5324:18;;5317:34;;;;5382:3;5367:19;;5360:35;5209:3;5411:19;;5404:35;5470:3;5455:19;;5448:35;5514:3;5499:19;;5492:35;5158:3;5143:19;34366:282:0;5125:408:1;25652:58:0;;;;;;;;;;-1:-1:-1;25652:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30098:225;;;;;;;;;;-1:-1:-1;30098:225:0;;;;;:::i;:::-;;:::i;24907:57::-;;;;;;;;;;;;;;;;32928:316;;;;;;;;;;-1:-1:-1;32928:316:0;;;;;:::i;:::-;;:::i;24422:30::-;;;;;;;;;;-1:-1:-1;24422:30:0;;;;-1:-1:-1;;;;;24422:30:0;;;10452:151;;;;;;;;;;-1:-1:-1;10452:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10568:18:0;;;10541:7;10568:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10452:151;28312:139;;;;;;;;;;;;;:::i;32158:372::-;;;;;;;;;;-1:-1:-1;32158:372:0;;;;;:::i;:::-;;:::i;35346:129::-;;;;;;;;;;;;;:::i;33404:124::-;;;;;;;;;;-1:-1:-1;33404:124:0;;;;;:::i;:::-;;:::i;34656:292::-;;;;;;;;;;-1:-1:-1;34656:292:0;;;;;:::i;:::-;;:::i;3037:244::-;;;;;;;;;;-1:-1:-1;3037:244:0;;;;;:::i;:::-;;:::i;24461:65::-;;;;;;;;;;;;;;;;8583:100;8637:13;8670:5;8663:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8583:100;:::o;10750:169::-;10833:4;10850:39;1466:10;10873:7;10882:6;10850:8;:39::i;:::-;-1:-1:-1;10907:4:0;10750:169;;;;;:::o;25082:158::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;;;;;;;;;25146:14:::1;::::0;::::1;;25145:15;25137:63;;;::::0;-1:-1:-1;;;25137:63:0;;8038:2:1;25137:63:0::1;::::0;::::1;8020:21:1::0;8077:2;8057:18;;;8050:30;8116:34;8096:18;;;8089:62;-1:-1:-1;;;8167:18:1;;;8160:33;8210:19;;25137:63:0::1;8010:225:1::0;25137:63:0::1;25211:14;:21:::0;;-1:-1:-1;;25211:21:0::1;25228:4;25211:21;::::0;;25082:158::o;30475:141::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;30588:17:::1;:6:::0;30598::::1;30588:17;:::i;:::-;30558:27;:47:::0;-1:-1:-1;30475:141:0:o;30626:265::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;30730:3:::1;30720:6;:13;;30697:99;;;::::0;-1:-1:-1;;;30697:99:0;;10097:2:1;30697:99:0::1;::::0;::::1;10079:21:1::0;10136:2;10116:18;;;10109:30;10175:34;10155:18;;;10148:62;10246:28;10226:18;;;10219:56;10292:19;;30697:99:0::1;10069:248:1::0;30697:99:0::1;30806:15;:24:::0;;;30853:13:::1;::::0;:31:::1;::::0;30824:6;;30853:31:::1;:::i;:::-;30840:10;:44:::0;-1:-1:-1;30626:265:0:o;11401:355::-;11541:4;11558:36;11568:6;11576:9;11587:6;11558:9;:36::i;:::-;11605:121;11614:6;1466:10;11636:89;11674:6;11636:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11636:19:0;;;;;;:11;:19;;;;;;;;1466:10;11636:33;;;;;;;;;;:37;:89::i;:::-;11605:8;:121::i;:::-;-1:-1:-1;11744:4:0;11401:355;;;;;:::o;33536:118::-;33614:15;;:32;;;-1:-1:-1;;;33614:32:0;;;;33587:7;;-1:-1:-1;;;;;33614:15:0;;:30;;:32;;;;;;;;;;;;;;:15;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33607:39;;33536:118;:::o;33778:141::-;33868:15;;:43;;;-1:-1:-1;;;33868:43:0;;;;33841:7;;-1:-1:-1;;;;;33868:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;30335:128;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;30410:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;30410:45:0;;-1:-1:-1;;;;;4188:32:1;;;30410:45:0::1;::::0;::::1;4170:51:1::0;30410:15:0;;::::1;::::0;:36:::1;::::0;4143:18:1;;30410:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;30335:128:::0;:::o;30901:264::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;31004:3:::1;30994:6;:13;;30971:101;;;::::0;-1:-1:-1;;;30971:101:0;;10880:2:1;30971:101:0::1;::::0;::::1;10862:21:1::0;10919:2;10899:18;;;10892:30;10958:34;10938:18;;;10931:62;11029:30;11009:18;;;11002:58;11077:19;;30971:101:0::1;10852:250:1::0;30971:101:0::1;31082:13;:22:::0;;;31127:15:::1;::::0;:31:::1;::::0;31098:6;;31127:31:::1;:::i;12165:218::-:0;1466:10;12253:4;12302:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12302:34:0;;;;;;;;;;12253:4;;12270:83;;12293:7;;12302:50;;12341:10;12302:38;:50::i;35235:103::-;35272:15;;:58;;-1:-1:-1;;;35272:58:0;;35311:10;35272:58;;;4416:51:1;35272:15:0;4483:18:1;;;4476:50;-1:-1:-1;;;;;35272:15:0;;;;:30;;4389:18:1;;35272:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35235:103::o;28639:324::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;28741:15:::1;::::0;:53:::1;::::0;-1:-1:-1;;;28741:53:0;;-1:-1:-1;;;;;4188:32:1;;;28741:53:0::1;::::0;::::1;4170:51:1::0;28741:15:0;;::::1;::::0;:36:::1;::::0;4143:18:1;;28741:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;28805:38;28821:15;28838:4;28805:15;:38::i;:::-;28856:15;::::0;:52:::1;::::0;-1:-1:-1;;;28856:52:0;;-1:-1:-1;;;;;4188:32:1;;;28856:52:0::1;::::0;::::1;4170:51:1::0;28856:15:0;;::::1;::::0;:36:::1;::::0;4143:18:1;;28856:52:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;28919:37;28935:14;28951:4;28919:15;:37::i;:::-;28639:324:::0;;:::o;35483:141::-;35575:15;;:41;;;-1:-1:-1;;;35575:41:0;;;;35548:7;;-1:-1:-1;;;;;35575:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;29773:317;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;29882:15:::1;::::0;-1:-1:-1;;;;;29860:38:0;;::::1;29882:15:::0;::::1;29860:38;;29852:95;;;::::0;-1:-1:-1;;;29852:95:0;;16075:2:1;29852:95:0::1;::::0;::::1;16057:21:1::0;16114:2;16094:18;;;16087:30;16153:34;16133:18;;;16126:62;-1:-1:-1;;;16204:18:1;;;16197:42;16256:19;;29852:95:0::1;16047:234:1::0;29852:95:0::1;30006:15;::::0;29963:60:::1;::::0;-1:-1:-1;;;;;30006:15:0;;::::1;::::0;29963:60;::::1;::::0;::::1;::::0;30006:15:::1;::::0;29963:60:::1;30034:15;:48:::0;;-1:-1:-1;;;;;;30034:48:0::1;-1:-1:-1::0;;;;;30034:48:0;;;::::1;::::0;;;::::1;::::0;;29773:317::o;34219:139::-;34316:15;;:34;;-1:-1:-1;;;34316:34:0;;-1:-1:-1;;;;;4188:32:1;;;34316:34:0;;;4170:51:1;34289:7:0;;34316:15;;:25;;4143:18:1;;34316:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34956:271::-;35088:15;;:28;;-1:-1:-1;;;;;;35088:28:0;;;;;16906:25:1;;;35022:18:0;;;;;;-1:-1:-1;;;;;35088:15:0;;:23;;16879:18:1;;35088:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35132:87;;;18738:25:1;;;18794:2;18779:18;;18772:34;;;18822:18;;;18815:34;;;18880:2;18865:18;;18858:34;;;35021:95:0;;-1:-1:-1;35021:95:0;;-1:-1:-1;35021:95:0;-1:-1:-1;35209:9:0;;35197:5;;35132:87;;18725:3:1;18710:19;35132:87:0;;;;;;;34956:271;;;;:::o;2734:148::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;2825:6:::1;::::0;2804:40:::1;::::0;2841:1:::1;::::0;-1:-1:-1;;;;;2825:6:0::1;::::0;2804:40:::1;::::0;2841:1;;2804:40:::1;2855:6;:19:::0;;-1:-1:-1;;;;;;2855:19:0::1;::::0;;2734:148::o;31859:287::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31958:42:0;::::1;;::::0;;;:33:::1;:42;::::0;;;;;::::1;;31957:43;31949:129;;;::::0;-1:-1:-1;;;31949:129:0;;11309:2:1;31949:129:0::1;::::0;::::1;11291:21:1::0;11348:2;11328:18;;;11321:30;11387:34;11367:18;;;11360:62;11458:34;11438:18;;;11431:62;-1:-1:-1;;;11509:19:1;;;11502:40;11559:19;;31949:129:0::1;11281:303:1::0;31949:129:0::1;-1:-1:-1::0;;;;;32089:42:0::1;;::::0;;;:33:::1;:42;::::0;;;;:49;;-1:-1:-1;;32089:49:0::1;32134:4;32089:49;::::0;;31859:287::o;32538:382::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;32733:16:::1;;32721:8;:28;;32713:94;;;;-1:-1:-1::0;;;32713:94:0::1;;;;;;;:::i;:::-;32857:16;::::0;32823:51:::1;::::0;32847:8;;32823:51:::1;::::0;;;::::1;32885:16;:27:::0;32538:382::o;28971:794::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;29080:15:::1;::::0;-1:-1:-1;;;;;29058:38:0;;::::1;29080:15:::0;::::1;29058:38;;29050:105;;;::::0;-1:-1:-1;;;29050:105:0;;8442:2:1;29050:105:0::1;::::0;::::1;8424:21:1::0;8481:2;8461:18;;;8454:30;8520:34;8500:18;;;8493:62;-1:-1:-1;;;8571:18:1;;;8564:52;8633:19;;29050:105:0::1;8414:244:1::0;29050:105:0::1;29168:41;29243:10;29168:87;;29314:4;-1:-1:-1::0;;;;;29276:43:0::1;:18;-1:-1:-1::0;;;;;29276:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29276:43:0::1;;29268:133;;;::::0;-1:-1:-1;;;29268:133:0;;15115:2:1;29268:133:0::1;::::0;::::1;15097:21:1::0;15154:2;15134:18;;;15127:30;15193:34;15173:18;;;15166:62;15264:34;15244:18;;;15237:62;-1:-1:-1;;;15315:19:1;;;15308:44;15369:19;;29268:133:0::1;15087:307:1::0;29268:133:0::1;29414:68;::::0;-1:-1:-1;;;29414:68:0;;-1:-1:-1;;;;;29414:39:0;::::1;:68;::::0;::::1;4170:51:1::0;;;29414:39:0;::::1;::::0;4143:18:1;;29414:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29541:15:0::1;::::0;29493:65:::1;::::0;-1:-1:-1;;;29493:65:0;;-1:-1:-1;;;;;29541:15:0;;::::1;29493:65;::::0;::::1;4170:51:1::0;29493:39:0;;::::1;::::0;-1:-1:-1;29493:39:0::1;::::0;-1:-1:-1;4143:18:1;;29493:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29617:11:0::1;::::0;29569:61:::1;::::0;-1:-1:-1;;;29569:61:0;;-1:-1:-1;;;;;29617:11:0;;::::1;29569:61;::::0;::::1;4170:51:1::0;29569:39:0;;::::1;::::0;-1:-1:-1;29569:39:0::1;::::0;-1:-1:-1;4143:18:1;;29569:61:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29691:15:0::1;::::0;29648:60:::1;::::0;-1:-1:-1;;;;;29691:15:0;;::::1;::::0;-1:-1:-1;29648:60:0;;::::1;::::0;-1:-1:-1;29648:60:0::1;::::0;29691:15:::1;::::0;29648:60:::1;29721:15;:36:::0;;-1:-1:-1;;;;;;29721:36:0::1;-1:-1:-1::0;;;;;29721:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;28971:794:0:o;28463:165::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;28535:2:::1;28517:15;:20:::0;;;28564:1:::1;28548:13;:17:::0;;;28589:31:::1;::::0;::::1;:::i;:::-;28576:10;:44:::0;28463:165::o;8802:104::-;8858:13;8891:7;8884:14;;;;;:::i;31173:261::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;31280:13:::1;-1:-1:-1::0;;;;;31272:21:0::1;:4;-1:-1:-1::0;;;;;31272:21:0::1;;;31264:108;;;::::0;-1:-1:-1;;;31264:108:0;;12213:2:1;31264:108:0::1;::::0;::::1;12195:21:1::0;12252:2;12232:18;;;12225:30;12291:34;12271:18;;;12264:62;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:19:1;;;12406:41;12464:19;;31264:108:0::1;12185:304:1::0;31264:108:0::1;31385:41;31414:4;31420:5;31385:28;:41::i;33252:144::-:0;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;33336:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;33336:52:0;;::::1;::::0;::::1;16906:25:1::0;;;-1:-1:-1;;;;;33336:15:0;;::::1;::::0;:36:::1;::::0;16879:18:1;;33336:52:0::1;16861:76:1::0;33662:108:0;33735:15;;:27;;;-1:-1:-1;;;33735:27:0;;;;33708:7;;-1:-1:-1;;;;;33735:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;12886:269;12979:4;12996:129;1466:10;13019:7;13028:96;13067:15;13028:96;;;;;;;;;;;;;;;;;1466:10;13028:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13028:34:0;;;;;;;;;;;;:38;:96::i;34060:151::-;34156:15;;:47;;-1:-1:-1;;;34156:47:0;;-1:-1:-1;;;;;4188:32:1;;;34156:47:0;;;4170:51:1;34129:7:0;;34156:15;;:38;;4143:18:1;;34156:47:0;4125:102:1;10214:175:0;10300:4;10317:42;1466:10;10341:9;10352:6;10317:9;:42::i;34366:282::-;34605:15;;:35;;-1:-1:-1;;;34605:35:0;;-1:-1:-1;;;;;4188:32:1;;;34605:35:0;;;4170:51:1;34454:7:0;;;;;;;;;;;;;;;;34605:15;;;:26;;4143:18:1;;34605:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34598:42;;;;;;;;;;;;;;;;34366:282;;;;;;;;;:::o;30098:225::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30189:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;30188:29;30180:88;;;::::0;-1:-1:-1;;;30180:88:0;;13889:2:1;30180:88:0::1;::::0;::::1;13871:21:1::0;13928:2;13908:18;;;13901:30;13967:34;13947:18;;;13940:62;-1:-1:-1;;;14018:18:1;;;14011:44;14072:19;;30180:88:0::1;13861:236:1::0;30180:88:0::1;-1:-1:-1::0;;;;;30279:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:36;;-1:-1:-1;;30279:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30098:225::o;32928:316::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;33032:23:::1;;33020:8;:35;;33012:101;;;;-1:-1:-1::0;;;33012:101:0::1;;;;;;;:::i;:::-;33167:23;::::0;33129:62:::1;::::0;33157:8;;33129:62:::1;::::0;;;::::1;33202:23;:34:::0;32928:316::o;28312:139::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;28389:1:::1;28371:15;:19:::0;;;28401:13:::1;:17:::0;;;28429:10:::1;:14:::0;28312:139::o;32158:372::-;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;32275:15:::1;::::0;-1:-1:-1;;;;;32253:37:0;;::::1;32275:15:::0;::::1;32253:37;;32245:103;;;::::0;-1:-1:-1;;;32245:103:0;;8865:2:1;32245:103:0::1;::::0;::::1;8847:21:1::0;8904:2;8884:18;;;8877:30;8943:34;8923:18;;;8916:62;-1:-1:-1;;;8994:18:1;;;8987:51;9055:19;;32245:103:0::1;8837:243:1::0;32245:103:0::1;32359:41;32375:18;32395:4;32359:15;:41::i;:::-;32459:15;::::0;32416:59:::1;::::0;-1:-1:-1;;;;;32459:15:0;;::::1;::::0;32416:59;::::1;::::0;::::1;::::0;32459:15:::1;::::0;32416:59:::1;32486:15;:36:::0;;-1:-1:-1;;;;;;32486:36:0::1;-1:-1:-1::0;;;;;32486:36:0;;;::::1;::::0;;;::::1;::::0;;32158:372::o;35346:129::-;35428:15;;:39;;;-1:-1:-1;;;35428:39:0;;;;35401:7;;-1:-1:-1;;;;;35428:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;33404:124;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;33478:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;33478:42:0;;::::1;::::0;::::1;16906:25:1::0;;;-1:-1:-1;;;;;33478:15:0;;::::1;::::0;:31:::1;::::0;16879:18:1;;33478:42:0::1;16861:76:1::0;34656:292:0;34900:15;;:40;;-1:-1:-1;;;34900:40:0;;;;;16906:25:1;;;34749:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34900:15:0;;;;:33;;16879:18:1;;34900:40:0;16861:76:1;3037:244:0;2304:6;;-1:-1:-1;;;;;2304:6:0;1466:10;2304:22;2296:67;;;;-1:-1:-1;;;2296:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3126:22:0;::::1;3118:73;;;::::0;-1:-1:-1;;;3118:73:0;;9287:2:1;3118:73:0::1;::::0;::::1;9269:21:1::0;9326:2;9306:18;;;9299:30;9365:34;9345:18;;;9338:62;-1:-1:-1;;;9416:18:1;;;9409:36;9462:19;;3118:73:0::1;9259:228:1::0;3118:73:0::1;3228:6;::::0;3207:38:::1;::::0;-1:-1:-1;;;;;3207:38:0;;::::1;::::0;3228:6:::1;::::0;3207:38:::1;::::0;3228:6:::1;::::0;3207:38:::1;3256:6;:17:::0;;-1:-1:-1;;;;;;3256:17:0::1;-1:-1:-1::0;;;;;3256:17:0;;;::::1;::::0;;;::::1;::::0;;3037:244::o;17450:181::-;17508:7;;17540:5;17544:1;17540;:5;:::i;:::-;17528:17;;17569:1;17564;:6;;17556:46;;;;-1:-1:-1;;;17556:46:0;;10524:2:1;17556:46:0;;;10506:21:1;10563:2;10543:18;;;10536:30;10602:29;10582:18;;;10575:57;10649:18;;17556:46:0;10496:177:1;17556:46:0;17622:1;17450:181;-1:-1:-1;;;17450:181:0:o;16072:380::-;-1:-1:-1;;;;;16208:19:0;;16200:68;;;;-1:-1:-1;;;16200:68:0;;14710:2:1;16200:68:0;;;14692:21:1;14749:2;14729:18;;;14722:30;14788:34;14768:18;;;14761:62;-1:-1:-1;;;14839:18:1;;;14832:34;14883:19;;16200:68:0;14682:226:1;16200:68:0;-1:-1:-1;;;;;16287:21:0;;16279:68;;;;-1:-1:-1;;;16279:68:0;;9694:2:1;16279:68:0;;;9676:21:1;9733:2;9713:18;;;9706:30;9772:34;9752:18;;;9745:62;-1:-1:-1;;;9823:18:1;;;9816:32;9865:19;;16279:68:0;9666:224:1;16279:68:0;-1:-1:-1;;;;;16360:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16412:32;;16906:25:1;;;16412:32:0;;16879:18:1;16412:32:0;;;;;;;;16072:380;;;:::o;35632:2909::-;-1:-1:-1;;;;;35764:18:0;;35756:68;;;;-1:-1:-1;;;35756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35843:16:0;;35835:64;;;;-1:-1:-1;;;35835:64:0;;;;;;;:::i;:::-;35936:14;;;;;36056:167;;-1:-1:-1;;;;;36102:39:0;;;;;;:33;:39;;;;;;;;36094:117;;;;-1:-1:-1;;;36094:117:0;;15601:2:1;36094:117:0;;;15583:21:1;15640:2;15620:18;;;15613:30;15679:34;15659:18;;;15652:62;15750:34;15730:18;;;15723:62;-1:-1:-1;;;15801:19:1;;;15794:32;15843:19;;36094:117:0;15573:295:1;36094:117:0;36239:11;36235:93;;36267:28;36283:4;36289:2;36293:1;36267:15;:28::i;:::-;36310:7;35632:2909;;;:::o;36235:93::-;36345:11;;-1:-1:-1;;;36345:11:0;;;;36344:12;:45;;;;;36373:16;36344:45;:91;;;;-1:-1:-1;;;;;;36406:29:0;;;;;;:25;:29;;;;;;;;36344:91;:207;;;;-1:-1:-1;36535:15:0;;-1:-1:-1;;;;;36519:32:0;;;36535:15;;36519:32;;36344:207;:312;;;;-1:-1:-1;;;;;;36633:23:0;;;;;;:19;:23;;;;;;;;36632:24;36344:312;36340:538;;;36773:27;;36763:6;:37;;36755:111;;;;-1:-1:-1;;;36755:111:0;;13459:2:1;36755:111:0;;;13441:21:1;13498:2;13478:18;;;13471:30;13537:34;13517:18;;;13510:62;13608:31;13588:18;;;13581:59;13657:19;;36755:111:0;13431:251:1;36755:111:0;36939:4;36890:28;9975:18;;;;;;;;;;;36997:23;;36973:47;;;37037:16;:40;;;;;37070:7;37037:40;:69;;;;-1:-1:-1;37095:11:0;;-1:-1:-1;;;37095:11:0;;;;37094:12;37037:69;:118;;;;-1:-1:-1;;;;;;37124:31:0;;;;;;:25;:31;;;;;;;;37123:32;37037:118;:156;;;;-1:-1:-1;;;;;;37172:21:0;;37188:4;37172:21;;37037:156;:192;;;;-1:-1:-1;;;;;;37210:19:0;;37224:4;37210:19;;37037:192;37033:532;;;37256:11;:18;;-1:-1:-1;;;;37256:18:0;-1:-1:-1;;;37256:18:0;;;37356:10;;37337:13;;37256:18;;37312:55;;:39;;:20;;:24;:39::i;:::-;:43;;:55::i;:::-;37291:76;;37382:26;37397:10;37382:14;:26::i;:::-;37464:4;37425:18;9975;;;;;;;;;;;37485:32;9975:18;37485:20;:32::i;:::-;-1:-1:-1;;37534:11:0;:19;;-1:-1:-1;;;;37534:19:0;;;37033:532;37577:12;37592:16;:32;;;;-1:-1:-1;37613:11:0;;-1:-1:-1;;;37613:11:0;;;;37612:12;37592:32;-1:-1:-1;;;;;37726:25:0;;;;;;:19;:25;;;;;;37577:47;;-1:-1:-1;37726:25:0;;;:52;;-1:-1:-1;;;;;;37755:23:0;;;;;;:19;:23;;;;;;;;37726:52;37722:100;;;-1:-1:-1;37805:5:0;37722:100;37838:7;37834:128;;;37897:10;;37862:12;;37877:31;;:15;:6;37888:3;37877:10;:15::i;:::-;:19;;:31::i;:::-;37862:46;-1:-1:-1;37932:16:0;:6;37862:46;37932:10;:16::i;:::-;37923:25;;37834:128;;37974:33;37990:4;37996:2;38000:6;37974:15;:33::i;:::-;38024:15;;-1:-1:-1;;;;;38024:15:0;:26;38059:4;38066:15;38059:4;-1:-1:-1;;;;;9975:18:0;9948:7;9975:18;;;;;;;;;;;;9874:127;38066:15;38024:58;;-1:-1:-1;;;;;;38024:58:0;;;;;;;-1:-1:-1;;;;;4745:32:1;;;38024:58:0;;;4727:51:1;4794:18;;;4787:34;4700:18;;38024:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38020:74;38108:15;;-1:-1:-1;;;;;38108:15:0;:26;38143:2;38148:13;38143:2;-1:-1:-1;;;;;9975:18:0;9948:7;9975:18;;;;;;;;;;;;9874:127;38148:13;38108:54;;-1:-1:-1;;;;;;38108:54:0;;;;;;;-1:-1:-1;;;;;4745:32:1;;;38108:54:0;;;4727:51:1;4794:18;;;4787:34;4700:18;;38108:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38104:70;38191:11;;-1:-1:-1;;;38191:11:0;;;;38186:348;;38233:16;;38270:15;;:28;;-1:-1:-1;;;;;;38270:28:0;;;;;16906:25:1;;;-1:-1:-1;;;;;38270:15:0;;;;:23;;16879:18:1;;38270:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38270:28:0;;;;;;;;-1:-1:-1;;38270:28:0;;;;;;;;;;;;:::i;:::-;;;38266:257;;;;;38396:86;;;18738:25:1;;;18794:2;18779:18;;18772:34;;;18822:18;;;18815:34;;;18880:2;18865:18;;18858:34;;;38472:9:0;;38461:4;;38396:86;;18725:3:1;18710:19;38396:86:0;;;;;;;38299:199;;;38266:257;38186:348;;35632:2909;;;;;;;:::o;18353:192::-;18439:7;18475:12;18467:6;;;;18459:29;;;;-1:-1:-1;;;18459:29:0;;;;;;;;:::i;:::-;-1:-1:-1;18499:9:0;18511:5;18515:1;18511;:5;:::i;:::-;18499:17;18353:192;-1:-1:-1;;;;;18353:192:0:o;31442:409::-;-1:-1:-1;;;;;31533:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;31525:118;;;;-1:-1:-1;;;31525:118:0;;16488:2:1;31525:118:0;;;16470:21:1;16527:2;16507:18;;;16500:30;16566:34;16546:18;;;16539:62;16637:34;16617:18;;;16610:62;-1:-1:-1;;;16688:19:1;;;16681:32;16730:19;;31525:118:0;16460:295:1;31525:118:0;-1:-1:-1;;;;;31654:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;31654:39:0;;;;;;;;;;;;31706:80;;31732:15;;:42;;-1:-1:-1;;;31732:42:0;;-1:-1:-1;;;;;4188:32:1;;;31732:42:0;;;4170:51:1;31732:15:0;;;;:36;;4143:18:1;;31732:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31706:80;31803:40;;;;;;-1:-1:-1;;;;;31803:40:0;;;;;;;;31442:409;;:::o;13645:573::-;-1:-1:-1;;;;;13785:20:0;;13777:70;;;;-1:-1:-1;;;13777:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13866:23:0;;13858:71;;;;-1:-1:-1;;;13858:71:0;;;;;;;:::i;:::-;14022;14044:6;14022:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14022:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;14002:17:0;;;:9;:17;;;;;;;;;;;:91;;;;14127:20;;;;;;;:32;;14152:6;14127:24;:32::i;:::-;-1:-1:-1;;;;;14104:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;14175:35;16906:25:1;;;14104:20:0;;14175:35;;;;;;16879:18:1;14175:35:0;16861:76:1;18804:471:0;18862:7;19107:6;19103:47;;-1:-1:-1;19137:1:0;19130:8;;19103:47;19162:9;19174:5;19178:1;19174;:5;:::i;:::-;19162:17;-1:-1:-1;19207:1:0;19198:5;19202:1;19162:17;19198:5;:::i;:::-;:10;19190:56;;;;-1:-1:-1;;;19190:56:0;;12696:2:1;19190:56:0;;;12678:21:1;12735:2;12715:18;;;12708:30;12774:34;12754:18;;;12747:62;-1:-1:-1;;;12825:18:1;;;12818:31;12866:19;;19190:56:0;12668:223:1;19751:132:0;19809:7;19836:39;19840:1;19843;19836:39;;;;;;;;;;;;;;;;;:3;:39::i;38549:918::-;38659:12;38674:13;:6;38685:1;38674:10;:13::i;:::-;38659:28;-1:-1:-1;38698:17:0;38718:16;:6;38659:28;38718:10;:16::i;:::-;38698:36;-1:-1:-1;39037:21:0;39103:22;39120:4;39103:16;:22::i;:::-;39256:18;39277:41;:21;39303:14;39277:25;:41::i;:::-;39256:62;;39368:35;39381:9;39392:10;39368:12;:35::i;:::-;39421:38;;;18385:25:1;;;18441:2;18426:18;;18419:34;;;18469:18;;;18462:34;;;39421:38:0;;18373:2:1;18358:18;39421:38:0;;;;;;;38549:918;;;;;:::o;40601:318::-;40666:24;40683:6;40666:16;:24::i;:::-;40781:15;;40773:51;;40721:21;;40701:17;;-1:-1:-1;;;;;40781:15:0;;;;40721:21;;40701:17;40773:51;40701:17;40773:51;40721:21;40781:15;40773:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40755:69;;;40839:7;40835:77;;;40868:32;;;18104:25:1;;;18160:2;18145:18;;18138:34;;;40868:32:0;;18077:18:1;40868:32:0;;;;;;;40835:77;40601:318;;;:::o;17914:136::-;17972:7;17999:43;18003:1;18006;17999:43;;;;;;;;;;;;;;;;;:3;:43::i;20379:278::-;20465:7;20500:12;20493:5;20485:28;;;;-1:-1:-1;;;20485:28:0;;;;;;;;:::i;:::-;-1:-1:-1;20524:9:0;20536:5;20540:1;20536;:5;:::i;39475:589::-;39625:16;;;39639:1;39625:16;;;;;;;;39601:21;;39625:16;;;;;;;;;;-1:-1:-1;39625:16:0;39601:40;;39670:4;39652;39657:1;39652:7;;;;;;-1:-1:-1;;;39652:7:0;;;;;;;;;-1:-1:-1;;;;;39652:23:0;;;:7;;;;;;;;;;:23;;;;39696:15;;:22;;;-1:-1:-1;;;39696:22:0;;;;:15;;;;;:20;;:22;;;;;39652:7;;39696:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39686:4;39691:1;39686:7;;;;;;-1:-1:-1;;;39686:7:0;;;;;;;;;-1:-1:-1;;;;;39686:32:0;;;:7;;;;;;;;;:32;39763:15;;39731:62;;39748:4;;39763:15;39781:11;39731:8;:62::i;:::-;39832:15;;:224;;-1:-1:-1;;;39832:224:0;;-1:-1:-1;;;;;39832:15:0;;;;:66;;:224;;39913:11;;39832:15;;39983:4;;40010;;40030:15;;39832:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39475:589;;:::o;40072:521::-;40252:15;;40220:62;;40237:4;;-1:-1:-1;;;;;40252:15:0;40270:11;40220:8;:62::i;:::-;40325:15;;40529;;40325:260;;-1:-1:-1;;;40325:260:0;;40397:4;40325:260;;;5879:34:1;5929:18;;;5922:34;;;40325:15:0;5972:18:1;;;5965:34;;;6015:18;;;6008:34;-1:-1:-1;;;;;40529:15:0;;;6058:19:1;;;6051:44;40559:15:0;6111:19:1;;;6104:35;40325:15:0;;;:31;;40364:9;;5813:19:1;;40325:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:392::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1746:30;1705:32;1746:30;:::i;1813:691::-;1944:6;1952;1960;1968;1976;1984;1992;2000;2053:3;2041:9;2032:7;2028:23;2024:33;2021:2;;;2075:6;2067;2060:22;2021:2;2112:9;2106:16;2131:31;2156:5;2131:31;:::i;:::-;2181:5;2171:15;;;2226:2;2215:9;2211:18;2205:25;2195:35;;2270:2;2259:9;2255:18;2249:25;2239:35;;2314:2;2303:9;2299:18;2293:25;2283:35;;2358:3;2347:9;2343:19;2337:26;2327:36;;2403:3;2392:9;2388:19;2382:26;2372:36;;2448:3;2437:9;2433:19;2427:26;2417:36;;2493:3;2482:9;2478:19;2472:26;2462:36;;2011:493;;;;;;;;;;;:::o;2509:325::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;2703:9;2690:23;2722:31;2747:5;2722:31;:::i;:::-;2772:5;2824:2;2809:18;;;;2796:32;;-1:-1:-1;;;2596:238:1:o;2839:255::-;2906:6;2959:2;2947:9;2938:7;2934:23;2930:32;2927:2;;;2980:6;2972;2965:22;2927:2;3017:9;3011:16;3036:28;3058:5;3036:28;:::i;3099:190::-;3158:6;3211:2;3199:9;3190:7;3186:23;3182:32;3179:2;;;3232:6;3224;3217:22;3179:2;-1:-1:-1;3260:23:1;;3169:120;-1:-1:-1;3169:120:1:o;3294:194::-;3364:6;3417:2;3405:9;3396:7;3392:23;3388:32;3385:2;;;3438:6;3430;3423:22;3385:2;-1:-1:-1;3466:16:1;;3375:113;-1:-1:-1;3375:113:1:o;3493:316::-;3581:6;3589;3597;3650:2;3638:9;3629:7;3625:23;3621:32;3618:2;;;3671:6;3663;3656:22;3618:2;3705:9;3699:16;3689:26;;3755:2;3744:9;3740:18;3734:25;3724:35;;3799:2;3788:9;3784:18;3778:25;3768:35;;3608:201;;;;;:::o;6824:603::-;6936:4;6965:2;6994;6983:9;6976:21;7026:6;7020:13;7069:6;7064:2;7053:9;7049:18;7042:34;7094:4;7107:140;7121:6;7118:1;7115:13;7107:140;;;7216:14;;;7212:23;;7206:30;7182:17;;;7201:2;7178:26;7171:66;7136:10;;7107:140;;;7265:6;7262:1;7259:13;7256:2;;;7335:4;7330:2;7321:6;7310:9;7306:22;7302:31;7295:45;7256:2;-1:-1:-1;7411:2:1;7390:15;-1:-1:-1;;7386:29:1;7371:45;;;;7418:2;7367:54;;6945:482;-1:-1:-1;;;6945:482:1:o;7432:399::-;7634:2;7616:21;;;7673:2;7653:18;;;7646:30;7712:34;7707:2;7692:18;;7685:62;-1:-1:-1;;;7778:2:1;7763:18;;7756:33;7821:3;7806:19;;7606:225::o;11589:417::-;11791:2;11773:21;;;11830:2;11810:18;;;11803:30;11869:34;11864:2;11849:18;;11842:62;-1:-1:-1;;;11935:2:1;11920:18;;11913:51;11996:3;11981:19;;11763:243::o;12896:356::-;13098:2;13080:21;;;13117:18;;;13110:30;13176:34;13171:2;13156:18;;13149:62;13243:2;13228:18;;13070:182::o;14102:401::-;14304:2;14286:21;;;14343:2;14323:18;;;14316:30;14382:34;14377:2;14362:18;;14355:62;-1:-1:-1;;;14448:2:1;14433:18;;14426:35;14493:3;14478:19;;14276:227::o;16942:983::-;17204:4;17252:3;17241:9;17237:19;17283:6;17272:9;17265:25;17309:2;17347:6;17342:2;17331:9;17327:18;17320:34;17390:3;17385:2;17374:9;17370:18;17363:31;17414:6;17449;17443:13;17480:6;17472;17465:22;17518:3;17507:9;17503:19;17496:26;;17557:2;17549:6;17545:15;17531:29;;17578:4;17591:195;17605:6;17602:1;17599:13;17591:195;;;17670:13;;-1:-1:-1;;;;;17666:39:1;17654:52;;17761:15;;;;17726:12;;;;17702:1;17620:9;17591:195;;;-1:-1:-1;;;;;;;17842:32:1;;;;17837:2;17822:18;;17815:60;-1:-1:-1;;;17906:3:1;17891:19;17884:35;17803:3;17213:712;-1:-1:-1;;;17213:712:1:o;19092:128::-;19132:3;19163:1;19159:6;19156:1;19153:13;19150:2;;;19169:18;;:::i;:::-;-1:-1:-1;19205:9:1;;19140:80::o;19225:217::-;19265:1;19291;19281:2;;-1:-1:-1;;;19316:31:1;;19370:4;19367:1;19360:15;19398:4;19323:1;19388:15;19281:2;-1:-1:-1;19427:9:1;;19271:171::o;19447:168::-;19487:7;19553:1;19549;19545:6;19541:14;19538:1;19535:21;19530:1;19523:9;19516:17;19512:45;19509:2;;;19560:18;;:::i;:::-;-1:-1:-1;19600:9:1;;19499:116::o;19620:125::-;19660:4;19688:1;19685;19682:8;19679:2;;;19693:18;;:::i;:::-;-1:-1:-1;19730:9:1;;19669:76::o;19750:380::-;19829:1;19825:12;;;;19872;;;19893:2;;19947:4;19939:6;19935:17;19925:27;;19893:2;20000;19992:6;19989:14;19969:18;19966:38;19963:2;;;20046:10;20041:3;20037:20;20034:1;20027:31;20081:4;20078:1;20071:15;20109:4;20106:1;20099:15;19963:2;;19805:325;;;:::o;20135:127::-;20196:10;20191:3;20187:20;20184:1;20177:31;20227:4;20224:1;20217:15;20251:4;20248:1;20241:15;20267:131;-1:-1:-1;;;;;20342:31:1;;20332:42;;20322:2;;20388:1;20385;20378:12;20403:118;20489:5;20482:13;20475:21;20468:5;20465:32;20455:2;;20511:1;20508;20501:12

Swarm Source

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