ETH Price: $2,488.77 (-1.60%)

Token

ShibaETH (ShibaETH)
 

Overview

Max Total Supply

100,000,000,000 ShibaETH

Holders

246

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
29,641,891.163210827365335092 ShibaETH

Value
$0.00
0x38e1eeae285297cc24587677c2485dc216620377
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Earn ETH while Holding ShibaETH. 10% of every transaction is converted to Ethereum and distributed to holders.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ShibaETH

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-07-31
*/

/*

ShibaETH

1) 10% distribution in Ethereum (wETH)
2) 5% 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 ShibaETH is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private liquidating;

    ShibaETHDividendTracker public dividendTracker;
    
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public MAX_BUY_TRANSACTION_AMOUNT = 500000000 * (10**18); // 500 Million (0.5%)
    uint256 public MAX_SELL_TRANSACTION_AMOUNT = 100000000 * (10**18); // 100 Million (0.1%)
    uint256 public MAX_WALLET_AMOUNT = 1000000000 * (10**18); // 1 Billion (1%)

    uint256 public constant ETH_REWARDS_FEE = 10;
    uint256 public constant LIQUIDITY_FEE = 5;
    uint256 public constant TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
    
    // sells have fees of 10 and 5 (10 * 1.3 and 5 * 1.3)
    uint256 public SELL_FEE_INCREASE_FACTOR = 130;

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

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

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

    function activateTrading() public onlyOwner {
        require(!tradingEnabled, "ShibaETH: 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 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("ShibaETH", "ShibaETH") {
        assert(TOTAL_FEES == 15);

        dividendTracker = new ShibaETHDividendTracker();

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

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

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

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

    receive() external payable {}

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

        ShibaETHDividendTracker newDividendTracker = ShibaETHDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "ShibaETH: The new dividend tracker must be owned by the ShibaETH 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), "ShibaETH: The router already has that address");
        emit UpdatedUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account) public onlyOwner {
        require(!_isExcludedFromFees[account], "ShibaETH: Account is already excluded from fees");
        _isExcludedFromFees[account] = true;
    }
    
    function includeForFees(address account) public onlyOwner {
        require(_isExcludedFromFees[account], "ShibaETH: Account is already included for fees");
        _isExcludedFromFees[account] = false;
    }
    
    function excludeFromDividends(address account) public onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }
    
    function setMaxBuyTransactionAmount(uint256 amount) external onlyOwner {
        MAX_BUY_TRANSACTION_AMOUNT = amount * (10**18);
    }
    
    function setMaxSellTransactionAmount(uint256 amount) external onlyOwner {
        MAX_SELL_TRANSACTION_AMOUNT = amount * (10**18);   
    }
    
    function setMaxWalletAmount(uint256 amount) external onlyOwner {
        MAX_WALLET_AMOUNT = amount * (10**18);
    }
    
    function setSellFeeIncreaseFactor(uint256 multiplier) external onlyOwner {
  	    require(SELL_FEE_INCREASE_FACTOR >= 100 && SELL_FEE_INCREASE_FACTOR <= 200, "ShibaETH: Sell transaction multipler must be between 100 (1x) and 200 (2x)");
  	    SELL_FEE_INCREASE_FACTOR = multiplier;
  	}

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "ShibaETH: 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], "ShibaETH: Account is already allowed to transfer before trading is enabled");
        canTransferBeforeTradingIsEnabled[account] = true;
    }

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

    function updateLiquidationThreshold(uint256 newValue) external onlyOwner {
        require(newValue != liquidateTokensAtAmount, "ShibaETH: 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], "ShibaETH: 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 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= MAX_WALLET_AMOUNT,
                "Exceeds MAX_WALLET_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);
            
            // if sell, multiply by 1.3
            if(automatedMarketMakerPairs[to]) {
                fees = fees.div(100).mul(SELL_FEE_INCREASE_FACTOR);
            }
            
            amount = amount.sub(fees);

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

        super._transfer(from, to, amount);

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

        if (!liquidating) {
            uint256 gas = gasForProcessing;

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

            }
        }
    }

    function 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
            address(this),
            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 ShibaETHDividendTracker 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("ShibaETH_Dividend_Tracker", "ShibaETH_Dividend_Tracker") {
        claimWait = 3600;
    }

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

    function withdrawDividend() public pure override {
        require(false, "ShibaETH_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main ShibaETH 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, "ShibaETH_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, "ShibaETH_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "ShibaETH_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":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_BUY_TRANSACTION_AMOUNT","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":"MAX_WALLET_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_FEE_INCREASE_FACTOR","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":[{"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 ShibaETHDividendTracker","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"}],"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":"account","type":"address"}],"name":"includeForFees","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"multiplier","type":"uint256"}],"name":"setSellFeeIncreaseFactor","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":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600880546001600160a01b03191661dead1790556b019d971e4fe8401e740000006009556a52b7d2dcc80cd2e4000000600a556b033b2e3c9fd0803ce8000000600b556082600c55620249f0600d5569152d02c7e14af6800000600e553480156200006e57600080fd5b506040805180820182526008808252670a6d0d2c4c28aa8960c31b602080840182815285518087019096529285528401528151919291620000b29160039162000905565b508051620000c890600490602084019062000905565b5050506000620000dd6200052660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001396005600a620009e2565b600f146200015757634e487b7160e01b600052600160045260246000fd5b604051620001659062000994565b604051809103906000f08015801562000182573d6000803e3d6000fd5b50600760006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fe57600080fd5b505afa15801562000213573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002399190620009b9565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028257600080fd5b505afa15801562000297573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bd9190620009b9565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200030657600080fd5b505af11580156200031b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003419190620009b9565b600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b03191660805290506200037d8160016200052a565b60075460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003c457600080fd5b505af1158015620003d9573d6000803e3d6000fd5b505060075460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200042557600080fd5b505af11580156200043a573d6000803e3d6000fd5b505060075460085460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156200048857600080fd5b505af11580156200049d573d6000803e3d6000fd5b50505050620004b2306200069c60201b60201c565b600160116000620004cb6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200051e6200050a6005546001600160a01b031690565b6c01431e0fae6d7217caa00000006200079f565b505062000a44565b3390565b6001600160a01b03821660009081526012602052604090205460ff1615158115151415620005d05760405162461bcd60e51b815260206004820152604260248201527f53686962614554483a204175746f6d61746564206d61726b6574206d616b657260448201527f207061697220697320616c72656164792073657420746f20746861742076616c606482015261756560f01b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601260205260409020805460ff19168215801591909117909155620006605760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200064657600080fd5b505af11580156200065b573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620006f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620005c7565b6001600160a01b03811660009081526010602052604090205460ff16156200077b5760405162461bcd60e51b815260206004820152602f60248201527f53686962614554483a204163636f756e7420697320616c72656164792065786360448201526e6c756465642066726f6d206665657360881b6064820152608401620005c7565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6001600160a01b038216620007f75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005c7565b62000813816002546200089b60201b62001eeb1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200084691839062001eeb6200089b821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620008aa8385620009e2565b905083811015620008fe5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005c7565b9392505050565b828054620009139062000a07565b90600052602060002090601f01602090048101928262000937576000855562000982565b82601f106200095257805160ff191683800117855562000982565b8280016001018555821562000982579182015b828111156200098257825182559160200191906001019062000965565b5062000990929150620009a2565b5090565b61236c8062003dc983390190565b5b80821115620009905760008155600101620009a3565b600060208284031215620009cb578081fd5b81516001600160a01b0381168114620008fe578182fd5b6000821982111562000a0257634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000a1c57607f821691505b6020821081141562000a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61335f62000a6a600039600081816105c101526118ed015261335f6000f3fe6080604052600436106103855760003560e01c806376fc332f116101d1578063a457c2d711610102578063dd62ed3e116100a0578063f27fd2541161006f578063f27fd25414610a95578063f2fde38b14610ab5578063f5b01e1514610ad5578063fd5db2af14610af557600080fd5b8063dd62ed3e146109fa578063e57f14e114610a40578063e7841ec014610a60578063e98030c714610a7557600080fd5b8063ad56c13c116100dc578063ad56c13c1461092f578063b62496f514610994578063c816e4b6146109c4578063d3b5be1a146109da57600080fd5b8063a457c2d7146108cf578063a8b9d240146108ef578063a9059cbb1461090f57600080fd5b806392ca1e8d1161016f5780639a7a23d6116101495780639a7a23d6146108645780639c1b8af5146108845780639d55d16f1461089a578063a26579ad146108ba57600080fd5b806392ca1e8d1461081a57806395d89b411461082f57806396768b531461084457600080fd5b80638649847c116101ab5780638649847c1461079c578063871c128d146107bc57806388bdd9be146107dc5780638da5cb5b146107fc57600080fd5b806376fc332f146107365780637e0e155c146107565780637e0ec1d11461078657600080fd5b8063313ce567116102b65780634fbee193116102545780636843cd84116102235780636843cd84146106ab578063700bb191146106cb57806370a08231146106eb578063715018a61461072157600080fd5b80634fbee1931461062857806353ab431b1461066157806364b0f6531461067657806365b8dbc01461068b57600080fd5b806349bd5a5e1161029057806349bd5a5e146105af5780634ada218b146105e35780634de18a9f146105fd5780634e71d92d1461061357600080fd5b8063313ce5671461055357806331e79db01461056f578063395093511461058f57600080fd5b806323b872dd116103235780632a8407b4116102fd5780632a8407b4146104f45780632c1f5216146105095780632d17f2691461052957806330bb4cff1461053e57600080fd5b806323b872dd1461049457806327a14fc2146104b457806327c8f835146104d457600080fd5b80630f3e80d61161035f5780630f3e80d61461040357806316216e5f146104275780631694505e1461044757806318160ddd1461047f57600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630bd05b69146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610b0b565b6040516103b39190612ffe565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612f5a565b610b9d565b60405190151581526020016103b3565b3480156103f857600080fd5b50610401610bb4565b005b34801561040f57600080fd5b50610419600c5481565b6040519081526020016103b3565b34801561043357600080fd5b50610401610442366004612fa1565b610c55565b34801561045357600080fd5b50600654610467906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561048b57600080fd5b50600254610419565b3480156104a057600080fd5b506103dc6104af366004612e84565b610c97565b3480156104c057600080fd5b506104016104cf366004612fa1565b610d00565b3480156104e057600080fd5b50600854610467906001600160a01b031681565b34801561050057600080fd5b50610419610d42565b34801561051557600080fd5b50600754610467906001600160a01b031681565b34801561053557600080fd5b50610419600a81565b34801561054a57600080fd5b50610419610dc4565b34801561055f57600080fd5b50604051601281526020016103b3565b34801561057b57600080fd5b5061040161058a366004612e14565b610e09565b34801561059b57600080fd5b506103dc6105aa366004612f5a565b610e96565b3480156105bb57600080fd5b506104677f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ef57600080fd5b50600f546103dc9060ff1681565b34801561060957600080fd5b5061041960095481565b34801561061f57600080fd5b50610401610ecc565b34801561063457600080fd5b506103dc610643366004612e14565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561066d57600080fd5b50610419600581565b34801561068257600080fd5b50610419610f53565b34801561069757600080fd5b506104016106a6366004612e14565b610f98565b3480156106b757600080fd5b506104196106c6366004612e14565b611093565b3480156106d757600080fd5b506104016106e6366004612fa1565b611112565b3480156106f757600080fd5b50610419610706366004612e14565b6001600160a01b031660009081526020819052604090205490565b34801561072d57600080fd5b506104016111f3565b34801561074257600080fd5b50610401610751366004612fa1565b611267565b34801561076257600080fd5b506103dc610771366004612e14565b60116020526000908152604090205460ff1681565b34801561079257600080fd5b50610419600b5481565b3480156107a857600080fd5b506104016107b7366004612e14565b611331565b3480156107c857600080fd5b506104016107d7366004612fa1565b611421565b3480156107e857600080fd5b506104016107f7366004612e14565b6114a0565b34801561080857600080fd5b506005546001600160a01b0316610467565b34801561082657600080fd5b506104196117d9565b34801561083b57600080fd5b506103a66117e8565b34801561085057600080fd5b5061040161085f366004612e14565b6117f7565b34801561087057600080fd5b5061040161087f366004612ec4565b6118c1565b34801561089057600080fd5b50610419600d5481565b3480156108a657600080fd5b506104016108b5366004612fa1565b6119b5565b3480156108c657600080fd5b50610419611a10565b3480156108db57600080fd5b506103dc6108ea366004612f5a565b611a55565b3480156108fb57600080fd5b5061041961090a366004612e14565b611aa4565b34801561091b57600080fd5b506103dc61092a366004612f5a565b611ad7565b34801561093b57600080fd5b5061094f61094a366004612e14565b611ae4565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103b3565b3480156109a057600080fd5b506103dc6109af366004612e14565b60126020526000908152604090205460ff1681565b3480156109d057600080fd5b50610419600e5481565b3480156109e657600080fd5b506104016109f5366004612fa1565b611b8e565b348015610a0657600080fd5b50610419610a15366004612e4c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4c57600080fd5b50610401610a5b366004612e14565b611c0d565b348015610a6c57600080fd5b50610419611cdc565b348015610a8157600080fd5b50610401610a90366004612fa1565b611d21565b348015610aa157600080fd5b5061094f610ab0366004612fa1565b611d7c565b348015610ac157600080fd5b50610401610ad0366004612e14565b611dbe565b348015610ae157600080fd5b50610401610af0366004612fa1565b611ea9565b348015610b0157600080fd5b50610419600a5481565b606060038054610b1a90613242565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690613242565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610baa338484611f51565b5060015b92915050565b6005546001600160a01b03163314610be75760405162461bcd60e51b8152600401610bde906130ea565b60405180910390fd5b600f5460ff1615610c465760405162461bcd60e51b8152602060048201526024808201527f53686962614554483a2054726164696e6720697320616c726561647920656e61604482015263189b195960e21b6064820152608401610bde565b600f805460ff19166001179055565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b8152600401610bde906130ea565b610c9181670de0b6b3a764000061320c565b600a5550565b6000610ca4848484612076565b610cf68433610cf1856040518060600160405280602881526020016132dd602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906126ca565b611f51565b5060019392505050565b6005546001600160a01b03163314610d2a5760405162461bcd60e51b8152600401610bde906130ea565b610d3c81670de0b6b3a764000061320c565b600b5550565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610d8757600080fd5b505afa158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190612fb9565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610d8757600080fd5b6005546001600160a01b03163314610e335760405162461bcd60e51b8152600401610bde906130ea565b60075460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e7b57600080fd5b505af1158015610e8f573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610baa918590610cf19086611eeb565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610f1857600080fd5b505af1158015610f2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f509190612f85565b50565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610d8757600080fd5b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610bde906130ea565b6006546001600160a01b03828116911614156110365760405162461bcd60e51b815260206004820152602d60248201527f53686962614554483a2054686520726f7574657220616c72656164792068617360448201526c2074686174206164647265737360981b6064820152608401610bde565b6006546040516001600160a01b03918216918316907fcd2acde3ae4de754da8074077404027fae40be67d89638ee1ceca2427883da7d90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b1580156110da57600080fd5b505afa1580156110ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bae9190612fb9565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561116057600080fd5b505af1158015611174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111989190612fd1565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b0316331461121d5760405162461bcd60e51b8152600401610bde906130ea565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146112915760405162461bcd60e51b8152600401610bde906130ea565b6064600c54101580156112a7575060c8600c5411155b61132c5760405162461bcd60e51b815260206004820152604a60248201527f53686962614554483a2053656c6c207472616e73616374696f6e206d756c746960448201527f706c6572206d757374206265206265747765656e20313030202831782920616e6064820152696420323030202832782960b01b608482015260a401610bde565b600c55565b6005546001600160a01b0316331461135b5760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b03811660009081526011602052604090205460ff16156113fd5760405162461bcd60e51b815260206004820152604a60248201527f53686962614554483a204163636f756e7420697320616c726561647920616c6c60448201527f6f77656420746f207472616e73666572206265666f72652074726164696e67206064820152691a5cc8195b98589b195960b21b608482015260a401610bde565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6005546001600160a01b0316331461144b5760405162461bcd60e51b8152600401610bde906130ea565b600d5481141561146d5760405162461bcd60e51b8152600401610bde90613094565b600d5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600d55565b6005546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610bde906130ea565b6007546001600160a01b038281169116141561154e5760405162461bcd60e51b815260206004820152603760248201527f53686962614554483a20546865206469766964656e6420747261636b6572206160448201527f6c726561647920686173207468617420616464726573730000000000000000006064820152608401610bde565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561159657600080fd5b505afa1580156115aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce9190612e30565b6001600160a01b0316146116625760405162461bcd60e51b815260206004820152604f60248201527f53686962614554483a20546865206e6577206469766964656e6420747261636b60448201527f6572206d757374206265206f776e65642062792074686520536869626145544860648201526e081d1bdad95b8818dbdb9d1c9858dd608a1b608482015260a401610bde565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b1580156116a457600080fd5b505af11580156116b8573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561170357600080fd5b505af1158015611717573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561176257600080fd5b505af1158015611776573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f1ae8fd4f008d9dd6f83c1182b3f30d87aed4ac15a15833ad625bbb740463e3c990600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6117e56005600a6131d4565b81565b606060048054610b1a90613242565b6005546001600160a01b031633146118215760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b03811660009081526010602052604090205460ff166118a05760405162461bcd60e51b815260206004820152602e60248201527f53686962614554483a204163636f756e7420697320616c726561647920696e6360448201526d6c7564656420666f72206665657360901b6064820152608401610bde565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6005546001600160a01b031633146118eb5760405162461bcd60e51b8152600401610bde906130ea565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156119a75760405162461bcd60e51b815260206004820152604b60248201527f53686962614554483a2054686520556e697377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610bde565b6119b18282612704565b5050565b6005546001600160a01b031633146119df5760405162461bcd60e51b8152600401610bde906130ea565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f90602401610e61565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610d8757600080fd5b6000610baa3384610cf185604051806060016040528060258152602001613305602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906126ca565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016110c2565b6000610baa338484612076565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b158015611b3b57600080fd5b505afa158015611b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b739190612ef1565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611bb85760405162461bcd60e51b8152600401610bde906130ea565b600e54811415611bda5760405162461bcd60e51b8152600401610bde90613094565b600e5460405182907fcdadd717dc9ee3550a289071d1af75e229726888d51e3a31c9e3dfc693d4852b90600090a3600e55565b6005546001600160a01b03163314611c375760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b03811660009081526010602052604090205460ff1615611cb85760405162461bcd60e51b815260206004820152602f60248201527f53686962614554483a204163636f756e7420697320616c72656164792065786360448201526e6c756465642066726f6d206665657360881b6064820152608401610bde565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610d8757600080fd5b6005546001600160a01b03163314611d4b5760405162461bcd60e51b8152600401610bde906130ea565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610e61565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611b22565b6005546001600160a01b03163314611de85760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b038116611e4d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bde565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611ed35760405162461bcd60e51b8152600401610bde906130ea565b611ee581670de0b6b3a764000061320c565b60095550565b600080611ef883856131d4565b905083811015611f4a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bde565b9392505050565b6001600160a01b038316611fb35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bde565b6001600160a01b0382166120145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bde565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661209c5760405162461bcd60e51b8152600401610bde9061311f565b6001600160a01b0382166120c25760405162461bcd60e51b8152600401610bde90613051565b600f5460ff1680612166576001600160a01b03841660009081526011602052604090205460ff166121665760405162461bcd60e51b815260206004820152604260248201527f53686962614554483a2054686973206163636f756e742063616e6e6f7420736560448201527f6e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c606482015261195960f21b608482015260a401610bde565b8161217d576121778484600061286d565b50505050565b600654600160a01b900460ff161580156121945750805b80156121b857506001600160a01b03831660009081526012602052604090205460ff165b80156121d257506006546001600160a01b03858116911614155b80156121f757506001600160a01b03831660009081526010602052604090205460ff16155b156122ea57600a548211156122745760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610bde565b6001600160a01b038316600090815260208190526040902054600b5461229a84836131d4565b11156122e85760405162461bcd60e51b815260206004820152601a60248201527f45786365656473204d41585f57414c4c45545f414d4f554e542e0000000000006044820152606401610bde565b505b30600090815260208190526040902054600e5481101582801561230a5750805b80156123205750600654600160a01b900460ff16155b801561234557506001600160a01b03861660009081526012602052604090205460ff16155b801561235a57506001600160a01b0386163014155b801561236f57506001600160a01b0385163014155b156123dd576006805460ff60a01b1916600160a01b17905560006123a96123986005600a6131d4565b6123a3856005612976565b906129f5565b90506123b481612a37565b306000908152602081905260409020546123cd81612abe565b50506006805460ff60a01b191690555b60008380156123f65750600654600160a01b900460ff16155b6001600160a01b03881660009081526010602052604090205490915060ff168061243857506001600160a01b03861660009081526010602052604090205460ff165b15612441575060005b80156124bb5760006124696124586005600a6131d4565b6124638860646129f5565b90612976565b6001600160a01b03881660009081526012602052604090205490915060ff16156124a257600c5461249f906124638360646129f5565b90505b6124ac8682612b66565b95506124b988308361286d565b505b6124c687878761286d565b6007546001600160a01b031663e30443bc886124f7816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561253d57600080fd5b505af192505050801561254e575060015b506007546001600160a01b031663e30443bc87612580816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156125c657600080fd5b505af19250505080156125d7575060015b50600654600160a01b900460ff166126c157600d546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561263557600080fd5b505af1925050508015612665575060408051601f3d908101601f1916820190925261266291810190612fd1565b60015b61266e576126bf565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156126ee5760405162461bcd60e51b8152600401610bde9190612ffe565b5060006126fb848661322b565b95945050505050565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156127a45760405162461bcd60e51b815260206004820152604260248201527f53686962614554483a204175746f6d61746564206d61726b6574206d616b657260448201527f207061697220697320616c72656164792073657420746f20746861742076616c606482015261756560f01b608482015260a401610bde565b6001600160a01b0382166000908152601260205260409020805460ff191682158015919091179091556128315760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561281857600080fd5b505af115801561282c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166128935760405162461bcd60e51b8152600401610bde9061311f565b6001600160a01b0382166128b95760405162461bcd60e51b8152600401610bde90613051565b6128f6816040518060600160405280602681526020016132b7602691396001600160a01b03861660009081526020819052604090205491906126ca565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546129259082611eeb565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612069565b60008261298557506000610bae565b6000612991838561320c565b90508261299e85836131ec565b14611f4a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610bde565b6000611f4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ba8565b6000612a448260026129f5565b90506000612a528383612b66565b905047612a5e83612bd6565b6000612a6a4783612b66565b9050612a768382612d5b565b60408051858152602081018390529081018490527ffb82c2300f807cc60e7abf909b045a028ef3b1807785a6b675eb0fa21e461fa19060600160405180910390a15050505050565b612ac781612bd6565b60075460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114612b18576040519150601f19603f3d011682016040523d82523d6000602084013e612b1d565b606091505b505090508015612b615760408051848152602081018490527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca910160405180910390a15b505050565b6000611f4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126ca565b60008183612bc95760405162461bcd60e51b8152600401610bde9190612ffe565b5060006126fb84866131ec565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612c1957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c6d57600080fd5b505afa158015612c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ca59190612e30565b81600181518110612cc657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612cec9130911684611f51565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612d25908590600090869030904290600401613164565b600060405180830381600087803b158015612d3f57600080fd5b505af1158015612d53573d6000803e3d6000fd5b505050505050565b600654612d739030906001600160a01b031684611f51565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612ddb57600080fd5b505af1158015612def573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e8f9190612fd1565b600060208284031215612e25578081fd5b8135611f4a81613293565b600060208284031215612e41578081fd5b8151611f4a81613293565b60008060408385031215612e5e578081fd5b8235612e6981613293565b91506020830135612e7981613293565b809150509250929050565b600080600060608486031215612e98578081fd5b8335612ea381613293565b92506020840135612eb381613293565b929592945050506040919091013590565b60008060408385031215612ed6578182fd5b8235612ee181613293565b91506020830135612e79816132a8565b600080600080600080600080610100898b031215612f0d578384fd5b8851612f1881613293565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612f6c578182fd5b8235612f7781613293565b946020939093013593505050565b600060208284031215612f96578081fd5b8151611f4a816132a8565b600060208284031215612fb2578081fd5b5035919050565b600060208284031215612fca578081fd5b5051919050565b600080600060608486031215612fe5578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561302a5785810183015185820160400152820161300e565b8181111561303b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526036908201527f53686962614554483a2043616e6e6f742075706461746520676173466f7250726040820152756f63657373696e6720746f2073616d652076616c756560501b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156131b35784516001600160a01b03168352938301939183019160010161318e565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156131e7576131e761327d565b500190565b60008261320757634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156132265761322661327d565b500290565b60008282101561323d5761323d61327d565b500390565b600181811c9082168061325657607f821691505b6020821081141561327757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f5057600080fd5b8015158114610f5057600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122042b17decc34f941e5dfc8f22e39da164d981f39ce69b7728dbe6a780b54e4c1e64736f6c6343000804003360806040523480156200001157600080fd5b5060408051808201825260198082527f53686962614554485f4469766964656e645f547261636b657200000000000000602080840182815285518087019096529285528401528151919291839183916200006e91600391620000e0565b50805162000084906004906020840190620000e0565b5050610bb86008555050600a80546001600160a01b0319163390811790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e10601255620001c3565b828054620000ee9062000186565b90600052602060002090601f0160209004810192826200011257600085556200015d565b82601f106200012d57805160ff19168380011785556200015d565b828001600101855582156200015d579182015b828111156200015d57825182559160200191906001019062000140565b506200016b9291506200016f565b5090565b5b808211156200016b576000815560010162000170565b600181811c908216806200019b57607f821691505b60208210811415620001bd57634e487b7160e01b600052602260045260246000fd5b50919050565b61219980620001d36000396000f3fe60806040526004361061021e5760003560e01c806385a6b3ae11610123578063bc4c4b37116100ab578063e98030c71161006f578063e98030c714610695578063f2fde38b146106b5578063f39b5020146106d5578063fbcbc0f1146106eb578063ffb2c4791461070b57600080fd5b8063bc4c4b37146105dc578063c38f9cad146105fc578063dd62ed3e1461061a578063e30443bc14610660578063e7841ec01461068057600080fd5b80639d55d16f116100f25780639d55d16f14610526578063a457c2d714610546578063a8b9d24014610566578063a9059cbb14610586578063aafd847a146105a657600080fd5b806385a6b3ae146104b35780638da5cb5b146104c957806391b89fba146104f157806395d89b411461051157600080fd5b8063313ce567116101a65780635183d6fd116101755780635183d6fd146103d85780636a4740021461043d5780636f2789ec1461045257806370a0823114610468578063715018a61461049e57600080fd5b8063313ce5671461034c57806331e79db01461036857806339509351146103885780634e7b827f146103a857600080fd5b806318160ddd116101ed57806318160ddd146102b4578063226cfa3d146102c957806323b872dd146102f657806327ce0147146103165780633009a6091461033657600080fd5b806303c833021461023257806306fdde031461023a578063095ea7b31461026557806309bbedde1461029557600080fd5b3661022d5761022b610746565b005b600080fd5b61022b610746565b34801561024657600080fd5b5061024f6107d9565b60405161025c9190611efa565b60405180910390f35b34801561027157600080fd5b50610285610280366004611e32565b61086b565b604051901515815260200161025c565b3480156102a157600080fd5b50600b545b60405190815260200161025c565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102a66102e4366004611dbe565b60116020526000908152604090205481565b34801561030257600080fd5b50610285610311366004611e8a565b610882565b34801561032257600080fd5b506102a6610331366004611dbe565b6108eb565b34801561034257600080fd5b506102a6600f5481565b34801561035857600080fd5b506040516012815260200161025c565b34801561037457600080fd5b5061022b610383366004611dbe565b610947565b34801561039457600080fd5b506102856103a3366004611e32565b610a77565b3480156103b457600080fd5b506102856103c3366004611dbe565b60106020526000908152604090205460ff1681565b3480156103e457600080fd5b506103f86103f3366004611ee2565b610aad565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161025c565b34801561044957600080fd5b5061022b610c1f565b34801561045e57600080fd5b506102a660125481565b34801561047457600080fd5b506102a6610483366004611dbe565b6001600160a01b031660009081526020819052604090205490565b3480156104aa57600080fd5b5061022b610cc9565b3480156104bf57600080fd5b506102a660095481565b3480156104d557600080fd5b50600a546040516001600160a01b03909116815260200161025c565b3480156104fd57600080fd5b506102a661050c366004611dbe565b610d3d565b34801561051d57600080fd5b5061024f610d48565b34801561053257600080fd5b5061022b610541366004611ee2565b610d57565b34801561055257600080fd5b50610285610561366004611e32565b610e3a565b34801561057257600080fd5b506102a6610581366004611dbe565b610e89565b34801561059257600080fd5b506102856105a1366004611e32565b610eb5565b3480156105b257600080fd5b506102a66105c1366004611dbe565b6001600160a01b031660009081526007602052604090205490565b3480156105e857600080fd5b506102856105f7366004611df6565b610ec2565b34801561060857600080fd5b506102a6692a5a058fc295ed00000081565b34801561062657600080fd5b506102a6610635366004611e5d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561066c57600080fd5b5061022b61067b366004611e32565b610f70565b34801561068c57600080fd5b50600f546102a6565b3480156106a157600080fd5b5061022b6106b0366004611ee2565b6110e6565b3480156106c157600080fd5b5061022b6106d0366004611dbe565b61125b565b3480156106e157600080fd5b506102a660085481565b3480156106f757600080fd5b506103f8610706366004611dbe565b611346565b34801561071757600080fd5b5061072b610726366004611ee2565b6114be565b6040805193845260208401929092529082015260600161025c565b600061075160025490565b1161075b57600080fd5b34156107d75761078e61076d60025490565b61077b34600160801b6115e7565b6107859190611fdb565b6005549061166d565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a26009546107d3903461166d565b6009555b565b6060600380546107e890612070565b80601f016020809104026020016040519081016040528092919081815260200182805461081490612070565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b60006108783384846116cc565b5060015b92915050565b600061088f8484846117f0565b6108e184336108dc85604051806060016040528060288152602001612117602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611850565b6116cc565b5060019392505050565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b9261093d92610938926109329161092d91906115e7565b61188a565b9061189a565b6118d8565b61087c9190611fdb565b600a546001600160a01b0316331461097a5760405162461bcd60e51b815260040161097190611f4d565b60405180910390fd5b6001600160a01b03811660009081526010602052604090205460ff16156109a057600080fd5b6001600160a01b0381166000908152601060205260408120805460ff191660011790556109ce9082906118eb565b60405163131836e760e21b8152600b60048201526001600160a01b0382166024820152739d7644a9b5bb438910c8b3fa35ec7e9651fc771690634c60db9c9060440160006040518083038186803b158015610a2857600080fd5b505af4158015610a3c573d6000803e3d6000fd5b50506040516001600160a01b03841692507fbc358c1a6bbec2cf1d21c2fb5a564b55d7828e32fb5da64adf3c5479264650109150600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108789185906108dc908661166d565b600080600080600080600080600b739d7644a9b5bb438910c8b3fa35ec7e9651fc771663deb3d89690916040518263ffffffff1660e01b8152600401610af591815260200190565b60206040518083038186803b158015610b0d57600080fd5b505af4158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b459190611eca565b8910610b6a575060009650600019955085945086935083925082915081905080610c14565b6040516368d54f3f60e11b8152600b6004820152602481018a9052600090739d7644a9b5bb438910c8b3fa35ec7e9651fc77169063d1aa9e7e9060440160206040518083038186803b158015610bbf57600080fd5b505af4158015610bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf79190611dda565b9050610c0281611346565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606d60248201527f53686962614554485f4469766964656e645f547261636b65723a20776974686460448201527f7261774469766964656e642064697361626c65642e205573652074686520276360648201527f6c61696d272066756e6374696f6e206f6e20746865206d61696e20536869626160848201526c22aa241031b7b73a3930b1ba1760991b60a482015260c401610971565b600a546001600160a01b03163314610cf35760405162461bcd60e51b815260040161097190611f4d565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600061087c82610e89565b6060600480546107e890612070565b600a546001600160a01b03163314610d815760405162461bcd60e51b815260040161097190611f4d565b600854811415610e075760405162461bcd60e51b815260206004820152604560248201527f53686962614554485f4469766964656e645f547261636b65723a2043616e6e6f60448201527f742075706461746520676173466f725472616e7366657220746f2073616d652060648201526476616c756560d81b608482015260a401610971565b60085460405182907f5e2963a3d7c88b344b101641f89a2f7da9734fc777ed11ad0097b2775a9e9d1790600090a3600855565b600061087833846108dc8560405180606001604052806025815260200161213f602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611850565b6001600160a01b03811660009081526007602052604081205461087c90610eaf846108eb565b9061194a565b60006108783384846117f0565b600a546000906001600160a01b03163314610eef5760405162461bcd60e51b815260040161097190611f4d565b6000610efa8461198c565b90508015610f66576001600160a01b038416600081815260116020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610f549085815260200190565b60405180910390a3600191505061087c565b5060009392505050565b600a546001600160a01b03163314610f9a5760405162461bcd60e51b815260040161097190611f4d565b6001600160a01b03821660009081526010602052604090205460ff1615610fbf575050565b692a5a058fc295ed000000811061105857610fda82826118eb565b604051632f0ad01760e21b8152600b60048201526001600160a01b038316602482015260448101829052739d7644a9b5bb438910c8b3fa35ec7e9651fc77169063bc2b405c9060640160006040518083038186803b15801561103b57600080fd5b505af415801561104f573d6000803e3d6000fd5b505050506110d6565b6110638260006118eb565b60405163131836e760e21b8152600b60048201526001600160a01b0383166024820152739d7644a9b5bb438910c8b3fa35ec7e9651fc771690634c60db9c9060440160006040518083038186803b1580156110bd57600080fd5b505af41580156110d1573d6000803e3d6000fd5b505050505b6110e1826001610ec2565b505050565b600a546001600160a01b031633146111105760405162461bcd60e51b815260040161097190611f4d565b610e1081101580156111255750620151808111155b6111ae5760405162461bcd60e51b815260206004820152604e60248201527f53686962614554485f4469766964656e645f547261636b65723a20636c61696d60448201527f57616974206d757374206265207570646174656420746f206265747765656e2060648201526d3120616e6420323420686f75727360901b608482015260a401610971565b601254811415611228576040805162461bcd60e51b81526020600482015260248101919091527f53686962614554485f4469766964656e645f547261636b65723a2043616e6e6f60448201527f742075706461746520636c61696d5761697420746f2073616d652076616c75656064820152608401610971565b60125460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601255565b600a546001600160a01b031633146112855760405162461bcd60e51b815260040161097190611f4d565b6001600160a01b0381166112ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610971565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516317e142d160e01b8152600b60048201526001600160a01b03821660248201528190600090819081908190819081908190739d7644a9b5bb438910c8b3fa35ec7e9651fc7716906317e142d19060440160206040518083038186803b1580156113b157600080fd5b505af41580156113c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e99190611eca565b965060001995506000871261144b57600f5487111561141757600f54611410908890611acf565b955061144b565b600f54600b546000911061142c57600061143b565b600f54600b5461143b9161194a565b9050611447888261189a565b9650505b61145488610e89565b945061145f886108eb565b6001600160a01b038916600090815260116020526040902054909450925082611489576000611497565b60125461149790849061166d565b91504282116114a75760006114b1565b6114b1824261194a565b9050919395975091939597565b600b5460009081908190806114de575050600f54600092508291506115e0565b600f546000805a90506000805b89841080156114f957508582105b156115cf5784611508816120ab565b600b549096508610905061151b57600094505b6000600b600001868154811061154157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316808352601190915260409091205490915061157290611b0c565b1561159557611582816001610ec2565b156115955781611591816120ab565b9250505b8261159f816120ab565b93505060005a9050808511156115c6576115c36115bc868361194a565b879061166d565b95505b93506114eb9050565b600f85905590975095509193505050505b9193909250565b6000826115f65750600061087c565b60006116028385611ffb565b90508261160f8583611fdb565b146116665760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610971565b9392505050565b60008061167a8385611fc3565b9050838110156116665760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610971565b6001600160a01b03831661172e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610971565b6001600160a01b03821661178f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610971565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602f60248201527f53686962614554485f4469766964656e645f547261636b65723a204e6f20747260448201526e185b9cd9995c9cc8185b1b1bddd959608a1b6064820152608401610971565b600081848411156118745760405162461bcd60e51b81526004016109719190611efa565b5060006118818486612059565b95945050505050565b6000818181121561087c57600080fd5b6000806118a78385611f82565b9050600083121580156118ba5750838112155b806118cf57506000831280156118cf57508381125b61166657600080fd5b6000808212156118e757600080fd5b5090565b6001600160a01b0382166000908152602081905260409020548082111561192a576000611918838361194a565b90506119248482611b33565b50505050565b808210156110e157600061193e828461194a565b90506119248482611b97565b600061166683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611850565b60008061199883610e89565b90508015611ac6576001600160a01b0383166000908152600760205260409020546119c3908261166d565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d90611a129084815260200190565b60405180910390a26008546040516000916001600160a01b03861691849084818181858888f193505050503d8060008114611a69576040519150601f19603f3d011682016040523d82523d6000602084013e611a6e565b606091505b5050905080611abf576001600160a01b038416600090815260076020526040902054611a9a908361194a565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b600080611adc838561201a565b905060008312158015611aef5750838113155b806118cf57506000831280156118cf575083811361166657600080fd5b600042821115611b1e57506000919050565b601254611b2b428461194a565b101592915050565b611b3d8282611bdb565b611b77611b5861092d836005546115e790919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611acf565b6001600160a01b0390921660009081526006602052604090209190915550565b611ba18282611cba565b611b77611bbc61092d836005546115e790919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549061189a565b6001600160a01b038216611c315760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610971565b600254611c3e908261166d565b6002556001600160a01b038216600090815260208190526040902054611c64908261166d565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611d1a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610971565b611d57816040518060600160405280602281526020016120f5602291396001600160a01b0385166000908152602081905260409020549190611850565b6001600160a01b038316600090815260208190526040902055600254611d7d908261194a565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611cae565b600060208284031215611dcf578081fd5b8135611666816120dc565b600060208284031215611deb578081fd5b8151611666816120dc565b60008060408385031215611e08578081fd5b8235611e13816120dc565b915060208301358015158114611e27578182fd5b809150509250929050565b60008060408385031215611e44578182fd5b8235611e4f816120dc565b946020939093013593505050565b60008060408385031215611e6f578182fd5b8235611e7a816120dc565b91506020830135611e27816120dc565b600080600060608486031215611e9e578081fd5b8335611ea9816120dc565b92506020840135611eb9816120dc565b929592945050506040919091013590565b600060208284031215611edb578081fd5b5051919050565b600060208284031215611ef3578081fd5b5035919050565b6000602080835283518082850152825b81811015611f2657858101830151858201604001528201611f0a565b81811115611f375783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b0384900385131615611fa457611fa46120c6565b600160ff1b8390038412811615611fbd57611fbd6120c6565b50500190565b60008219821115611fd657611fd66120c6565b500190565b600082611ff657634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612015576120156120c6565b500290565b60008083128015600160ff1b850184121615612038576120386120c6565b6001600160ff1b0384018313811615612053576120536120c6565b50500390565b60008282101561206b5761206b6120c6565b500390565b600181811c9082168061208457607f821691505b602082108114156120a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120bf576120bf6120c6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146120f157600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba5af829b91cd24b6f183167128dc4056b609ee67eb3e7ad95a505244a2ca28364736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103855760003560e01c806376fc332f116101d1578063a457c2d711610102578063dd62ed3e116100a0578063f27fd2541161006f578063f27fd25414610a95578063f2fde38b14610ab5578063f5b01e1514610ad5578063fd5db2af14610af557600080fd5b8063dd62ed3e146109fa578063e57f14e114610a40578063e7841ec014610a60578063e98030c714610a7557600080fd5b8063ad56c13c116100dc578063ad56c13c1461092f578063b62496f514610994578063c816e4b6146109c4578063d3b5be1a146109da57600080fd5b8063a457c2d7146108cf578063a8b9d240146108ef578063a9059cbb1461090f57600080fd5b806392ca1e8d1161016f5780639a7a23d6116101495780639a7a23d6146108645780639c1b8af5146108845780639d55d16f1461089a578063a26579ad146108ba57600080fd5b806392ca1e8d1461081a57806395d89b411461082f57806396768b531461084457600080fd5b80638649847c116101ab5780638649847c1461079c578063871c128d146107bc57806388bdd9be146107dc5780638da5cb5b146107fc57600080fd5b806376fc332f146107365780637e0e155c146107565780637e0ec1d11461078657600080fd5b8063313ce567116102b65780634fbee193116102545780636843cd84116102235780636843cd84146106ab578063700bb191146106cb57806370a08231146106eb578063715018a61461072157600080fd5b80634fbee1931461062857806353ab431b1461066157806364b0f6531461067657806365b8dbc01461068b57600080fd5b806349bd5a5e1161029057806349bd5a5e146105af5780634ada218b146105e35780634de18a9f146105fd5780634e71d92d1461061357600080fd5b8063313ce5671461055357806331e79db01461056f578063395093511461058f57600080fd5b806323b872dd116103235780632a8407b4116102fd5780632a8407b4146104f45780632c1f5216146105095780632d17f2691461052957806330bb4cff1461053e57600080fd5b806323b872dd1461049457806327a14fc2146104b457806327c8f835146104d457600080fd5b80630f3e80d61161035f5780630f3e80d61461040357806316216e5f146104275780631694505e1461044757806318160ddd1461047f57600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630bd05b69146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610b0b565b6040516103b39190612ffe565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612f5a565b610b9d565b60405190151581526020016103b3565b3480156103f857600080fd5b50610401610bb4565b005b34801561040f57600080fd5b50610419600c5481565b6040519081526020016103b3565b34801561043357600080fd5b50610401610442366004612fa1565b610c55565b34801561045357600080fd5b50600654610467906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561048b57600080fd5b50600254610419565b3480156104a057600080fd5b506103dc6104af366004612e84565b610c97565b3480156104c057600080fd5b506104016104cf366004612fa1565b610d00565b3480156104e057600080fd5b50600854610467906001600160a01b031681565b34801561050057600080fd5b50610419610d42565b34801561051557600080fd5b50600754610467906001600160a01b031681565b34801561053557600080fd5b50610419600a81565b34801561054a57600080fd5b50610419610dc4565b34801561055f57600080fd5b50604051601281526020016103b3565b34801561057b57600080fd5b5061040161058a366004612e14565b610e09565b34801561059b57600080fd5b506103dc6105aa366004612f5a565b610e96565b3480156105bb57600080fd5b506104677f000000000000000000000000391ef5e7bd32ea7d721ee305d80159310279691e81565b3480156105ef57600080fd5b50600f546103dc9060ff1681565b34801561060957600080fd5b5061041960095481565b34801561061f57600080fd5b50610401610ecc565b34801561063457600080fd5b506103dc610643366004612e14565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561066d57600080fd5b50610419600581565b34801561068257600080fd5b50610419610f53565b34801561069757600080fd5b506104016106a6366004612e14565b610f98565b3480156106b757600080fd5b506104196106c6366004612e14565b611093565b3480156106d757600080fd5b506104016106e6366004612fa1565b611112565b3480156106f757600080fd5b50610419610706366004612e14565b6001600160a01b031660009081526020819052604090205490565b34801561072d57600080fd5b506104016111f3565b34801561074257600080fd5b50610401610751366004612fa1565b611267565b34801561076257600080fd5b506103dc610771366004612e14565b60116020526000908152604090205460ff1681565b34801561079257600080fd5b50610419600b5481565b3480156107a857600080fd5b506104016107b7366004612e14565b611331565b3480156107c857600080fd5b506104016107d7366004612fa1565b611421565b3480156107e857600080fd5b506104016107f7366004612e14565b6114a0565b34801561080857600080fd5b506005546001600160a01b0316610467565b34801561082657600080fd5b506104196117d9565b34801561083b57600080fd5b506103a66117e8565b34801561085057600080fd5b5061040161085f366004612e14565b6117f7565b34801561087057600080fd5b5061040161087f366004612ec4565b6118c1565b34801561089057600080fd5b50610419600d5481565b3480156108a657600080fd5b506104016108b5366004612fa1565b6119b5565b3480156108c657600080fd5b50610419611a10565b3480156108db57600080fd5b506103dc6108ea366004612f5a565b611a55565b3480156108fb57600080fd5b5061041961090a366004612e14565b611aa4565b34801561091b57600080fd5b506103dc61092a366004612f5a565b611ad7565b34801561093b57600080fd5b5061094f61094a366004612e14565b611ae4565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103b3565b3480156109a057600080fd5b506103dc6109af366004612e14565b60126020526000908152604090205460ff1681565b3480156109d057600080fd5b50610419600e5481565b3480156109e657600080fd5b506104016109f5366004612fa1565b611b8e565b348015610a0657600080fd5b50610419610a15366004612e4c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4c57600080fd5b50610401610a5b366004612e14565b611c0d565b348015610a6c57600080fd5b50610419611cdc565b348015610a8157600080fd5b50610401610a90366004612fa1565b611d21565b348015610aa157600080fd5b5061094f610ab0366004612fa1565b611d7c565b348015610ac157600080fd5b50610401610ad0366004612e14565b611dbe565b348015610ae157600080fd5b50610401610af0366004612fa1565b611ea9565b348015610b0157600080fd5b50610419600a5481565b606060038054610b1a90613242565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690613242565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610baa338484611f51565b5060015b92915050565b6005546001600160a01b03163314610be75760405162461bcd60e51b8152600401610bde906130ea565b60405180910390fd5b600f5460ff1615610c465760405162461bcd60e51b8152602060048201526024808201527f53686962614554483a2054726164696e6720697320616c726561647920656e61604482015263189b195960e21b6064820152608401610bde565b600f805460ff19166001179055565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b8152600401610bde906130ea565b610c9181670de0b6b3a764000061320c565b600a5550565b6000610ca4848484612076565b610cf68433610cf1856040518060600160405280602881526020016132dd602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906126ca565b611f51565b5060019392505050565b6005546001600160a01b03163314610d2a5760405162461bcd60e51b8152600401610bde906130ea565b610d3c81670de0b6b3a764000061320c565b600b5550565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610d8757600080fd5b505afa158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190612fb9565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610d8757600080fd5b6005546001600160a01b03163314610e335760405162461bcd60e51b8152600401610bde906130ea565b60075460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e7b57600080fd5b505af1158015610e8f573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610baa918590610cf19086611eeb565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610f1857600080fd5b505af1158015610f2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f509190612f85565b50565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610d8757600080fd5b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610bde906130ea565b6006546001600160a01b03828116911614156110365760405162461bcd60e51b815260206004820152602d60248201527f53686962614554483a2054686520726f7574657220616c72656164792068617360448201526c2074686174206164647265737360981b6064820152608401610bde565b6006546040516001600160a01b03918216918316907fcd2acde3ae4de754da8074077404027fae40be67d89638ee1ceca2427883da7d90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b1580156110da57600080fd5b505afa1580156110ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bae9190612fb9565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561116057600080fd5b505af1158015611174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111989190612fd1565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b0316331461121d5760405162461bcd60e51b8152600401610bde906130ea565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146112915760405162461bcd60e51b8152600401610bde906130ea565b6064600c54101580156112a7575060c8600c5411155b61132c5760405162461bcd60e51b815260206004820152604a60248201527f53686962614554483a2053656c6c207472616e73616374696f6e206d756c746960448201527f706c6572206d757374206265206265747765656e20313030202831782920616e6064820152696420323030202832782960b01b608482015260a401610bde565b600c55565b6005546001600160a01b0316331461135b5760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b03811660009081526011602052604090205460ff16156113fd5760405162461bcd60e51b815260206004820152604a60248201527f53686962614554483a204163636f756e7420697320616c726561647920616c6c60448201527f6f77656420746f207472616e73666572206265666f72652074726164696e67206064820152691a5cc8195b98589b195960b21b608482015260a401610bde565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6005546001600160a01b0316331461144b5760405162461bcd60e51b8152600401610bde906130ea565b600d5481141561146d5760405162461bcd60e51b8152600401610bde90613094565b600d5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600d55565b6005546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610bde906130ea565b6007546001600160a01b038281169116141561154e5760405162461bcd60e51b815260206004820152603760248201527f53686962614554483a20546865206469766964656e6420747261636b6572206160448201527f6c726561647920686173207468617420616464726573730000000000000000006064820152608401610bde565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561159657600080fd5b505afa1580156115aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce9190612e30565b6001600160a01b0316146116625760405162461bcd60e51b815260206004820152604f60248201527f53686962614554483a20546865206e6577206469766964656e6420747261636b60448201527f6572206d757374206265206f776e65642062792074686520536869626145544860648201526e081d1bdad95b8818dbdb9d1c9858dd608a1b608482015260a401610bde565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b1580156116a457600080fd5b505af11580156116b8573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561170357600080fd5b505af1158015611717573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561176257600080fd5b505af1158015611776573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f1ae8fd4f008d9dd6f83c1182b3f30d87aed4ac15a15833ad625bbb740463e3c990600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6117e56005600a6131d4565b81565b606060048054610b1a90613242565b6005546001600160a01b031633146118215760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b03811660009081526010602052604090205460ff166118a05760405162461bcd60e51b815260206004820152602e60248201527f53686962614554483a204163636f756e7420697320616c726561647920696e6360448201526d6c7564656420666f72206665657360901b6064820152608401610bde565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6005546001600160a01b031633146118eb5760405162461bcd60e51b8152600401610bde906130ea565b7f000000000000000000000000391ef5e7bd32ea7d721ee305d80159310279691e6001600160a01b0316826001600160a01b031614156119a75760405162461bcd60e51b815260206004820152604b60248201527f53686962614554483a2054686520556e697377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610bde565b6119b18282612704565b5050565b6005546001600160a01b031633146119df5760405162461bcd60e51b8152600401610bde906130ea565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f90602401610e61565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610d8757600080fd5b6000610baa3384610cf185604051806060016040528060258152602001613305602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906126ca565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016110c2565b6000610baa338484612076565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b158015611b3b57600080fd5b505afa158015611b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b739190612ef1565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611bb85760405162461bcd60e51b8152600401610bde906130ea565b600e54811415611bda5760405162461bcd60e51b8152600401610bde90613094565b600e5460405182907fcdadd717dc9ee3550a289071d1af75e229726888d51e3a31c9e3dfc693d4852b90600090a3600e55565b6005546001600160a01b03163314611c375760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b03811660009081526010602052604090205460ff1615611cb85760405162461bcd60e51b815260206004820152602f60248201527f53686962614554483a204163636f756e7420697320616c72656164792065786360448201526e6c756465642066726f6d206665657360881b6064820152608401610bde565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610d8757600080fd5b6005546001600160a01b03163314611d4b5760405162461bcd60e51b8152600401610bde906130ea565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610e61565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611b22565b6005546001600160a01b03163314611de85760405162461bcd60e51b8152600401610bde906130ea565b6001600160a01b038116611e4d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bde565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611ed35760405162461bcd60e51b8152600401610bde906130ea565b611ee581670de0b6b3a764000061320c565b60095550565b600080611ef883856131d4565b905083811015611f4a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bde565b9392505050565b6001600160a01b038316611fb35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bde565b6001600160a01b0382166120145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bde565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661209c5760405162461bcd60e51b8152600401610bde9061311f565b6001600160a01b0382166120c25760405162461bcd60e51b8152600401610bde90613051565b600f5460ff1680612166576001600160a01b03841660009081526011602052604090205460ff166121665760405162461bcd60e51b815260206004820152604260248201527f53686962614554483a2054686973206163636f756e742063616e6e6f7420736560448201527f6e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c606482015261195960f21b608482015260a401610bde565b8161217d576121778484600061286d565b50505050565b600654600160a01b900460ff161580156121945750805b80156121b857506001600160a01b03831660009081526012602052604090205460ff165b80156121d257506006546001600160a01b03858116911614155b80156121f757506001600160a01b03831660009081526010602052604090205460ff16155b156122ea57600a548211156122745760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610bde565b6001600160a01b038316600090815260208190526040902054600b5461229a84836131d4565b11156122e85760405162461bcd60e51b815260206004820152601a60248201527f45786365656473204d41585f57414c4c45545f414d4f554e542e0000000000006044820152606401610bde565b505b30600090815260208190526040902054600e5481101582801561230a5750805b80156123205750600654600160a01b900460ff16155b801561234557506001600160a01b03861660009081526012602052604090205460ff16155b801561235a57506001600160a01b0386163014155b801561236f57506001600160a01b0385163014155b156123dd576006805460ff60a01b1916600160a01b17905560006123a96123986005600a6131d4565b6123a3856005612976565b906129f5565b90506123b481612a37565b306000908152602081905260409020546123cd81612abe565b50506006805460ff60a01b191690555b60008380156123f65750600654600160a01b900460ff16155b6001600160a01b03881660009081526010602052604090205490915060ff168061243857506001600160a01b03861660009081526010602052604090205460ff165b15612441575060005b80156124bb5760006124696124586005600a6131d4565b6124638860646129f5565b90612976565b6001600160a01b03881660009081526012602052604090205490915060ff16156124a257600c5461249f906124638360646129f5565b90505b6124ac8682612b66565b95506124b988308361286d565b505b6124c687878761286d565b6007546001600160a01b031663e30443bc886124f7816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561253d57600080fd5b505af192505050801561254e575060015b506007546001600160a01b031663e30443bc87612580816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156125c657600080fd5b505af19250505080156125d7575060015b50600654600160a01b900460ff166126c157600d546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561263557600080fd5b505af1925050508015612665575060408051601f3d908101601f1916820190925261266291810190612fd1565b60015b61266e576126bf565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156126ee5760405162461bcd60e51b8152600401610bde9190612ffe565b5060006126fb848661322b565b95945050505050565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156127a45760405162461bcd60e51b815260206004820152604260248201527f53686962614554483a204175746f6d61746564206d61726b6574206d616b657260448201527f207061697220697320616c72656164792073657420746f20746861742076616c606482015261756560f01b608482015260a401610bde565b6001600160a01b0382166000908152601260205260409020805460ff191682158015919091179091556128315760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561281857600080fd5b505af115801561282c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166128935760405162461bcd60e51b8152600401610bde9061311f565b6001600160a01b0382166128b95760405162461bcd60e51b8152600401610bde90613051565b6128f6816040518060600160405280602681526020016132b7602691396001600160a01b03861660009081526020819052604090205491906126ca565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546129259082611eeb565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612069565b60008261298557506000610bae565b6000612991838561320c565b90508261299e85836131ec565b14611f4a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610bde565b6000611f4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ba8565b6000612a448260026129f5565b90506000612a528383612b66565b905047612a5e83612bd6565b6000612a6a4783612b66565b9050612a768382612d5b565b60408051858152602081018390529081018490527ffb82c2300f807cc60e7abf909b045a028ef3b1807785a6b675eb0fa21e461fa19060600160405180910390a15050505050565b612ac781612bd6565b60075460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114612b18576040519150601f19603f3d011682016040523d82523d6000602084013e612b1d565b606091505b505090508015612b615760408051848152602081018490527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca910160405180910390a15b505050565b6000611f4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126ca565b60008183612bc95760405162461bcd60e51b8152600401610bde9190612ffe565b5060006126fb84866131ec565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612c1957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c6d57600080fd5b505afa158015612c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ca59190612e30565b81600181518110612cc657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612cec9130911684611f51565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612d25908590600090869030904290600401613164565b600060405180830381600087803b158015612d3f57600080fd5b505af1158015612d53573d6000803e3d6000fd5b505050505050565b600654612d739030906001600160a01b031684611f51565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612ddb57600080fd5b505af1158015612def573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e8f9190612fd1565b600060208284031215612e25578081fd5b8135611f4a81613293565b600060208284031215612e41578081fd5b8151611f4a81613293565b60008060408385031215612e5e578081fd5b8235612e6981613293565b91506020830135612e7981613293565b809150509250929050565b600080600060608486031215612e98578081fd5b8335612ea381613293565b92506020840135612eb381613293565b929592945050506040919091013590565b60008060408385031215612ed6578182fd5b8235612ee181613293565b91506020830135612e79816132a8565b600080600080600080600080610100898b031215612f0d578384fd5b8851612f1881613293565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612f6c578182fd5b8235612f7781613293565b946020939093013593505050565b600060208284031215612f96578081fd5b8151611f4a816132a8565b600060208284031215612fb2578081fd5b5035919050565b600060208284031215612fca578081fd5b5051919050565b600080600060608486031215612fe5578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561302a5785810183015185820160400152820161300e565b8181111561303b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526036908201527f53686962614554483a2043616e6e6f742075706461746520676173466f7250726040820152756f63657373696e6720746f2073616d652076616c756560501b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156131b35784516001600160a01b03168352938301939183019160010161318e565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156131e7576131e761327d565b500190565b60008261320757634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156132265761322661327d565b500290565b60008282101561323d5761323d61327d565b500390565b600181811c9082168061325657607f821691505b6020821081141561327757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f5057600080fd5b8015158114610f5057600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122042b17decc34f941e5dfc8f22e39da164d981f39ce69b7728dbe6a780b54e4c1e64736f6c63430008040033

Libraries Used


Deployed Bytecode Sourcemap

24503:16477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9005:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11172:169;;;;;;;;;;-1:-1:-1;11172:169:0;;;;;:::i;:::-;;:::i;:::-;;;6315:14:1;;6308:22;6290:41;;6278:2;6263:18;11172:169:0;6245:92:1;25789:159:0;;;;;;;;;;;;;:::i;:::-;;25357:45;;;;;;;;;;;;;;;;;;;16893:25:1;;;16881:2;16866:18;25357:45:0;16848:76:1;30568:141:0;;;;;;;;;;-1:-1:-1;30568:141:0;;;;;:::i;:::-;;:::i;24581:41::-;;;;;;;;;;-1:-1:-1;24581:41:0;;;;-1:-1:-1;;;;;24581:41:0;;;;;;-1:-1:-1;;;;;4188:32:1;;;4170:51;;4158:2;4143:18;24581:41:0;4125:102:1;10125:108:0;;;;;;;;;;-1:-1:-1;10213:12:0;;10125:108;;11823:355;;;;;;;;;;-1:-1:-1;11823:355:0;;;;;:::i;:::-;;:::i;30721:119::-;;;;;;;;;;-1:-1:-1;30721:119:0;;;;;:::i;:::-;;:::i;24768:71::-;;;;;;;;;;-1:-1:-1;24768:71:0;;;;-1:-1:-1;;;;;24768:71:0;;;33134:118;;;;;;;;;;;;;:::i;24709:46::-;;;;;;;;;;-1:-1:-1;24709:46:0;;;;-1:-1:-1;;;;;24709:46:0;;;25118:44;;;;;;;;;;;;25160:2;25118:44;;33376:141;;;;;;;;;;;;;:::i;9967:93::-;;;;;;;;;;-1:-1:-1;9967:93:0;;10050:2;19032:36:1;;19020:2;19005:18;9967:93:0;18987:87:1;30280:128:0;;;;;;;;;;-1:-1:-1;30280:128:0;;;;;:::i;:::-;;:::i;12587:218::-;;;;;;;;;;-1:-1:-1;12587:218:0;;;;;:::i;:::-;;:::i;24629:38::-;;;;;;;;;;;;;;;25754:26;;;;;;;;;;-1:-1:-1;25754:26:0;;;;;;;;24848:64;;;;;;;;;;;;;;;;34833:103;;;;;;;;;;;;;:::i;33525:125::-;;;;;;;;;;-1:-1:-1;33525:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;33614:28:0;33590:4;33614:28;;;:19;:28;;;;;;;;;33525:125;25169:41;;;;;;;;;;;;25209:1;25169:41;;35081:141;;;;;;;;;;;;;:::i;29506:318::-;;;;;;;;;;-1:-1:-1;29506:318:0;;;;;:::i;:::-;;:::i;33817:139::-;;;;;;;;;;-1:-1:-1;33817:139:0;;;;;:::i;:::-;;:::i;34554:271::-;;;;;;;;;;-1:-1:-1;34554:271:0;;;;;:::i;:::-;;:::i;10296:127::-;;;;;;;;;;-1:-1:-1;10296:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10397:18:0;10370:7;10397:18;;;;;;;;;;;;10296:127;3156:148;;;;;;;;;;;;;:::i;30852:290::-;;;;;;;;;;-1:-1:-1;30852:290:0;;;;;:::i;:::-;;:::i;26136:66::-;;;;;;;;;;-1:-1:-1;26136:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25035:56;;;;;;;;;;;;;;;;31838:288;;;;;;;;;;-1:-1:-1;31838:288:0;;;;;:::i;:::-;;:::i;32134:383::-;;;;;;;;;;-1:-1:-1;32134:383:0;;;;;:::i;:::-;;:::i;28699:799::-;;;;;;;;;;-1:-1:-1;28699:799:0;;;;;:::i;:::-;;:::i;2514:79::-;;;;;;;;;;-1:-1:-1;2579:6:0;;-1:-1:-1;;;;;2579:6:0;2514:79;;25217:68;;;;;;;;;;;;;:::i;9224:104::-;;;;;;;;;;;;;:::i;30057:211::-;;;;;;;;;;-1:-1:-1;30057:211:0;;;;;:::i;:::-;;:::i;31150:262::-;;;;;;;;;;-1:-1:-1;31150:262:0;;;;;:::i;:::-;;:::i;25481:40::-;;;;;;;;;;;;;;;;32850:144;;;;;;;;;;-1:-1:-1;32850:144:0;;;;;:::i;:::-;;:::i;33260:108::-;;;;;;;;;;;;;:::i;13308:269::-;;;;;;;;;;-1:-1:-1;13308:269:0;;;;;:::i;:::-;;:::i;33658:151::-;;;;;;;;;;-1:-1:-1;33658:151:0;;;;;:::i;:::-;;:::i;10636:175::-;;;;;;;;;;-1:-1:-1;10636:175:0;;;;;:::i;:::-;;:::i;33964:282::-;;;;;;;;;;-1:-1:-1;33964: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;33964:282:0;5125:408:1;26360:58:0;;;;;;;;;;-1:-1:-1;26360:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25612;;;;;;;;;;;;;;;;32525:317;;;;;;;;;;-1:-1:-1;32525:317:0;;;;;:::i;:::-;;:::i;10874:151::-;;;;;;;;;;-1:-1:-1;10874:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10990:18:0;;;10963:7;10990:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10874:151;29832:213;;;;;;;;;;-1:-1:-1;29832:213:0;;;;;:::i;:::-;;:::i;34944:129::-;;;;;;;;;;;;;:::i;33002:124::-;;;;;;;;;;-1:-1:-1;33002:124:0;;;;;:::i;:::-;;:::i;34254:292::-;;;;;;;;;;-1:-1:-1;34254:292:0;;;;;:::i;:::-;;:::i;3459:244::-;;;;;;;;;;-1:-1:-1;3459:244:0;;;;;:::i;:::-;;:::i;30420:136::-;;;;;;;;;;-1:-1:-1;30420:136:0;;;;;:::i;:::-;;:::i;24941:65::-;;;;;;;;;;;;;;;;9005:100;9059:13;9092:5;9085:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9005:100;:::o;11172:169::-;11255:4;11272:39;1888:10;11295:7;11304:6;11272:8;:39::i;:::-;-1:-1:-1;11329:4:0;11172:169;;;;;:::o;25789:159::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;;;;;;;;;25853:14:::1;::::0;::::1;;25852:15;25844:64;;;::::0;-1:-1:-1;;;25844:64:0;;8527:2:1;25844:64:0::1;::::0;::::1;8509:21:1::0;8566:2;8546:18;;;8539:30;8605:34;8585:18;;;8578:62;-1:-1:-1;;;8656:18:1;;;8649:34;8700:19;;25844:64:0::1;8499:226:1::0;25844:64:0::1;25919:14;:21:::0;;-1:-1:-1;;25919:21:0::1;25936:4;25919:21;::::0;;25789:159::o;30568:141::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;30681:17:::1;:6:::0;30691::::1;30681:17;:::i;:::-;30651:27;:47:::0;-1:-1:-1;30568:141:0:o;11823:355::-;11963:4;11980:36;11990:6;11998:9;12009:6;11980:9;:36::i;:::-;12027:121;12036:6;1888:10;12058:89;12096:6;12058:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12058:19:0;;;;;;:11;:19;;;;;;;;1888:10;12058:33;;;;;;;;;;:37;:89::i;:::-;12027:8;:121::i;:::-;-1:-1:-1;12166:4:0;11823:355;;;;;:::o;30721:119::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;30815:17:::1;:6:::0;30825::::1;30815:17;:::i;:::-;30795;:37:::0;-1:-1:-1;30721:119:0:o;33134:118::-;33212:15;;:32;;;-1:-1:-1;;;33212:32:0;;;;33185:7;;-1:-1:-1;;;;;33212:15:0;;:30;;:32;;;;;;;;;;;;;;:15;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33205:39;;33134:118;:::o;33376:141::-;33466:15;;:43;;;-1:-1:-1;;;33466:43:0;;;;33439:7;;-1:-1:-1;;;;;33466:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;30280:128;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;30355:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;30355:45:0;;-1:-1:-1;;;;;4188:32:1;;;30355:45:0::1;::::0;::::1;4170:51:1::0;30355:15:0;;::::1;::::0;:36:::1;::::0;4143:18:1;;30355:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;30280:128:::0;:::o;12587:218::-;1888:10;12675:4;12724:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12724:34:0;;;;;;;;;;12675:4;;12692:83;;12715:7;;12724:50;;12763:10;12724:38;:50::i;34833:103::-;34870:15;;:58;;-1:-1:-1;;;34870:58:0;;34909:10;34870:58;;;4416:51:1;34870:15:0;4483:18:1;;;4476:50;-1:-1:-1;;;;;34870:15:0;;;;:30;;4389:18:1;;34870:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34833:103::o;35081:141::-;35173:15;;:41;;;-1:-1:-1;;;35173:41:0;;;;35146:7;;-1:-1:-1;;;;;35173:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;29506:318;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;29615:15:::1;::::0;-1:-1:-1;;;;;29593:38:0;;::::1;29615:15:::0;::::1;29593:38;;29585:96;;;::::0;-1:-1:-1;;;29585:96:0;;8932:2:1;29585:96:0::1;::::0;::::1;8914:21:1::0;8971:2;8951:18;;;8944:30;9010:34;8990:18;;;8983:62;-1:-1:-1;;;9061:18:1;;;9054:43;9114:19;;29585:96:0::1;8904:235:1::0;29585:96:0::1;29740:15;::::0;29697:60:::1;::::0;-1:-1:-1;;;;;29740:15:0;;::::1;::::0;29697:60;::::1;::::0;::::1;::::0;29740:15:::1;::::0;29697:60:::1;29768:15;:48:::0;;-1:-1:-1;;;;;;29768:48:0::1;-1:-1:-1::0;;;;;29768:48:0;;;::::1;::::0;;;::::1;::::0;;29506:318::o;33817:139::-;33914:15;;:34;;-1:-1:-1;;;33914:34:0;;-1:-1:-1;;;;;4188:32:1;;;33914:34:0;;;4170:51:1;33887:7:0;;33914:15;;:25;;4143:18:1;;33914:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34554:271::-;34686:15;;:28;;-1:-1:-1;;;;;;34686:28:0;;;;;16893:25:1;;;34620:18:0;;;;;;-1:-1:-1;;;;;34686:15:0;;:23;;16866:18:1;;34686:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34730:87;;;18725:25:1;;;18781:2;18766:18;;18759:34;;;18809:18;;;18802:34;;;18867:2;18852:18;;18845:34;;;34619:95:0;;-1:-1:-1;34619:95:0;;-1:-1:-1;34619:95:0;-1:-1:-1;34807:9:0;;34795:5;;34730:87;;18712:3:1;18697:19;34730:87:0;;;;;;;34554:271;;;;:::o;3156:148::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;3247:6:::1;::::0;3226:40:::1;::::0;3263:1:::1;::::0;-1:-1:-1;;;;;3247:6:0::1;::::0;3226:40:::1;::::0;3263:1;;3226:40:::1;3277:6;:19:::0;;-1:-1:-1;;;;;;3277:19:0::1;::::0;;3156:148::o;30852:290::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;30971:3:::1;30943:24;;:31;;:66;;;;;31006:3;30978:24;;:31;;30943:66;30935:153;;;::::0;-1:-1:-1;;;30935:153:0;;11765:2:1;30935:153:0::1;::::0;::::1;11747:21:1::0;11804:2;11784:18;;;11777:30;11843:34;11823:18;;;11816:62;11914:34;11894:18;;;11887:62;-1:-1:-1;;;11965:19:1;;;11958:41;12016:19;;30935:153:0::1;11737:304:1::0;30935:153:0::1;31098:24;:37:::0;30852:290::o;31838:288::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31937:42:0;::::1;;::::0;;;:33:::1;:42;::::0;;;;;::::1;;31936:43;31928:130;;;::::0;-1:-1:-1;;;31928:130:0;;12248:2:1;31928:130:0::1;::::0;::::1;12230:21:1::0;12287:2;12267:18;;;12260:30;12326:34;12306:18;;;12299:62;12397:34;12377:18;;;12370:62;-1:-1:-1;;;12448:19:1;;;12441:41;12499:19;;31928:130:0::1;12220:304:1::0;31928:130:0::1;-1:-1:-1::0;;;;;32069:42:0::1;;::::0;;;:33:::1;:42;::::0;;;;:49;;-1:-1:-1;;32069:49:0::1;32114:4;32069:49;::::0;;31838:288::o;32134:383::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;32329:16:::1;;32317:8;:28;;32309:95;;;;-1:-1:-1::0;;;32309:95:0::1;;;;;;;:::i;:::-;32454:16;::::0;32420:51:::1;::::0;32444:8;;32420:51:::1;::::0;;;::::1;32482:16;:27:::0;32134:383::o;28699:799::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;28808:15:::1;::::0;-1:-1:-1;;;;;28786:38:0;;::::1;28808:15:::0;::::1;28786:38;;28778:106;;;::::0;-1:-1:-1;;;28778:106:0;;16525:2:1;28778:106:0::1;::::0;::::1;16507:21:1::0;16564:2;16544:18;;;16537:30;16603:34;16583:18;;;16576:62;16674:25;16654:18;;;16647:53;16717:19;;28778:106:0::1;16497:245:1::0;28778:106:0::1;28897:42;28974:10;28897:89;;29045:4;-1:-1:-1::0;;;;;29007:43:0::1;:18;-1:-1:-1::0;;;;;29007:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29007:43:0::1;;28999:135;;;::::0;-1:-1:-1;;;28999:135:0;;8039:2:1;28999:135:0::1;::::0;::::1;8021:21:1::0;8078:2;8058:18;;;8051:30;8117:34;8097:18;;;8090:62;8188:34;8168:18;;;8161:62;-1:-1:-1;;;8239:19:1;;;8232:46;8295:19;;28999:135:0::1;8011:309:1::0;28999:135:0::1;29147:68;::::0;-1:-1:-1;;;29147:68:0;;-1:-1:-1;;;;;29147:39:0;::::1;:68;::::0;::::1;4170:51:1::0;;;29147:39:0;::::1;::::0;4143:18:1;;29147:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29274:15:0::1;::::0;29226:65:::1;::::0;-1:-1:-1;;;29226:65:0;;-1:-1:-1;;;;;29274:15:0;;::::1;29226:65;::::0;::::1;4170:51:1::0;29226:39:0;;::::1;::::0;-1:-1:-1;29226:39:0::1;::::0;-1:-1:-1;4143:18:1;;29226:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29350:11:0::1;::::0;29302:61:::1;::::0;-1:-1:-1;;;29302:61:0;;-1:-1:-1;;;;;29350:11:0;;::::1;29302:61;::::0;::::1;4170:51:1::0;29302:39:0;;::::1;::::0;-1:-1:-1;29302:39:0::1;::::0;-1:-1:-1;4143:18:1;;29302:61:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29424:15:0::1;::::0;29381:60:::1;::::0;-1:-1:-1;;;;;29424:15:0;;::::1;::::0;-1:-1:-1;29381:60:0;;::::1;::::0;-1:-1:-1;29381:60:0::1;::::0;29424:15:::1;::::0;29381:60:::1;29454:15;:36:::0;;-1:-1:-1;;;;;;29454:36:0::1;-1:-1:-1::0;;;;;29454:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;28699:799:0:o;25217:68::-;25254:31;25209:1;25160:2;25254:31;:::i;:::-;25217:68;:::o;9224:104::-;9280:13;9313:7;9306:14;;;;;:::i;30057:211::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30134:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;30126:87;;;::::0;-1:-1:-1;;;30126:87:0;;14815:2:1;30126:87:0::1;::::0;::::1;14797:21:1::0;14854:2;14834:18;;;14827:30;14893:34;14873:18;;;14866:62;-1:-1:-1;;;14944:18:1;;;14937:44;14998:19;;30126:87:0::1;14787:236:1::0;30126:87:0::1;-1:-1:-1::0;;;;;30224:28:0::1;30255:5;30224:28:::0;;;:19:::1;:28;::::0;;;;:36;;-1:-1:-1;;30224:36:0::1;::::0;;30057:211::o;31150:262::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;31257:13:::1;-1:-1:-1::0;;;;;31249:21:0::1;:4;-1:-1:-1::0;;;;;31249:21:0::1;;;31241:109;;;::::0;-1:-1:-1;;;31241:109:0;;16041:2:1;31241:109:0::1;::::0;::::1;16023:21:1::0;16080:2;16060:18;;;16053:30;16119:34;16099:18;;;16092:62;16190:34;16170:18;;;16163:62;-1:-1:-1;;;16241:19:1;;;16234:42;16293:19;;31241:109:0::1;16013:305:1::0;31241:109:0::1;31363:41;31392:4;31398:5;31363:28;:41::i;:::-;31150:262:::0;;:::o;32850:144::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;32934:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;32934:52:0;;::::1;::::0;::::1;16893:25:1::0;;;-1:-1:-1;;;;;32934:15:0;;::::1;::::0;:36:::1;::::0;16866:18:1;;32934:52:0::1;16848:76:1::0;33260:108:0;33333:15;;:27;;;-1:-1:-1;;;33333:27:0;;;;33306:7;;-1:-1:-1;;;;;33333:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;13308:269;13401:4;13418:129;1888:10;13441:7;13450:96;13489:15;13450:96;;;;;;;;;;;;;;;;;1888:10;13450:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13450:34:0;;;;;;;;;;;;:38;:96::i;33658:151::-;33754:15;;:47;;-1:-1:-1;;;33754:47:0;;-1:-1:-1;;;;;4188:32:1;;;33754:47:0;;;4170:51:1;33727:7:0;;33754:15;;:38;;4143:18:1;;33754:47:0;4125:102:1;10636:175:0;10722:4;10739:42;1888:10;10763:9;10774:6;10739:9;:42::i;33964:282::-;34203:15;;:35;;-1:-1:-1;;;34203:35:0;;-1:-1:-1;;;;;4188:32:1;;;34203:35:0;;;4170:51:1;34052:7:0;;;;;;;;;;;;;;;;34203:15;;;:26;;4143:18:1;;34203:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34196:42;;;;;;;;;;;;;;;;33964:282;;;;;;;;;:::o;32525:317::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;32629:23:::1;;32617:8;:35;;32609:102;;;;-1:-1:-1::0;;;32609:102:0::1;;;;;;;:::i;:::-;32765:23;::::0;32727:62:::1;::::0;32755:8;;32727:62:::1;::::0;;;::::1;32800:23;:34:::0;32525:317::o;29832:213::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29911:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;29910:29;29902:89;;;::::0;-1:-1:-1;;;29902:89:0;;13133:2:1;29902:89:0::1;::::0;::::1;13115:21:1::0;13172:2;13152:18;;;13145:30;13211:34;13191:18;;;13184:62;-1:-1:-1;;;13262:18:1;;;13255:45;13317:19;;29902:89:0::1;13105:237:1::0;29902:89:0::1;-1:-1:-1::0;;;;;30002:28:0::1;;::::0;;;:19:::1;:28;::::0;;;;:35;;-1:-1:-1;;30002:35:0::1;30033:4;30002:35;::::0;;29832:213::o;34944:129::-;35026:15;;:39;;;-1:-1:-1;;;35026:39:0;;;;34999:7;;-1:-1:-1;;;;;35026:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;33002:124;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;33076:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;33076:42:0;;::::1;::::0;::::1;16893:25:1::0;;;-1:-1:-1;;;;;33076:15:0;;::::1;::::0;:31:::1;::::0;16866:18:1;;33076:42:0::1;16848:76:1::0;34254:292:0;34498:15;;:40;;-1:-1:-1;;;34498:40:0;;;;;16893:25:1;;;34347:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34498:15:0;;;;:33;;16866:18:1;;34498:40:0;16848:76:1;3459:244:0;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3548:22:0;::::1;3540:73;;;::::0;-1:-1:-1;;;3540:73:0;;9346:2:1;3540:73:0::1;::::0;::::1;9328:21:1::0;9385:2;9365:18;;;9358:30;9424:34;9404:18;;;9397:62;-1:-1:-1;;;9475:18:1;;;9468:36;9521:19;;3540:73:0::1;9318:228:1::0;3540:73:0::1;3650:6;::::0;3629:38:::1;::::0;-1:-1:-1;;;;;3629:38:0;;::::1;::::0;3650:6:::1;::::0;3629:38:::1;::::0;3650:6:::1;::::0;3629:38:::1;3678:6;:17:::0;;-1:-1:-1;;;;;;3678:17:0::1;-1:-1:-1::0;;;;;3678:17:0;;;::::1;::::0;;;::::1;::::0;;3459:244::o;30420:136::-;2726:6;;-1:-1:-1;;;;;2726:6:0;1888:10;2726:22;2718:67;;;;-1:-1:-1;;;2718:67:0;;;;;;;:::i;:::-;30531:17:::1;:6:::0;30541::::1;30531:17;:::i;:::-;30502:26;:46:::0;-1:-1:-1;30420:136:0:o;17872:181::-;17930:7;;17962:5;17966:1;17962;:5;:::i;:::-;17950:17;;17991:1;17986;:6;;17978:46;;;;-1:-1:-1;;;17978:46:0;;10156:2:1;17978:46:0;;;10138:21:1;10195:2;10175:18;;;10168:30;10234:29;10214:18;;;10207:57;10281:18;;17978:46:0;10128:177:1;17978:46:0;18044:1;17872:181;-1:-1:-1;;;17872:181:0:o;16494:380::-;-1:-1:-1;;;;;16630:19:0;;16622:68;;;;-1:-1:-1;;;16622:68:0;;15636:2:1;16622:68:0;;;15618:21:1;15675:2;15655:18;;;15648:30;15714:34;15694:18;;;15687:62;-1:-1:-1;;;15765:18:1;;;15758:34;15809:19;;16622:68:0;15608:226:1;16622:68:0;-1:-1:-1;;;;;16709:21:0;;16701:68;;;;-1:-1:-1;;;16701:68:0;;9753:2:1;16701:68:0;;;9735:21:1;9792:2;9772:18;;;9765:30;9831:34;9811:18;;;9804:62;-1:-1:-1;;;9882:18:1;;;9875:32;9924:19;;16701:68:0;9725:224:1;16701:68:0;-1:-1:-1;;;;;16782:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16834:32;;16893:25:1;;;16834:32:0;;16866:18:1;16834:32:0;;;;;;;;16494:380;;;:::o;35230:3371::-;-1:-1:-1;;;;;35362:18:0;;35354:68;;;;-1:-1:-1;;;35354:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35441:16:0;;35433:64;;;;-1:-1:-1;;;35433:64:0;;;;;;;:::i;:::-;35534:14;;;;;35654:168;;-1:-1:-1;;;;;35700:39:0;;;;;;:33;:39;;;;;;;;35692:118;;;;-1:-1:-1;;;35692:118:0;;14340:2:1;35692:118:0;;;14322:21:1;14379:2;14359:18;;;14352:30;14418:34;14398:18;;;14391:62;14489:34;14469:18;;;14462:62;-1:-1:-1;;;14540:19:1;;;14533:33;14583:19;;35692:118:0;14312:296:1;35692:118:0;35838:11;35834:93;;35866:28;35882:4;35888:2;35892:1;35866:15;:28::i;:::-;35909:7;35230:3371;;;:::o;35834:93::-;35944:11;;-1:-1:-1;;;35944:11:0;;;;35943:12;:45;;;;;35972:16;35943:45;:91;;;;-1:-1:-1;;;;;;36005:29:0;;;;;;:25;:29;;;;;;;;35943:91;:207;;;;-1:-1:-1;36134:15:0;;-1:-1:-1;;;;;36118:32:0;;;36134:15;;36118:32;;35943:207;:312;;;;-1:-1:-1;;;;;;36232:23:0;;;;;;:19;:23;;;;;;;;36231:24;35943:312;35939:740;;;36372:27;;36362:6;:37;;36354:111;;;;-1:-1:-1;;;36354:111:0;;13910:2:1;36354:111:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:34;13968:18;;;13961:62;14059:31;14039:18;;;14032:59;14108:19;;36354:111:0;13882:251:1;36354:111:0;-1:-1:-1;;;;;10397:18:0;;36480:32;10397:18;;;;;;;;;;;36588:17;;36551:33;36578:6;10397:18;36551:33;:::i;:::-;:54;;36543:124;;;;-1:-1:-1;;;36543:124:0;;11410:2:1;36543:124:0;;;11392:21:1;11449:2;11429:18;;;11422:30;11488:28;11468:18;;;11461:56;11534:18;;36543:124:0;11382:176:1;36543:124:0;35939:740;;36740:4;36691:28;10397:18;;;;;;;;;;;36798:23;;36774:47;;;36838:16;:40;;;;;36871:7;36838:40;:69;;;;-1:-1:-1;36896:11:0;;-1:-1:-1;;;36896:11:0;;;;36895:12;36838:69;:118;;;;-1:-1:-1;;;;;;36925:31:0;;;;;;:25;:31;;;;;;;;36924:32;36838:118;:156;;;;-1:-1:-1;;;;;;36973:21:0;;36989:4;36973:21;;36838:156;:192;;;;-1:-1:-1;;;;;;37011:19:0;;37025:4;37011:19;;36838:192;36834:532;;;37057:11;:18;;-1:-1:-1;;;;37057:18:0;-1:-1:-1;;;37057:18:0;;;;37113:55;25254:31;25209:1;25160:2;25254:31;:::i;:::-;37113:39;:20;25209:1;37113:24;:39::i;:::-;:43;;:55::i;:::-;37092:76;;37183:26;37198:10;37183:14;:26::i;:::-;37265:4;37226:18;10397;;;;;;;;;;;37286:32;10397:18;37286:20;:32::i;:::-;-1:-1:-1;;37335:11:0;:19;;-1:-1:-1;;;;37335:19:0;;;36834:532;37378:12;37393:16;:32;;;;-1:-1:-1;37414:11:0;;-1:-1:-1;;;37414:11:0;;;;37413:12;37393:32;-1:-1:-1;;;;;37527:25:0;;;;;;:19;:25;;;;;;37378:47;;-1:-1:-1;37527:25:0;;;:52;;-1:-1:-1;;;;;;37556:23:0;;;;;;:19;:23;;;;;;;;37527:52;37523:100;;;-1:-1:-1;37606:5:0;37523:100;37639:7;37635:387;;;37663:12;37678:31;25254;25209:1;25160:2;25254:31;:::i;:::-;37678:15;:6;37689:3;37678:10;:15::i;:::-;:19;;:31::i;:::-;-1:-1:-1;;;;;37782:29:0;;;;;;:25;:29;;;;;;37663:46;;-1:-1:-1;37782:29:0;;37779:119;;;37857:24;;37839:43;;:13;:4;37848:3;37839:8;:13::i;:43::-;37832:50;;37779:119;37935:16;:6;37946:4;37935:10;:16::i;:::-;37926:25;;37968:42;37984:4;37998;38005;37968:15;:42::i;:::-;37635:387;;38034:33;38050:4;38056:2;38060:6;38034:15;:33::i;:::-;38084:15;;-1:-1:-1;;;;;38084:15:0;:26;38119:4;38126:15;38119:4;-1:-1:-1;;;;;10397:18:0;10370:7;10397:18;;;;;;;;;;;;10296:127;38126:15;38084:58;;-1:-1:-1;;;;;;38084:58:0;;;;;;;-1:-1:-1;;;;;4745:32:1;;;38084:58:0;;;4727:51:1;4794:18;;;4787:34;4700:18;;38084:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38080:74;38168:15;;-1:-1:-1;;;;;38168:15:0;:26;38203:2;38208:13;38203:2;-1:-1:-1;;;;;10397:18:0;10370:7;10397:18;;;;;;;;;;;;10296:127;38208:13;38168:54;;-1:-1:-1;;;;;;38168:54:0;;;;;;;-1:-1:-1;;;;;4745:32:1;;;38168:54:0;;;4727:51:1;4794:18;;;4787:34;4700:18;;38168:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38164:70;38251:11;;-1:-1:-1;;;38251:11:0;;;;38246:348;;38293:16;;38330:15;;:28;;-1:-1:-1;;;;;;38330:28:0;;;;;16893:25:1;;;-1:-1:-1;;;;;38330:15:0;;;;:23;;16866:18:1;;38330:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38330:28:0;;;;;;;;-1:-1:-1;;38330:28:0;;;;;;;;;;;;:::i;:::-;;;38326:257;;;;;38456:86;;;18725:25:1;;;18781:2;18766:18;;18759:34;;;18809:18;;;18802:34;;;18867:2;18852:18;;18845:34;;;38532:9:0;;38521:4;;38456:86;;18712:3:1;18697:19;38456:86:0;;;;;;;38359:199;;;38326:257;38246:348;;35230:3371;;;;;;;:::o;18775:192::-;18861:7;18897:12;18889:6;;;;18881:29;;;;-1:-1:-1;;;18881:29:0;;;;;;;;:::i;:::-;-1:-1:-1;18921:9:0;18933:5;18937:1;18933;:5;:::i;:::-;18921:17;18775:192;-1:-1:-1;;;;;18775:192:0:o;31420:410::-;-1:-1:-1;;;;;31511:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;31503:119;;;;-1:-1:-1;;;31503:119:0;;10935:2:1;31503:119:0;;;10917:21:1;10974:2;10954:18;;;10947:30;11013:34;10993:18;;;10986:62;11084:34;11064:18;;;11057:62;-1:-1:-1;;;11135:19:1;;;11128:33;11178:19;;31503:119:0;10907:296:1;31503:119:0;-1:-1:-1;;;;;31633:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;31633:39:0;;;;;;;;;;;;31685:80;;31711:15;;:42;;-1:-1:-1;;;31711:42:0;;-1:-1:-1;;;;;4188:32:1;;;31711:42:0;;;4170:51:1;31711:15:0;;;;:36;;4143:18:1;;31711:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31685:80;31782:40;;;;;;-1:-1:-1;;;;;31782:40:0;;;;;;;;31420:410;;:::o;14067:573::-;-1:-1:-1;;;;;14207:20:0;;14199:70;;;;-1:-1:-1;;;14199:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14288:23:0;;14280:71;;;;-1:-1:-1;;;14280:71:0;;;;;;;:::i;:::-;14444;14466:6;14444:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14444:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;14424:17:0;;;:9;:17;;;;;;;;;;;:91;;;;14549:20;;;;;;;:32;;14574:6;14549:24;:32::i;:::-;-1:-1:-1;;;;;14526:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;14597:35;16893:25:1;;;14526:20:0;;14597:35;;;;;;16866:18:1;14597:35:0;16848:76:1;19226:471:0;19284:7;19529:6;19525:47;;-1:-1:-1;19559:1:0;19552:8;;19525:47;19584:9;19596:5;19600:1;19596;:5;:::i;:::-;19584:17;-1:-1:-1;19629:1:0;19620:5;19624:1;19584:17;19620:5;:::i;:::-;:10;19612:56;;;;-1:-1:-1;;;19612:56:0;;12731:2:1;19612:56:0;;;12713:21:1;12770:2;12750:18;;;12743:30;12809:34;12789:18;;;12782:62;-1:-1:-1;;;12860:18:1;;;12853:31;12901:19;;19612:56:0;12703:223:1;20173:132:0;20231:7;20258:39;20262:1;20265;20258:39;;;;;;;;;;;;;;;;;:3;:39::i;38609:918::-;38719:12;38734:13;:6;38745:1;38734:10;:13::i;:::-;38719:28;-1:-1:-1;38758:17:0;38778:16;:6;38719:28;38778:10;:16::i;:::-;38758:36;-1:-1:-1;39097:21:0;39163:22;39180:4;39163:16;:22::i;:::-;39316:18;39337:41;:21;39363:14;39337:25;:41::i;:::-;39316:62;;39428:35;39441:9;39452:10;39428:12;:35::i;:::-;39481:38;;;18372:25:1;;;18428:2;18413:18;;18406:34;;;18456:18;;;18449:34;;;39481:38:0;;18360:2:1;18345:18;39481:38:0;;;;;;;38609:918;;;;;:::o;40659:318::-;40724:24;40741:6;40724:16;:24::i;:::-;40839:15;;40831:51;;40779:21;;40759:17;;-1:-1:-1;;;;;40839:15:0;;;;40779:21;;40759:17;40831:51;40759:17;40831:51;40779:21;40839:15;40831:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40813:69;;;40897:7;40893:77;;;40926:32;;;18091:25:1;;;18147:2;18132:18;;18125:34;;;40926:32:0;;18064:18:1;40926:32:0;;;;;;;40893:77;40659:318;;;:::o;18336:136::-;18394:7;18421:43;18425:1;18428;18421:43;;;;;;;;;;;;;;;;;:3;:43::i;20801:278::-;20887:7;20922:12;20915:5;20907:28;;;;-1:-1:-1;;;20907:28:0;;;;;;;;:::i;:::-;-1:-1:-1;20946:9:0;20958:5;20962:1;20958;:5;:::i;39535:589::-;39685:16;;;39699:1;39685:16;;;;;;;;39661:21;;39685:16;;;;;;;;;;-1:-1:-1;39685:16:0;39661:40;;39730:4;39712;39717:1;39712:7;;;;;;-1:-1:-1;;;39712:7:0;;;;;;;;;-1:-1:-1;;;;;39712:23:0;;;:7;;;;;;;;;;:23;;;;39756:15;;:22;;;-1:-1:-1;;;39756:22:0;;;;:15;;;;;:20;;:22;;;;;39712:7;;39756:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39746:4;39751:1;39746:7;;;;;;-1:-1:-1;;;39746:7:0;;;;;;;;;-1:-1:-1;;;;;39746:32:0;;;:7;;;;;;;;;:32;39823:15;;39791:62;;39808:4;;39823:15;39841:11;39791:8;:62::i;:::-;39892:15;;:224;;-1:-1:-1;;;39892:224:0;;-1:-1:-1;;;;;39892:15:0;;;;:66;;:224;;39973:11;;39892:15;;40043:4;;40070;;40090:15;;39892:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39535:589;;:::o;40132:519::-;40312:15;;40280:62;;40297:4;;-1:-1:-1;;;;;40312:15:0;40330:11;40280:8;:62::i;:::-;40385:15;;:258;;-1:-1:-1;;;40385:258:0;;40457:4;40385:258;;;5879:34:1;;;5929:18;;;5922:34;;;40385:15:0;5972:18:1;;;5965:34;;;6015:18;;;6008:34;6058:19;;;6051:44;40617:15:0;6111:19:1;;;6104:35;-1:-1:-1;;;;;40385:15:0;;;;:31;;40424:9;;5813:19:1;;40385:258: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;6825:603::-;6937:4;6966:2;6995;6984:9;6977:21;7027:6;7021:13;7070:6;7065:2;7054:9;7050:18;7043:34;7095:4;7108:140;7122:6;7119:1;7116:13;7108:140;;;7217:14;;;7213:23;;7207:30;7183:17;;;7202:2;7179:26;7172:66;7137:10;;7108:140;;;7266:6;7263:1;7260:13;7257:2;;;7336:4;7331:2;7322:6;7311:9;7307:22;7303:31;7296:45;7257:2;-1:-1:-1;7412:2:1;7391:15;-1:-1:-1;;7387:29:1;7372:45;;;;7419:2;7368:54;;6946:482;-1:-1:-1;;;6946:482:1:o;7433:399::-;7635:2;7617:21;;;7674:2;7654:18;;;7647:30;7713:34;7708:2;7693:18;;7686:62;-1:-1:-1;;;7779:2:1;7764:18;;7757:33;7822:3;7807:19;;7607:225::o;10310:418::-;10512:2;10494:21;;;10551:2;10531:18;;;10524:30;10590:34;10585:2;10570:18;;10563:62;-1:-1:-1;;;10656:2:1;10641:18;;10634:52;10718:3;10703:19;;10484:244::o;13347:356::-;13549:2;13531:21;;;13568:18;;;13561:30;13627:34;13622:2;13607:18;;13600:62;13694:2;13679:18;;13521:182::o;15028:401::-;15230:2;15212:21;;;15269:2;15249:18;;;15242:30;15308:34;15303:2;15288:18;;15281:62;-1:-1:-1;;;15374:2:1;15359:18;;15352:35;15419:3;15404:19;;15202:227::o;16929:983::-;17191:4;17239:3;17228:9;17224:19;17270:6;17259:9;17252:25;17296:2;17334:6;17329:2;17318:9;17314:18;17307:34;17377:3;17372:2;17361:9;17357:18;17350:31;17401:6;17436;17430:13;17467:6;17459;17452:22;17505:3;17494:9;17490:19;17483:26;;17544:2;17536:6;17532:15;17518:29;;17565:4;17578:195;17592:6;17589:1;17586:13;17578:195;;;17657:13;;-1:-1:-1;;;;;17653:39:1;17641:52;;17748:15;;;;17713:12;;;;17689:1;17607:9;17578:195;;;-1:-1:-1;;;;;;;17829:32:1;;;;17824:2;17809:18;;17802:60;-1:-1:-1;;;17893:3:1;17878:19;17871:35;17790:3;17200:712;-1:-1:-1;;;17200:712:1:o;19079:128::-;19119:3;19150:1;19146:6;19143:1;19140:13;19137:2;;;19156:18;;:::i;:::-;-1:-1:-1;19192:9:1;;19127:80::o;19212:217::-;19252:1;19278;19268:2;;-1:-1:-1;;;19303:31:1;;19357:4;19354:1;19347:15;19385:4;19310:1;19375:15;19268:2;-1:-1:-1;19414:9:1;;19258:171::o;19434:168::-;19474:7;19540:1;19536;19532:6;19528:14;19525:1;19522:21;19517:1;19510:9;19503:17;19499:45;19496:2;;;19547:18;;:::i;:::-;-1:-1:-1;19587:9:1;;19486:116::o;19607:125::-;19647:4;19675:1;19672;19669:8;19666:2;;;19680:18;;:::i;:::-;-1:-1:-1;19717:9:1;;19656:76::o;19737:380::-;19816:1;19812:12;;;;19859;;;19880:2;;19934:4;19926:6;19922:17;19912:27;;19880:2;19987;19979:6;19976:14;19956:18;19953:38;19950:2;;;20033:10;20028:3;20024:20;20021:1;20014:31;20068:4;20065:1;20058:15;20096:4;20093:1;20086:15;19950:2;;19792:325;;;:::o;20122:127::-;20183:10;20178:3;20174:20;20171:1;20164:31;20214:4;20211:1;20204:15;20238:4;20235:1;20228:15;20254:131;-1:-1:-1;;;;;20329:31:1;;20319:42;;20309:2;;20375:1;20372;20365:12;20390:118;20476:5;20469:13;20462:21;20455:5;20452:32;20442:2;;20498:1;20495;20488:12

Swarm Source

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