ETH Price: $3,110.44 (+1.40%)
Gas: 15 Gwei

Token

Shib Alliance (Shiba)
 

Overview

Max Total Supply

3,000,000,000,000 Shiba

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
297,010.06595835 Shiba

Value
$0.00
0xd8d7e51caae47e7b23ca21bda30cf6f3e9e006f3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Shiba

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

// File: contracts/IERC20.sol

// 

pragma solidity ^0.6.0;

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

// File: contracts/Context.sol

pragma solidity >=0.6.0 <0.8.0;

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

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

// File: contracts/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

pragma solidity >=0.6.2;


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;
}
// File: contracts/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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;
}
// File: contracts/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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;
}
// File: contracts/IterableMapping.sol

// 
pragma solidity ^0.6.6;

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();
    }
}
// File: contracts/Ownable.sol

// 

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

pragma solidity ^0.6.0;


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

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

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

pragma solidity ^0.6.0;


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

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

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

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

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

pragma solidity ^0.6.6;

/**
 * @title SafeMathInt
 * @dev Math operations with safety checks that revert on error
 * @dev SafeMath adapted for int256
 * Based on code of  https://github.com/RequestNetwork/requestNetwork/blob/master/packages/requestNetworkSmartContracts/contracts/base/math/SafeMathInt.sol
 */
library SafeMathInt {
  function mul(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when multiplying INT256_MIN with -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && !(b == - 2**255 && a == -1));

    int256 c = a * b;
    require((b == 0) || (c / b == a));
    return c;
  }

  function div(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when dividing INT256_MIN by -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && (b > 0));

    return a / b;
  }

  function sub(int256 a, int256 b) internal pure returns (int256) {
    require((b >= 0 && a - b <= a) || (b < 0 && a - b > a));

    return a - b;
  }

  function add(int256 a, int256 b) internal pure returns (int256) {
    int256 c = a + b;
    require((b >= 0 && c >= a) || (b < 0 && c < a));
    return c;
  }

  function toUint256Safe(int256 a) internal pure returns (uint256) {
    require(a >= 0);
    return uint256(a);
  }
}
// File: contracts/SafeMathUint.sol

pragma solidity ^0.6.6;

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

// File: contracts/ERC20.sol

// 

pragma solidity ^0.6.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 9;
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

// 

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: contracts/DividendPayingToken.sol

// 

pragma solidity ^0.6.6;









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

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

  uint256 internal magnifiedDividendPerShare;
  uint256 internal lastAmount;
  
  address public  dividendToken = address(0x27C70Cd1946795B66be9d954418546998b546634);

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

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

  }
  

  receive() external payable {
  }

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

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

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

  function distributeLeashDividends(uint256 amount) public {
    require(totalSupply() > 0);

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

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(msg.sender);
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(dividendToken).transfer(user, _withdrawableDividend);

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

      return _withdrawableDividend;
    }

    return 0;
  }


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

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

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


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

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

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

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

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

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

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

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

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



pragma solidity ^0.6.6;


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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    address public dividendToken = address(0x27C70Cd1946795B66be9d954418546998b546634);


    bool private swapping;

    ShibaDividendTracker public dividendTracker;

    address public liquidityWallet;

    uint256 public swapTokensAtAmount = 100000 * (10**9);

    uint256 public  leashRewardsFee;
    uint256 public  liquidityFee;
    uint256 public immutable totalFees;

    // sells have fees of 12 and 6 (10 * 1.2 and 5 * 1.2)
    uint256 public  sellFeeIncreaseFactor = 120;

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

    address payable public marketingWallet = 0x289B956BcECBD628662A1F502921AB40d8F8fFA2;
    address payable public leashDonation = 0xc351155C80aCD043BD5F8FE7ffc8536af1fF9375;


    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
   
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

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

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

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

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

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


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

    event SendDividends(
        uint256 tokensSwapped,
        uint256 amount
    );

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

    constructor() public ERC20("Shib Alliance", "Shiba") {
        uint256 _leashRewardsFee = 7;
        uint256 _liquidityFee = 8;

        leashRewardsFee = _leashRewardsFee;
        liquidityFee = _liquidityFee;
        totalFees = _leashRewardsFee.add(_liquidityFee);


        dividendTracker = new ShibaDividendTracker();

        liquidityWallet = owner();

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

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

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

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

    receive() external payable {

    }
    
    
    function setSellFeeFactor (uint256 newSellFeeFactor) external onlyOwner {
        sellFeeIncreaseFactor = newSellFeeFactor;
    }
    
    function setMinTokenBalForDividends(uint256 newTokenBalForDividends) external onlyOwner {
        dividendTracker.setMinimumTokenBalanceForDividends(newTokenBalForDividends);
    }
    
    function excludeFromRewards(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }
    
    function setleashRewardsFee(uint256 newleashRewardsFee) external onlyOwner {
        leashRewardsFee = newleashRewardsFee;
    }
    
    function changeDividendAddress(address newAddress) external onlyOwner {
        dividendToken = newAddress;
    }
    
    function setLiquidityFee(uint256 newLiquidityFee) external onlyOwner {
        liquidityFee = newLiquidityFee;
    }
    
    function changeMarketingWallet(address payable newAddress) external onlyOwner {
        marketingWallet = newAddress;
    }
    
    function changeLeashDonationAddress(address payable newAddress) external onlyOwner {
        leashDonation = newAddress;
    }
    

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

        ShibaDividendTracker newDividendTracker = ShibaDividendTracker(payable(newAddress));

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

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

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

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

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

        emit ExcludeFromFees(account, excluded);
    }

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

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }


    function updateLiquidityWallet(address newLiquidityWallet) public onlyOwner {
        require(newLiquidityWallet != liquidityWallet, "Shiba: The liquidity wallet is already this address");
        excludeFromFees(newLiquidityWallet, true);
        emit LiquidityWalletUpdated(newLiquidityWallet, liquidityWallet);
        liquidityWallet = newLiquidityWallet;
    }

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

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

    function getClaimWait() external view returns(uint256) {
        return dividendTracker.claimWait();
    }
    
    function isExcludedFromRewards(address account) public view returns(bool) {
        return dividendTracker.excludedFromDividends(account);
    }

    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(msg.sender, false);
    }

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

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

    
    function sendETHToMarketing(uint256 amount) private { 
        swapTokensForEth(amount); 
        marketingWallet.transfer(address(this).balance); 
    }
    
    function sendLeashToDonation (uint256 amount) private {
        swapTokensForLeash(amount,leashDonation);
    }

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


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

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

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

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

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

            swapping = false;
        }


        bool takeFee = !swapping;

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

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

            // if sell, multiply by 1.2
            if(automatedMarketMakerPairs[to]) {
                fees = fees.mul(sellFeeIncreaseFactor).div(100);
            }

            amount = amount.sub(fees);

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

        super._transfer(from, to, amount);

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

        if(!swapping) {
            uint256 gas = gasForProcessing;

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

            }
        }
    }

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

        // 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);
        sendETHToMarketing(portionForFees);
        sendLeashToDonation(feesForDonation);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

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


    function swapTokensForLeash(uint256 tokenAmount, address recipient) private {
       
        // generate the uniswap pair path of weth -> busd
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = dividendToken;

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

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

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

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

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForLeash(tokens, address(this));
        uint256 dividends = IERC20(dividendToken).balanceOf(address(this));
        bool success = IERC20(dividendToken).transfer(address(dividendTracker), dividends);
        
        if (success) {
            dividendTracker.distributeLeashDividends(dividends);
            emit SendDividends(tokens, dividends);
        }
    }
    
}

contract ShibaDividendTracker 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  minimumTokenBalanceForDividends;

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

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

    constructor() public  DividendPayingToken("Shiba_Dividend_Tracker", "Shiba_Dividend_Tracker") {
        claimWait = 3600;
        minimumTokenBalanceForDividends = 1 * (10**9); 
    }
    
    function setMinimumTokenBalanceForDividends(uint256 newMinTokenBalForDividends) external onlyOwner {
        minimumTokenBalanceForDividends = newMinTokenBalForDividends * (10**9);
    }

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

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

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

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

        emit ExcludeFromDividends(account);
    }

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

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

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


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

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

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


                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }


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

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

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

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

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

        return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

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

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

        processAccount(account, true);
    }

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

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

        uint256 _lastProcessedIndex = lastProcessedIndex;

        uint256 gasUsed = 0;

        uint256 gasLeft = gasleft();

        uint256 iterations = 0;
        uint256 claims = 0;

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

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

            address account = tokenHoldersMap.keys[_lastProcessedIndex];

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

            iterations++;

            uint256 newGasLeft = gasleft();

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

            gasLeft = newGasLeft;
        }

        lastProcessedIndex = _lastProcessedIndex;

        return (iterations, claims, lastProcessedIndex);
    }

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

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

        return false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"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":"newAddress","type":"address"}],"name":"changeDividendAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"changeLeashDonationAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract ShibaDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leashDonation","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leashRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeIncreaseFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"newLiquidityFee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenBalForDividends","type":"uint256"}],"name":"setMinTokenBalForDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellFeeFactor","type":"uint256"}],"name":"setSellFeeFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newleashRewardsFee","type":"uint256"}],"name":"setleashRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLiquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600780546001600160a01b03199081167327c70cd1946795b66be9d954418546998b54663417909155655af3107a4000600a556078600d55620493e0600e55600f8054821673289b956bcecbd628662a1f502921ab40d8f8ffa21790556010805490911673c351155c80acd043bd5f8fe7ffc8536af1ff93751790553480156200008d57600080fd5b50604080518082018252600d81526c5368696220416c6c69616e636560981b602080830191825283518085019094526005845264536869626160d81b908401528151919291620000e091600391620009bc565b508051620000f6906004906020840190620009bc565b50506005805460ff1916600917905550600062000112620005c2565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007600b8190556008600c8190556200018e8282620005c6602090811b6200268b17901c565b60a0526040516200019f9062000a41565b604051809103906000f080158015620001bc573d6000803e3d6000fd5b50600880546001600160a01b0319166001600160a01b0392909216919091179055620001e762000628565b600960006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200026257600080fd5b505afa15801562000277573d6000803e3d6000fd5b505050506040513d60208110156200028e57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002df57600080fd5b505afa158015620002f4573d6000803e3d6000fd5b505050506040513d60208110156200030b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200035e57600080fd5b505af115801562000373573d6000803e3d6000fd5b505050506040513d60208110156200038a57600080fd5b5051600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b0319166080529050620003c88160016200063c565b6008546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200041657600080fd5b505af11580156200042b573d6000803e3d6000fd5b50506008546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200047c57600080fd5b505af115801562000491573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620004b262000628565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620004f257600080fd5b505af115801562000507573d6000803e3d6000fd5b50506008546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b1580156200055a57600080fd5b505af11580156200056f573d6000803e3d6000fd5b50506009546200058d92506001600160a01b0316905060016200076f565b6200059a3060016200076f565b620005b8620005a862000628565b68a2a15d09519be00000620008a8565b5050505062000a66565b3390565b60008282018381101562000621576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60055461010090046001600160a01b031690565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156200069c5760405162461bcd60e51b815260040180806020018281038252603f81526020018062006c13603f913960400191505060405180910390fd5b6001600160a01b0382166000908152601260205260409020805460ff1916821580159190911790915562000733576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156200071957600080fd5b505af11580156200072e573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b62000779620005c2565b6001600160a01b03166200078c62000628565b6001600160a01b031614620007e8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415620008485760405162461bcd60e51b815260040180806020018281038252603181526020018062006be26031913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b03821662000904576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200091260008383620009b7565b6200092e81600254620005c660201b6200268b1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620009619183906200268b620005c6821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009ff57805160ff191683800117855562000a2f565b8280016001018555821562000a2f579182015b8281111562000a2f57825182559160200191906001019062000a12565b5062000a3d92915062000a4f565b5090565b6125b7806200462b83390190565b5b8082111562000a3d576000815560010162000a50565b60805160601c60a051613b8f62000a9c60003980611020528061292552806129f15250806112bc5280611cc35250613b8f6000f3fe60806040526004361061036f5760003560e01c806372afd0e8116101c6578063ad56c13c116100f7578063e2f4560511610095578063e98030c71161006f578063e98030c714610c95578063f27fd25414610cbf578063f2fde38b14610ce9578063f5c27ab914610d1c57610376565b8063e2f4560514610c38578063e37ba8f914610c4d578063e7841ec014610c8057610376565b8063c0246668116100d1578063c024666814610b2e578063c492f04614610b69578063d469801614610be8578063dd62ed3e14610bfd57610376565b8063ad56c13c14610a4a578063b62496f514610ac8578063bb85c6d114610afb57610376565b80639a7a23d611610164578063a26579ad1161013e578063a26579ad14610990578063a457c2d7146109a5578063a8b9d240146109de578063a9059cbb14610a1157610376565b80639a7a23d6146109165780639c1b8af5146109515780639ff0fe541461096657610376565b806388bdd9be116101a057806388bdd9be146108a45780638da5cb5b146108d757806395d89b41146108ec57806398118cb41461090157610376565b806372afd0e81461083b57806375f0a87414610865578063871c128d1461087a57610376565b8063313ce567116102a05780636231ac861161023e5780636843cd84116102185780636843cd8414610796578063700bb191146107c957806370a08231146107f3578063715018a61461082657610376565b80636231ac861461073957806364b0f6531461074e57806365b8dbc01461076357610376565b806339b312d51161027a57806339b312d5146106a957806349bd5a5e146106dc5780634e71d92d146106f15780634fbee1931461070657610376565b8063313ce5671461061b578063357bf15c14610646578063395093511461067057610376565b80631582358e1161030d57806322bd3f7f116102e757806322bd3f7f1461059957806323b872dd146105ae5780632c1f5216146105f157806330bb4cff1461060657610376565b80631582358e1461053e5780631694505e1461056f57806318160ddd1461058457610376565b8063095ea7b311610349578063095ea7b3146104645780630e832273146104b1578063111e0376146104e457806313114a9d1461051757610376565b806306760ff71461037b57806306fdde03146103b0578063071107141461043a57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103ae6004803603602081101561039e57600080fd5b50356001600160a01b0316610d31565b005b3480156103bc57600080fd5b506103c5610db5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103ff5781810151838201526020016103e7565b50505050905090810190601f16801561042c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044657600080fd5b506103ae6004803603602081101561045d57600080fd5b5035610e4b565b34801561047057600080fd5b5061049d6004803603604081101561048757600080fd5b506001600160a01b038135169060200135610eb2565b604080519115158252519081900360200190f35b3480156104bd57600080fd5b5061049d600480360360208110156104d457600080fd5b50356001600160a01b0316610ed0565b3480156104f057600080fd5b506103ae6004803603602081101561050757600080fd5b50356001600160a01b0316610f53565b34801561052357600080fd5b5061052c61101e565b60408051918252519081900360200190f35b34801561054a57600080fd5b50610553611042565b604080516001600160a01b039092168252519081900360200190f35b34801561057b57600080fd5b50610553611051565b34801561059057600080fd5b5061052c611060565b3480156105a557600080fd5b5061052c611066565b3480156105ba57600080fd5b5061049d600480360360608110156105d157600080fd5b506001600160a01b0381358116916020810135909116906040013561106c565b3480156105fd57600080fd5b506105536110f3565b34801561061257600080fd5b5061052c611102565b34801561062757600080fd5b50610630611178565b6040805160ff9092168252519081900360200190f35b34801561065257600080fd5b506103ae6004803603602081101561066957600080fd5b5035611181565b34801561067c57600080fd5b5061049d6004803603604081101561069357600080fd5b506001600160a01b0381351690602001356111e8565b3480156106b557600080fd5b506103ae600480360360208110156106cc57600080fd5b50356001600160a01b0316611236565b3480156106e857600080fd5b506105536112ba565b3480156106fd57600080fd5b506103ae6112de565b34801561071257600080fd5b5061049d6004803603602081101561072957600080fd5b50356001600160a01b0316611363565b34801561074557600080fd5b50610553611381565b34801561075a57600080fd5b5061052c611390565b34801561076f57600080fd5b506103ae6004803603602081101561078657600080fd5b50356001600160a01b03166113d5565b3480156107a257600080fd5b5061052c600480360360208110156107b957600080fd5b50356001600160a01b03166114e1565b3480156107d557600080fd5b506103ae600480360360208110156107ec57600080fd5b5035611532565b3480156107ff57600080fd5b5061052c6004803603602081101561081657600080fd5b50356001600160a01b0316611619565b34801561083257600080fd5b506103ae611634565b34801561084757600080fd5b506103ae6004803603602081101561085e57600080fd5b50356116e6565b34801561087157600080fd5b5061055361174d565b34801561088657600080fd5b506103ae6004803603602081101561089d57600080fd5b503561175c565b3480156108b057600080fd5b506103ae600480360360208110156108c757600080fd5b50356001600160a01b0316611883565b3480156108e357600080fd5b50610553611be4565b3480156108f857600080fd5b506103c5611bf8565b34801561090d57600080fd5b5061052c611c59565b34801561092257600080fd5b506103ae6004803603604081101561093957600080fd5b506001600160a01b0381351690602001351515611c5f565b34801561095d57600080fd5b5061052c611d3c565b34801561097257600080fd5b506103ae6004803603602081101561098957600080fd5b5035611d42565b34801561099c57600080fd5b5061052c611df1565b3480156109b157600080fd5b5061049d600480360360408110156109c857600080fd5b506001600160a01b038135169060200135611e36565b3480156109ea57600080fd5b5061052c60048036036020811015610a0157600080fd5b50356001600160a01b0316611e9e565b348015610a1d57600080fd5b5061049d60048036036040811015610a3457600080fd5b506001600160a01b038135169060200135611eef565b348015610a5657600080fd5b50610a7d60048036036020811015610a6d57600080fd5b50356001600160a01b0316611f03565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610ad457600080fd5b5061049d60048036036020811015610aeb57600080fd5b50356001600160a01b0316611fe3565b348015610b0757600080fd5b506103ae60048036036020811015610b1e57600080fd5b50356001600160a01b0316611ff8565b348015610b3a57600080fd5b506103ae60048036036040811015610b5157600080fd5b506001600160a01b038135169060200135151561207c565b348015610b7557600080fd5b506103ae60048036036040811015610b8c57600080fd5b810190602081018135640100000000811115610ba757600080fd5b820183602082011115610bb957600080fd5b80359060200191846020830284011164010000000083111715610bdb57600080fd5b919350915035151561219c565b348015610bf457600080fd5b506105536122c6565b348015610c0957600080fd5b5061052c60048036036040811015610c2057600080fd5b506001600160a01b03813581169160200135166122d5565b348015610c4457600080fd5b5061052c612300565b348015610c5957600080fd5b506103ae60048036036020811015610c7057600080fd5b50356001600160a01b0316612306565b348015610c8c57600080fd5b5061052c61241d565b348015610ca157600080fd5b506103ae60048036036020811015610cb857600080fd5b5035612462565b348015610ccb57600080fd5b50610a7d60048036036020811015610ce257600080fd5b5035612511565b348015610cf557600080fd5b506103ae60048036036020811015610d0c57600080fd5b50356001600160a01b0316612577565b348015610d2857600080fd5b5061052c612685565b610d396126ec565b6001600160a01b0316610d4a611be4565b6001600160a01b031614610d93576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b5050505050905090565b610e536126ec565b6001600160a01b0316610e64611be4565b6001600160a01b031614610ead576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600b55565b6000610ec6610ebf6126ec565b84846126f0565b5060015b92915050565b60085460408051634e7b827f60e01b81526001600160a01b03848116600483015291516000939290921691634e7b827f91602480820192602092909190829003018186803b158015610f2157600080fd5b505afa158015610f35573d6000803e3d6000fd5b505050506040513d6020811015610f4b57600080fd5b505192915050565b610f5b6126ec565b6001600160a01b0316610f6c611be4565b6001600160a01b031614610fb5576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6007546001600160a01b031681565b6006546001600160a01b031681565b60025490565b600d5481565b60006110798484846127dc565b6110e9846110856126ec565b6110e485604051806060016040528060288152602001613948602891396001600160a01b038a166000908152600160205260408120906110c36126ec565b6001600160a01b031681526020810191909152604001600020549190612c5d565b6126f0565b5060019392505050565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561114757600080fd5b505afa15801561115b573d6000803e3d6000fd5b505050506040513d602081101561117157600080fd5b5051905090565b60055460ff1690565b6111896126ec565b6001600160a01b031661119a611be4565b6001600160a01b0316146111e3576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600c55565b6000610ec66111f56126ec565b846110e485600160006112066126ec565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061268b565b61123e6126ec565b6001600160a01b031661124f611be4565b6001600160a01b031614611298576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561133557600080fd5b505af1158015611349573d6000803e3d6000fd5b505050506040513d602081101561135f57600080fd5b5050565b6001600160a01b031660009081526011602052604090205460ff1690565b6010546001600160a01b031681565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561114757600080fd5b6113dd6126ec565b6001600160a01b03166113ee611be4565b6001600160a01b031614611437576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156114845760405162461bcd60e51b815260040180806020018281038252602a815260200180613ac3602a913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015610f2157600080fd5b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561158957600080fd5b505af115801561159d573d6000803e3d6000fd5b505050506040513d60608110156115b357600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b61163c6126ec565b6001600160a01b031661164d611be4565b6001600160a01b031614611696576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6116ee6126ec565b6001600160a01b03166116ff611be4565b6001600160a01b031614611748576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600d55565b600f546001600160a01b031681565b6117646126ec565b6001600160a01b0316611775611be4565b6001600160a01b0316146117be576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b62030d4081101580156117d457506207a1208111155b61180f5760405162461bcd60e51b815260040180806020018281038252603b815260200180613a88603b913960400191505060405180910390fd5b600e548114156118505760405162461bcd60e51b81526004018080602001828103825260338152602001806138f46033913960400191505060405180910390fd5b600e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600e55565b61188b6126ec565b6001600160a01b031661189c611be4565b6001600160a01b0316146118e5576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6008546001600160a01b03828116911614156119325760405162461bcd60e51b81526004018080602001828103825260348152602001806139c36034913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561197a57600080fd5b505afa15801561198e573d6000803e3d6000fd5b505050506040513d60208110156119a457600080fd5b50516001600160a01b0316146119eb5760405162461bcd60e51b81526004018080602001828103825260498152602001806138156049913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611a3a57600080fd5b505af1158015611a4e573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611a9957600080fd5b505af1158015611aad573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611ac8611be4565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611b0757600080fd5b505af1158015611b1b573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611b6d57600080fd5b505af1158015611b81573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b60055461010090046001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b600c5481565b611c676126ec565b6001600160a01b0316611c78611be4565b6001600160a01b031614611cc1576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415611d325760405162461bcd60e51b8152600401808060200182810382526048815260200180613b126048913960600191505060405180910390fd5b61135f8282612cf4565b600e5481565b611d4a6126ec565b6001600160a01b0316611d5b611be4565b6001600160a01b031614611da4576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b60085460408051635ebf4db960e01b81526004810184905290516001600160a01b0390921691635ebf4db99160248082019260009290919082900301818387803b15801561100357600080fd5b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561114757600080fd5b6000610ec6611e436126ec565b846110e485604051806060016040528060258152602001613aed6025913960016000611e6d6126ec565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612c5d565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b158015610f2157600080fd5b6000610ec6611efc6126ec565b84846127dc565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b158015611f7257600080fd5b505afa158015611f86573d6000803e3d6000fd5b505050506040513d610100811015611f9d57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b60126020526000908152604090205460ff1681565b6120006126ec565b6001600160a01b0316612011611be4565b6001600160a01b03161461205a576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6120846126ec565b6001600160a01b0316612095611be4565b6001600160a01b0316146120de576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff161515811515141561213c5760405162461bcd60e51b81526004018080602001828103825260318152602001806138846031913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6121a46126ec565b6001600160a01b03166121b5611be4565b6001600160a01b0316146121fe576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b60005b8281101561225357816011600086868581811061221a57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101612201565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b6009546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b61230e6126ec565b6001600160a01b031661231f611be4565b6001600160a01b031614612368576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6009546001600160a01b03828116911614156123b55760405162461bcd60e51b81526004018080602001828103825260338152602001806139906033913960400191505060405180910390fd5b6123c081600161207c565b6009546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561114757600080fd5b61246a6126ec565b6001600160a01b031661247b611be4565b6001600160a01b0316146124c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561100357600080fd5b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015611f7257600080fd5b61257f6126ec565b6001600160a01b0316612590611be4565b6001600160a01b0316146125d9576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6001600160a01b03811661261e5760405162461bcd60e51b81526004018080602001828103825260268152602001806137cd6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b5481565b6000828201838110156126e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166127355760405162461bcd60e51b8152600401808060200182810382526024815260200180613a646024913960400191505060405180910390fd5b6001600160a01b03821661277a5760405162461bcd60e51b81526004018080602001828103825260228152602001806137f36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166128215760405162461bcd60e51b8152600401808060200182810382526025815260200180613a3f6025913960400191505060405180910390fd5b6001600160a01b0382166128665760405162461bcd60e51b81526004018080602001828103825260238152602001806139f76023913960400191505060405180910390fd5b8061287c5761287783836000612e22565b612c58565b600061288730611619565b600a54909150811080159081906128a85750600754600160a01b900460ff16155b80156128cd57506001600160a01b03851660009081526012602052604090205460ff16155b80156128e757506009546001600160a01b03868116911614155b801561290157506009546001600160a01b03858116911614155b15612987576007805460ff60a01b1916600160a01b179055600c54600090612956907f000000000000000000000000000000000000000000000000000000000000000090612950908690612f7d565b90612fd6565b90506129618161303d565b600061296c30611619565b905061297781613101565b50506007805460ff60a01b191690555b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b9092048216159116806129d557506001600160a01b03851660009081526011602052604090205460ff165b156129de575060005b8015612a6f576000612a156064612950877f0000000000000000000000000000000000000000000000000000000000000000612f7d565b6001600160a01b03871660009081526012602052604090205490915060ff1615612a5657612a536064612950600d5484612f7d90919063ffffffff16565b90505b612a6085826132b9565b9450612a6d873083612e22565b505b612a7a868686612e22565b6008546001600160a01b031663e30443bc87612a9581611619565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612adb57600080fd5b505af1925050508015612aec575060015b506008546001600160a01b031663e30443bc86612b0881611619565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612b4e57600080fd5b505af1925050508015612b5f575060015b50600754600160a01b900460ff16612c5457600e54600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b158015612bc557600080fd5b505af1925050508015612bf957506040513d6060811015612be557600080fd5b508051602082015160409092015190919060015b612c0257612c52565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b60008184841115612cec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612cb1578181015183820152602001612c99565b50505050905090810190601f168015612cde5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526012602052604090205460ff1615158115151415612d525760405162461bcd60e51b815260040180806020018281038252603f8152602001806138b5603f913960400191505060405180910390fd5b6001600160a01b0382166000908152601260205260409020805460ff19168215801591909117909155612de6576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015612dcd57600080fd5b505af1158015612de1573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612e675760405162461bcd60e51b8152600401808060200182810382526025815260200180613a1a6025913960400191505060405180910390fd5b6001600160a01b038216612eac5760405162461bcd60e51b81526004018080602001828103825260238152602001806137aa6023913960400191505060405180910390fd5b612eb7838383612c58565b612ef48160405180606001604052806026815260200161385e602691396001600160a01b0386166000908152602081905260409020549190612c5d565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612f23908261268b565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082612f8c57506000610eca565b82820282848281612f9957fe5b04146126e55760405162461bcd60e51b81526004018080602001828103825260218152602001806139276021913960400191505060405180910390fd5b600080821161302c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161303557fe5b049392505050565b600061304a826005612fd6565b90506000613059836005612fd6565b90506000613068846004612fd6565b905060006130828261307c858189896132b9565b906132b9565b90504761308e85613316565b600061309a47836132b9565b90506130a685826134bc565b6130af8361357a565b6130b8846135bc565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050505050565b61310b81306135d6565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561315657600080fd5b505afa15801561316a573d6000803e3d6000fd5b505050506040513d602081101561318057600080fd5b50516007546008546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051939450600093919092169163a9059cbb91604480830192602092919082900301818787803b1580156131e057600080fd5b505af11580156131f4573d6000803e3d6000fd5b505050506040513d602081101561320a57600080fd5b505190508015612c58576008546040805163350312d760e01b81526004810185905290516001600160a01b039092169163350312d79160248082019260009290919082900301818387803b15801561326157600080fd5b505af1158015613275573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600082821115613310576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061334457fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561339857600080fd5b505afa1580156133ac573d6000803e3d6000fd5b505050506040513d60208110156133c257600080fd5b50518151829060019081106133d357fe5b6001600160a01b0392831660209182029290920101526006546133f991309116846126f0565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561347f578181015183820152602001613467565b505050509050019650505050505050600060405180830381600087803b1580156134a857600080fd5b505af1158015612c54573d6000803e3d6000fd5b6006546134d49030906001600160a01b0316846126f0565b6006546009546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561354957600080fd5b505af115801561355d573d6000803e3d6000fd5b50505050506040513d606081101561357457600080fd5b50505050565b61358381613316565b600f546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561135f573d6000803e3d6000fd5b6010546135d39082906001600160a01b03166135d6565b50565b60408051600380825260808201909252606091602082018380368337019050509050308160008151811061360657fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561365a57600080fd5b505afa15801561366e573d6000803e3d6000fd5b505050506040513d602081101561368457600080fd5b505181518290600190811061369557fe5b6001600160a01b0392831660209182029290920101526007548251911690829060029081106136c057fe5b6001600160a01b0392831660209182029290920101526006546136e691309116856126f0565b600654604051635c11d79560e01b8152600481018581526000602483018190526001600160a01b038681166064850152426084850181905260a060448601908152875160a487015287519290961695635c11d795958a9589948b9493919260c40190602080880191028083838b5b8381101561376c578181015183820152602001613754565b505050509050019650505050505050600060405180830381600087803b15801561379557600080fd5b505af1158015612c52573d6000803e3d6000fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737353686962613a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520536869626120746f6b656e20636f6e747261637445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553686962613a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642753686962613a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756553686962613a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657253686962613a20546865206c69717569646974792077616c6c657420697320616c72656164792074686973206164647265737353686962613a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737353686962613a207472616e7366657220746f20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353686962613a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737353686962613a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303053686962613a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f53686962613a2054686520554e495357415020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b65725061697273a2646970667358221220603023c8c2bc045200056c4cbdb68685b1d6cda5e288fd38e893af627d91776164736f6c634300060c00336080604052600880546001600160a01b0319167327c70cd1946795b66be9d954418546998b5466341790553480156200003757600080fd5b5060408051808201825260168082527f53686962615f4469766964656e645f547261636b65720000000000000000000060208084018281528551808701909652928552840152815191929183918391620000949160039162000130565b508051620000aa90600490602084019062000130565b50506005805460ff191660091790555060009150620000ca90506200012c565b600c80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e10601455633b9aca00601555620001cc565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b6123db80620001dc6000396000f3fe6080604052600436106102295760003560e01c806370a0823111610123578063aafd847a116100ab578063e7841ec01161006f578063e7841ec014610854578063e98030c714610869578063f2fde38b14610893578063fbcbc0f1146108c6578063ffb2c479146108f957610230565b8063aafd847a1461075d578063bc4c4b3714610790578063be10b614146107cb578063dd62ed3e146107e0578063e30443bc1461081b57610230565b806391b89fba116100f257806391b89fba1461067057806395d89b41146106a3578063a457c2d7146106b8578063a8b9d240146106f1578063a9059cbb1461072457610230565b806370a08231146105fe578063715018a61461063157806385a6b3ae146106465780638da5cb5b1461065b57610230565b80633009a609116101b15780634e7b827f116101755780634e7b827f146105025780635183d6fd146105355780635ebf4db9146105aa5780636a474002146105d45780636f2789ec146105e957610230565b80633009a6091461042c578063313ce5671461044157806331e79db01461046c578063350312d71461049f57806339509351146104c957610230565b80631582358e116101f85780631582358e1461033d57806318160ddd1461036e578063226cfa3d1461038357806323b872dd146103b657806327ce0147146103f957610230565b806303c833021461023557806306fdde031461023f578063095ea7b3146102c957806309bbedde1461031657610230565b3661023057005b600080fd5b61023d610941565b005b34801561024b57600080fd5b506102546109d2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028e578181015183820152602001610276565b50505050905090810190601f1680156102bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d557600080fd5b50610302600480360360408110156102ec57600080fd5b506001600160a01b038135169060200135610a68565b604080519115158252519081900360200190f35b34801561032257600080fd5b5061032b610a86565b60408051918252519081900360200190f35b34801561034957600080fd5b50610352610a8c565b604080516001600160a01b039092168252519081900360200190f35b34801561037a57600080fd5b5061032b610a9b565b34801561038f57600080fd5b5061032b600480360360208110156103a657600080fd5b50356001600160a01b0316610aa1565b3480156103c257600080fd5b50610302600480360360608110156103d957600080fd5b506001600160a01b03813581169160208101359091169060400135610ab3565b34801561040557600080fd5b5061032b6004803603602081101561041c57600080fd5b50356001600160a01b0316610b3a565b34801561043857600080fd5b5061032b610b99565b34801561044d57600080fd5b50610456610b9f565b6040805160ff9092168252519081900360200190f35b34801561047857600080fd5b5061023d6004803603602081101561048f57600080fd5b50356001600160a01b0316610ba8565b3480156104ab57600080fd5b5061023d600480360360208110156104c257600080fd5b5035610d0e565b3480156104d557600080fd5b50610302600480360360408110156104ec57600080fd5b506001600160a01b038135169060200135610d8e565b34801561050e57600080fd5b506103026004803603602081101561052557600080fd5b50356001600160a01b0316610ddc565b34801561054157600080fd5b5061055f6004803603602081101561055857600080fd5b5035610df1565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b3480156105b657600080fd5b5061023d600480360360208110156105cd57600080fd5b5035610f50565b3480156105e057600080fd5b5061023d610fbd565b3480156105f557600080fd5b5061032b610ff4565b34801561060a57600080fd5b5061032b6004803603602081101561062157600080fd5b50356001600160a01b0316610ffa565b34801561063d57600080fd5b5061023d611015565b34801561065257600080fd5b5061032b6110c1565b34801561066757600080fd5b506103526110c7565b34801561067c57600080fd5b5061032b6004803603602081101561069357600080fd5b50356001600160a01b03166110d6565b3480156106af57600080fd5b506102546110e1565b3480156106c457600080fd5b50610302600480360360408110156106db57600080fd5b506001600160a01b038135169060200135611142565b3480156106fd57600080fd5b5061032b6004803603602081101561071457600080fd5b50356001600160a01b03166111aa565b34801561073057600080fd5b506103026004803603604081101561074757600080fd5b506001600160a01b0381351690602001356111d6565b34801561076957600080fd5b5061032b6004803603602081101561078057600080fd5b50356001600160a01b03166111ea565b34801561079c57600080fd5b50610302600480360360408110156107b357600080fd5b506001600160a01b0381351690602001351515611205565b3480156107d757600080fd5b5061032b6112e4565b3480156107ec57600080fd5b5061032b6004803603604081101561080357600080fd5b506001600160a01b03813581169160200135166112ea565b34801561082757600080fd5b5061023d6004803603604081101561083e57600080fd5b506001600160a01b038135169060200135611315565b34801561086057600080fd5b5061032b6114cb565b34801561087557600080fd5b5061023d6004803603602081101561088c57600080fd5b50356114d1565b34801561089f57600080fd5b5061023d600480360360208110156108b657600080fd5b50356001600160a01b03166115f7565b3480156108d257600080fd5b5061055f600480360360208110156108e957600080fd5b50356001600160a01b03166116fa565b34801561090557600080fd5b506109236004803603602081101561091c57600080fd5b503561186d565b60408051938452602084019290925282820152519081900360600190f35b600061094b610a9b565b1161095557600080fd5b34156109d057610986610966610a9b565b61097434600160801b61196b565b8161097b57fe5b6006549190046119cb565b60065560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600b546109cc90346119cb565b600b555b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a7c610a75611a25565b8484611a29565b5060015b92915050565b600d5490565b6008546001600160a01b031681565b60025490565b60136020526000908152604090205481565b6000610ac0848484611b15565b610b3084610acc611a25565b610b2b856040518060600160405280602881526020016122f4602891396001600160a01b038a16600090815260016020526040812090610b0a611a25565b6001600160a01b031681526020810191909152604001600020549190611b4c565b611a29565b5060019392505050565b6001600160a01b038116600090815260096020526040812054600160801b90610b8990610b8490610b7e610b79610b7088610ffa565b6006549061196b565b611be3565b90611bf3565b611c26565b81610b9057fe5b0490505b919050565b60115481565b60055460ff1690565b610bb0611a25565b6001600160a01b0316610bc16110c7565b6001600160a01b031614610c0a576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526012602052604090205460ff1615610c3057600080fd5b6001600160a01b0381166000908152601260205260408120805460ff19166001179055610c5e908290611c39565b6040805163131836e760e21b8152600d60048201526001600160a01b0383166024820152905173b15dbc925c1294d191b34db196bbac55b9d350ad91634c60db9c916044808301926000929190829003018186803b158015610cbf57600080fd5b505af4158015610cd3573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610d18610a9b565b11610d2257600080fd5b8015610d8b57610d41610d33610a9b565b61097483600160801b61196b565b60065560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600b54610d8790826119cb565b600b555b50565b6000610a7c610d9b611a25565b84610b2b8560016000610dac611a25565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906119cb565b60126020526000908152604090205460ff1681565b600080600080600080600080600d73b15dbc925c1294d191b34db196bbac55b9d350ad63deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610e4f57600080fd5b505af4158015610e63573d6000803e3d6000fd5b505050506040513d6020811015610e7957600080fd5b50518910610ea0575060009650600019955085945086935083925082915081905080610f45565b6000600d73b15dbc925c1294d191b34db196bbac55b9d350ad63d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610efc57600080fd5b505af4158015610f10573d6000803e3d6000fd5b505050506040513d6020811015610f2657600080fd5b50519050610f33816116fa565b98509850985098509850985098509850505b919395975091939597565b610f58611a25565b6001600160a01b0316610f696110c7565b6001600160a01b031614610fb2576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b633b9aca0002601555565b60405162461bcd60e51b815260040180806020018281038252606781526020018061226c6067913960800191505060405180910390fd5b60145481565b6001600160a01b031660009081526020819052604090205490565b61101d611a25565b6001600160a01b031661102e6110c7565b6001600160a01b031614611077576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600b5481565b600c546001600160a01b031690565b6000610a80826111aa565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b6000610a7c61114f611a25565b84610b2b856040518060600160405280602581526020016123816025913960016000611179611a25565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b4c565b6001600160a01b0381166000908152600a6020526040812054610a80906111d084610b3a565b90611c92565b6000610a7c6111e3611a25565b8484611b15565b6001600160a01b03166000908152600a602052604090205490565b600061120f611a25565b6001600160a01b03166112206110c7565b6001600160a01b031614611269576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b600061127484611cef565b905080156112da576001600160a01b0384166000818152601360209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a36001915050610a80565b5060009392505050565b60155481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61131d611a25565b6001600160a01b031661132e6110c7565b6001600160a01b031614611377576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526012602052604090205460ff161561139d576114c7565b6015548110611435576113b08282611c39565b60408051632f0ad01760e21b8152600d60048201526001600160a01b038416602482015260448101839052905173b15dbc925c1294d191b34db196bbac55b9d350ad9163bc2b405c916064808301926000929190829003018186803b15801561141857600080fd5b505af415801561142c573d6000803e3d6000fd5b505050506114ba565b611440826000611c39565b6040805163131836e760e21b8152600d60048201526001600160a01b0384166024820152905173b15dbc925c1294d191b34db196bbac55b9d350ad91634c60db9c916044808301926000929190829003018186803b1580156114a157600080fd5b505af41580156114b5573d6000803e3d6000fd5b505050505b6114c5826001611205565b505b5050565b60115490565b6114d9611a25565b6001600160a01b03166114ea6110c7565b6001600160a01b031614611533576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b610e1081101580156115485750620151808111155b6115835760405162461bcd60e51b815260040180806020018281038252604b8152602001806121f5604b913960600191505060405180910390fd5b6014548114156115c45760405162461bcd60e51b815260040180806020018281038252603d8152602001806121b8603d913960400191505060405180910390fd5b60145460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601455565b6115ff611a25565b6001600160a01b03166116106110c7565b6001600160a01b031614611659576040805162461bcd60e51b8152602060048201819052602482015260008051602061231c833981519152604482015290519081900360640190fd5b6001600160a01b03811661169e5760405162461bcd60e51b81526004018080602001828103825260268152602001806121706026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600d73b15dbc925c1294d191b34db196bbac55b9d350ad6317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561176c57600080fd5b505af4158015611780573d6000803e3d6000fd5b505050506040513d602081101561179657600080fd5b505196506000199550600087126117fa576011548711156117c6576011546117bf908890611e5e565b95506117fa565b601154600d54600091106117db5760006117ea565b601154600d546117ea91611c92565b90506117f68882611bf3565b9650505b611803886111aa565b945061180e88610b3a565b6001600160a01b038916600090815260136020526040902054909450925082611838576000611846565b6014546118469084906119cb565b9150428211611856576000611860565b6118608242611c92565b9050919395975091939597565b600d54600090819081908061188d57505060115460009250829150611964565b6011546000805a90506000805b89841080156118a857508582105b1561195357600d5460019095019485106118c157600094505b6000600d60000186815481106118d357fe5b60009182526020808320909101546001600160a01b0316808352601390915260409091205490915061190490611e92565b1561192057611914816001611205565b15611920576001909101905b60019092019160005a90508085111561194a576119476119408683611c92565b87906119cb565b95505b935061189a9050565b601185905590975095509193505050505b9193909250565b60008261197a57506000610a80565b8282028284828161198757fe5b04146119c45760405162461bcd60e51b81526004018080602001828103825260218152602001806122d36021913960400191505060405180910390fd5b9392505050565b6000828201838110156119c4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316611a6e5760405162461bcd60e51b815260040180806020018281038252602481526020018061235d6024913960400191505060405180910390fd5b6001600160a01b038216611ab35760405162461bcd60e51b81526004018080602001828103825260228152602001806121966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602c815260200180612240602c913960400191505060405180910390fd5b60008184841115611bdb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ba0578181015183820152602001611b88565b50505050905090810190601f168015611bcd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008181811215610a8057600080fd5b6000828201818312801590611c085750838112155b80611c1d5750600083128015611c1d57508381125b6119c457600080fd5b600080821215611c3557600080fd5b5090565b6000611c4483610ffa565b905080821115611c6c576000611c5a8383611c92565b9050611c668482611eb9565b506114c5565b808210156114c5576000611c808284611c92565b9050611c8c8482611f1d565b50505050565b600082821115611ce9576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080611cfb836111aa565b90508015611e55576001600160a01b0383166000908152600a6020526040902054611d2690826119cb565b6001600160a01b0384166000818152600a6020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a26008546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151600093929092169163a9059cbb9160448082019260209290919082900301818787803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b505050506040513d6020811015611dfb57600080fd5b5051905080611e4d576001600160a01b0384166000908152600a6020526040902054611e279083611c92565b6001600160a01b0385166000908152600a60205260408120919091559250610b94915050565b509050610b94565b50600092915050565b6000808212158015611e7257508282840313155b80611e895750600082128015611e89575082828403135b611ce957600080fd5b600042821115611ea457506000610b94565b601454611eb14284611c92565b101592915050565b611ec38282611f61565b611efd611ede610b798360065461196b90919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611e5e565b6001600160a01b0390921660009081526009602052604090209190915550565b611f278282612051565b611efd611f42610b798360065461196b90919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611bf3565b6001600160a01b038216611fbc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611fc8600083836114c5565b600254611fd590826119cb565b6002556001600160a01b038216600090815260208190526040902054611ffb90826119cb565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166120965760405162461bcd60e51b815260040180806020018281038252602181526020018061233c6021913960400191505060405180910390fd5b6120a2826000836114c5565b6120df8160405180606001604052806022815260200161214e602291396001600160a01b0385166000908152602081905260409020549190611b4c565b6001600160a01b0383166000908152602081905260409020556002546121059082611c92565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737353686962615f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c756553686962615f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f75727353686962615f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656453686962615f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e20536869626120636f6e74726163742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fbb50d34d836e94d58068ea96d1e2f4aad761b9a2acd5464eb61a6cf96af4ac964736f6c634300060c003353686962613a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642753686962613a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565

Deployed Bytecode

0x60806040526004361061036f5760003560e01c806372afd0e8116101c6578063ad56c13c116100f7578063e2f4560511610095578063e98030c71161006f578063e98030c714610c95578063f27fd25414610cbf578063f2fde38b14610ce9578063f5c27ab914610d1c57610376565b8063e2f4560514610c38578063e37ba8f914610c4d578063e7841ec014610c8057610376565b8063c0246668116100d1578063c024666814610b2e578063c492f04614610b69578063d469801614610be8578063dd62ed3e14610bfd57610376565b8063ad56c13c14610a4a578063b62496f514610ac8578063bb85c6d114610afb57610376565b80639a7a23d611610164578063a26579ad1161013e578063a26579ad14610990578063a457c2d7146109a5578063a8b9d240146109de578063a9059cbb14610a1157610376565b80639a7a23d6146109165780639c1b8af5146109515780639ff0fe541461096657610376565b806388bdd9be116101a057806388bdd9be146108a45780638da5cb5b146108d757806395d89b41146108ec57806398118cb41461090157610376565b806372afd0e81461083b57806375f0a87414610865578063871c128d1461087a57610376565b8063313ce567116102a05780636231ac861161023e5780636843cd84116102185780636843cd8414610796578063700bb191146107c957806370a08231146107f3578063715018a61461082657610376565b80636231ac861461073957806364b0f6531461074e57806365b8dbc01461076357610376565b806339b312d51161027a57806339b312d5146106a957806349bd5a5e146106dc5780634e71d92d146106f15780634fbee1931461070657610376565b8063313ce5671461061b578063357bf15c14610646578063395093511461067057610376565b80631582358e1161030d57806322bd3f7f116102e757806322bd3f7f1461059957806323b872dd146105ae5780632c1f5216146105f157806330bb4cff1461060657610376565b80631582358e1461053e5780631694505e1461056f57806318160ddd1461058457610376565b8063095ea7b311610349578063095ea7b3146104645780630e832273146104b1578063111e0376146104e457806313114a9d1461051757610376565b806306760ff71461037b57806306fdde03146103b0578063071107141461043a57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103ae6004803603602081101561039e57600080fd5b50356001600160a01b0316610d31565b005b3480156103bc57600080fd5b506103c5610db5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103ff5781810151838201526020016103e7565b50505050905090810190601f16801561042c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044657600080fd5b506103ae6004803603602081101561045d57600080fd5b5035610e4b565b34801561047057600080fd5b5061049d6004803603604081101561048757600080fd5b506001600160a01b038135169060200135610eb2565b604080519115158252519081900360200190f35b3480156104bd57600080fd5b5061049d600480360360208110156104d457600080fd5b50356001600160a01b0316610ed0565b3480156104f057600080fd5b506103ae6004803603602081101561050757600080fd5b50356001600160a01b0316610f53565b34801561052357600080fd5b5061052c61101e565b60408051918252519081900360200190f35b34801561054a57600080fd5b50610553611042565b604080516001600160a01b039092168252519081900360200190f35b34801561057b57600080fd5b50610553611051565b34801561059057600080fd5b5061052c611060565b3480156105a557600080fd5b5061052c611066565b3480156105ba57600080fd5b5061049d600480360360608110156105d157600080fd5b506001600160a01b0381358116916020810135909116906040013561106c565b3480156105fd57600080fd5b506105536110f3565b34801561061257600080fd5b5061052c611102565b34801561062757600080fd5b50610630611178565b6040805160ff9092168252519081900360200190f35b34801561065257600080fd5b506103ae6004803603602081101561066957600080fd5b5035611181565b34801561067c57600080fd5b5061049d6004803603604081101561069357600080fd5b506001600160a01b0381351690602001356111e8565b3480156106b557600080fd5b506103ae600480360360208110156106cc57600080fd5b50356001600160a01b0316611236565b3480156106e857600080fd5b506105536112ba565b3480156106fd57600080fd5b506103ae6112de565b34801561071257600080fd5b5061049d6004803603602081101561072957600080fd5b50356001600160a01b0316611363565b34801561074557600080fd5b50610553611381565b34801561075a57600080fd5b5061052c611390565b34801561076f57600080fd5b506103ae6004803603602081101561078657600080fd5b50356001600160a01b03166113d5565b3480156107a257600080fd5b5061052c600480360360208110156107b957600080fd5b50356001600160a01b03166114e1565b3480156107d557600080fd5b506103ae600480360360208110156107ec57600080fd5b5035611532565b3480156107ff57600080fd5b5061052c6004803603602081101561081657600080fd5b50356001600160a01b0316611619565b34801561083257600080fd5b506103ae611634565b34801561084757600080fd5b506103ae6004803603602081101561085e57600080fd5b50356116e6565b34801561087157600080fd5b5061055361174d565b34801561088657600080fd5b506103ae6004803603602081101561089d57600080fd5b503561175c565b3480156108b057600080fd5b506103ae600480360360208110156108c757600080fd5b50356001600160a01b0316611883565b3480156108e357600080fd5b50610553611be4565b3480156108f857600080fd5b506103c5611bf8565b34801561090d57600080fd5b5061052c611c59565b34801561092257600080fd5b506103ae6004803603604081101561093957600080fd5b506001600160a01b0381351690602001351515611c5f565b34801561095d57600080fd5b5061052c611d3c565b34801561097257600080fd5b506103ae6004803603602081101561098957600080fd5b5035611d42565b34801561099c57600080fd5b5061052c611df1565b3480156109b157600080fd5b5061049d600480360360408110156109c857600080fd5b506001600160a01b038135169060200135611e36565b3480156109ea57600080fd5b5061052c60048036036020811015610a0157600080fd5b50356001600160a01b0316611e9e565b348015610a1d57600080fd5b5061049d60048036036040811015610a3457600080fd5b506001600160a01b038135169060200135611eef565b348015610a5657600080fd5b50610a7d60048036036020811015610a6d57600080fd5b50356001600160a01b0316611f03565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610ad457600080fd5b5061049d60048036036020811015610aeb57600080fd5b50356001600160a01b0316611fe3565b348015610b0757600080fd5b506103ae60048036036020811015610b1e57600080fd5b50356001600160a01b0316611ff8565b348015610b3a57600080fd5b506103ae60048036036040811015610b5157600080fd5b506001600160a01b038135169060200135151561207c565b348015610b7557600080fd5b506103ae60048036036040811015610b8c57600080fd5b810190602081018135640100000000811115610ba757600080fd5b820183602082011115610bb957600080fd5b80359060200191846020830284011164010000000083111715610bdb57600080fd5b919350915035151561219c565b348015610bf457600080fd5b506105536122c6565b348015610c0957600080fd5b5061052c60048036036040811015610c2057600080fd5b506001600160a01b03813581169160200135166122d5565b348015610c4457600080fd5b5061052c612300565b348015610c5957600080fd5b506103ae60048036036020811015610c7057600080fd5b50356001600160a01b0316612306565b348015610c8c57600080fd5b5061052c61241d565b348015610ca157600080fd5b506103ae60048036036020811015610cb857600080fd5b5035612462565b348015610ccb57600080fd5b50610a7d60048036036020811015610ce257600080fd5b5035612511565b348015610cf557600080fd5b506103ae60048036036020811015610d0c57600080fd5b50356001600160a01b0316612577565b348015610d2857600080fd5b5061052c612685565b610d396126ec565b6001600160a01b0316610d4a611be4565b6001600160a01b031614610d93576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b5050505050905090565b610e536126ec565b6001600160a01b0316610e64611be4565b6001600160a01b031614610ead576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600b55565b6000610ec6610ebf6126ec565b84846126f0565b5060015b92915050565b60085460408051634e7b827f60e01b81526001600160a01b03848116600483015291516000939290921691634e7b827f91602480820192602092909190829003018186803b158015610f2157600080fd5b505afa158015610f35573d6000803e3d6000fd5b505050506040513d6020811015610f4b57600080fd5b505192915050565b610f5b6126ec565b6001600160a01b0316610f6c611be4565b6001600160a01b031614610fb5576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000f81565b6007546001600160a01b031681565b6006546001600160a01b031681565b60025490565b600d5481565b60006110798484846127dc565b6110e9846110856126ec565b6110e485604051806060016040528060288152602001613948602891396001600160a01b038a166000908152600160205260408120906110c36126ec565b6001600160a01b031681526020810191909152604001600020549190612c5d565b6126f0565b5060019392505050565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561114757600080fd5b505afa15801561115b573d6000803e3d6000fd5b505050506040513d602081101561117157600080fd5b5051905090565b60055460ff1690565b6111896126ec565b6001600160a01b031661119a611be4565b6001600160a01b0316146111e3576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600c55565b6000610ec66111f56126ec565b846110e485600160006112066126ec565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061268b565b61123e6126ec565b6001600160a01b031661124f611be4565b6001600160a01b031614611298576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b7f00000000000000000000000004533f934eb467451f3b64d6f84e638ccea5167281565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561133557600080fd5b505af1158015611349573d6000803e3d6000fd5b505050506040513d602081101561135f57600080fd5b5050565b6001600160a01b031660009081526011602052604090205460ff1690565b6010546001600160a01b031681565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561114757600080fd5b6113dd6126ec565b6001600160a01b03166113ee611be4565b6001600160a01b031614611437576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156114845760405162461bcd60e51b815260040180806020018281038252602a815260200180613ac3602a913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015610f2157600080fd5b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561158957600080fd5b505af115801561159d573d6000803e3d6000fd5b505050506040513d60608110156115b357600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b61163c6126ec565b6001600160a01b031661164d611be4565b6001600160a01b031614611696576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6116ee6126ec565b6001600160a01b03166116ff611be4565b6001600160a01b031614611748576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600d55565b600f546001600160a01b031681565b6117646126ec565b6001600160a01b0316611775611be4565b6001600160a01b0316146117be576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b62030d4081101580156117d457506207a1208111155b61180f5760405162461bcd60e51b815260040180806020018281038252603b815260200180613a88603b913960400191505060405180910390fd5b600e548114156118505760405162461bcd60e51b81526004018080602001828103825260338152602001806138f46033913960400191505060405180910390fd5b600e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600e55565b61188b6126ec565b6001600160a01b031661189c611be4565b6001600160a01b0316146118e5576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6008546001600160a01b03828116911614156119325760405162461bcd60e51b81526004018080602001828103825260348152602001806139c36034913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561197a57600080fd5b505afa15801561198e573d6000803e3d6000fd5b505050506040513d60208110156119a457600080fd5b50516001600160a01b0316146119eb5760405162461bcd60e51b81526004018080602001828103825260498152602001806138156049913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611a3a57600080fd5b505af1158015611a4e573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611a9957600080fd5b505af1158015611aad573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611ac8611be4565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611b0757600080fd5b505af1158015611b1b573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611b6d57600080fd5b505af1158015611b81573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b60055461010090046001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b600c5481565b611c676126ec565b6001600160a01b0316611c78611be4565b6001600160a01b031614611cc1576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b7f00000000000000000000000004533f934eb467451f3b64d6f84e638ccea516726001600160a01b0316826001600160a01b03161415611d325760405162461bcd60e51b8152600401808060200182810382526048815260200180613b126048913960600191505060405180910390fd5b61135f8282612cf4565b600e5481565b611d4a6126ec565b6001600160a01b0316611d5b611be4565b6001600160a01b031614611da4576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b60085460408051635ebf4db960e01b81526004810184905290516001600160a01b0390921691635ebf4db99160248082019260009290919082900301818387803b15801561100357600080fd5b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561114757600080fd5b6000610ec6611e436126ec565b846110e485604051806060016040528060258152602001613aed6025913960016000611e6d6126ec565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612c5d565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b158015610f2157600080fd5b6000610ec6611efc6126ec565b84846127dc565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b158015611f7257600080fd5b505afa158015611f86573d6000803e3d6000fd5b505050506040513d610100811015611f9d57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b60126020526000908152604090205460ff1681565b6120006126ec565b6001600160a01b0316612011611be4565b6001600160a01b03161461205a576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6120846126ec565b6001600160a01b0316612095611be4565b6001600160a01b0316146120de576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff161515811515141561213c5760405162461bcd60e51b81526004018080602001828103825260318152602001806138846031913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6121a46126ec565b6001600160a01b03166121b5611be4565b6001600160a01b0316146121fe576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b60005b8281101561225357816011600086868581811061221a57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101612201565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b6009546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b61230e6126ec565b6001600160a01b031661231f611be4565b6001600160a01b031614612368576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6009546001600160a01b03828116911614156123b55760405162461bcd60e51b81526004018080602001828103825260338152602001806139906033913960400191505060405180910390fd5b6123c081600161207c565b6009546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561114757600080fd5b61246a6126ec565b6001600160a01b031661247b611be4565b6001600160a01b0316146124c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561100357600080fd5b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015611f7257600080fd5b61257f6126ec565b6001600160a01b0316612590611be4565b6001600160a01b0316146125d9576040805162461bcd60e51b81526020600482018190526024820152600080516020613970833981519152604482015290519081900360640190fd5b6001600160a01b03811661261e5760405162461bcd60e51b81526004018080602001828103825260268152602001806137cd6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b5481565b6000828201838110156126e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166127355760405162461bcd60e51b8152600401808060200182810382526024815260200180613a646024913960400191505060405180910390fd5b6001600160a01b03821661277a5760405162461bcd60e51b81526004018080602001828103825260228152602001806137f36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166128215760405162461bcd60e51b8152600401808060200182810382526025815260200180613a3f6025913960400191505060405180910390fd5b6001600160a01b0382166128665760405162461bcd60e51b81526004018080602001828103825260238152602001806139f76023913960400191505060405180910390fd5b8061287c5761287783836000612e22565b612c58565b600061288730611619565b600a54909150811080159081906128a85750600754600160a01b900460ff16155b80156128cd57506001600160a01b03851660009081526012602052604090205460ff16155b80156128e757506009546001600160a01b03868116911614155b801561290157506009546001600160a01b03858116911614155b15612987576007805460ff60a01b1916600160a01b179055600c54600090612956907f000000000000000000000000000000000000000000000000000000000000000f90612950908690612f7d565b90612fd6565b90506129618161303d565b600061296c30611619565b905061297781613101565b50506007805460ff60a01b191690555b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b9092048216159116806129d557506001600160a01b03851660009081526011602052604090205460ff165b156129de575060005b8015612a6f576000612a156064612950877f000000000000000000000000000000000000000000000000000000000000000f612f7d565b6001600160a01b03871660009081526012602052604090205490915060ff1615612a5657612a536064612950600d5484612f7d90919063ffffffff16565b90505b612a6085826132b9565b9450612a6d873083612e22565b505b612a7a868686612e22565b6008546001600160a01b031663e30443bc87612a9581611619565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612adb57600080fd5b505af1925050508015612aec575060015b506008546001600160a01b031663e30443bc86612b0881611619565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612b4e57600080fd5b505af1925050508015612b5f575060015b50600754600160a01b900460ff16612c5457600e54600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b158015612bc557600080fd5b505af1925050508015612bf957506040513d6060811015612be557600080fd5b508051602082015160409092015190919060015b612c0257612c52565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b60008184841115612cec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612cb1578181015183820152602001612c99565b50505050905090810190601f168015612cde5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526012602052604090205460ff1615158115151415612d525760405162461bcd60e51b815260040180806020018281038252603f8152602001806138b5603f913960400191505060405180910390fd5b6001600160a01b0382166000908152601260205260409020805460ff19168215801591909117909155612de6576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015612dcd57600080fd5b505af1158015612de1573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612e675760405162461bcd60e51b8152600401808060200182810382526025815260200180613a1a6025913960400191505060405180910390fd5b6001600160a01b038216612eac5760405162461bcd60e51b81526004018080602001828103825260238152602001806137aa6023913960400191505060405180910390fd5b612eb7838383612c58565b612ef48160405180606001604052806026815260200161385e602691396001600160a01b0386166000908152602081905260409020549190612c5d565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612f23908261268b565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082612f8c57506000610eca565b82820282848281612f9957fe5b04146126e55760405162461bcd60e51b81526004018080602001828103825260218152602001806139276021913960400191505060405180910390fd5b600080821161302c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161303557fe5b049392505050565b600061304a826005612fd6565b90506000613059836005612fd6565b90506000613068846004612fd6565b905060006130828261307c858189896132b9565b906132b9565b90504761308e85613316565b600061309a47836132b9565b90506130a685826134bc565b6130af8361357a565b6130b8846135bc565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050505050565b61310b81306135d6565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561315657600080fd5b505afa15801561316a573d6000803e3d6000fd5b505050506040513d602081101561318057600080fd5b50516007546008546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051939450600093919092169163a9059cbb91604480830192602092919082900301818787803b1580156131e057600080fd5b505af11580156131f4573d6000803e3d6000fd5b505050506040513d602081101561320a57600080fd5b505190508015612c58576008546040805163350312d760e01b81526004810185905290516001600160a01b039092169163350312d79160248082019260009290919082900301818387803b15801561326157600080fd5b505af1158015613275573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600082821115613310576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061334457fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561339857600080fd5b505afa1580156133ac573d6000803e3d6000fd5b505050506040513d60208110156133c257600080fd5b50518151829060019081106133d357fe5b6001600160a01b0392831660209182029290920101526006546133f991309116846126f0565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561347f578181015183820152602001613467565b505050509050019650505050505050600060405180830381600087803b1580156134a857600080fd5b505af1158015612c54573d6000803e3d6000fd5b6006546134d49030906001600160a01b0316846126f0565b6006546009546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561354957600080fd5b505af115801561355d573d6000803e3d6000fd5b50505050506040513d606081101561357457600080fd5b50505050565b61358381613316565b600f546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561135f573d6000803e3d6000fd5b6010546135d39082906001600160a01b03166135d6565b50565b60408051600380825260808201909252606091602082018380368337019050509050308160008151811061360657fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561365a57600080fd5b505afa15801561366e573d6000803e3d6000fd5b505050506040513d602081101561368457600080fd5b505181518290600190811061369557fe5b6001600160a01b0392831660209182029290920101526007548251911690829060029081106136c057fe5b6001600160a01b0392831660209182029290920101526006546136e691309116856126f0565b600654604051635c11d79560e01b8152600481018581526000602483018190526001600160a01b038681166064850152426084850181905260a060448601908152875160a487015287519290961695635c11d795958a9589948b9493919260c40190602080880191028083838b5b8381101561376c578181015183820152602001613754565b505050509050019650505050505050600060405180830381600087803b15801561379557600080fd5b505af1158015612c52573d6000803e3d6000fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737353686962613a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520536869626120746f6b656e20636f6e747261637445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553686962613a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642753686962613a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756553686962613a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657253686962613a20546865206c69717569646974792077616c6c657420697320616c72656164792074686973206164647265737353686962613a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737353686962613a207472616e7366657220746f20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353686962613a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737353686962613a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303053686962613a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f53686962613a2054686520554e495357415020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b65725061697273a2646970667358221220603023c8c2bc045200056c4cbdb68685b1d6cda5e288fd38e893af627d91776164736f6c634300060c0033

Libraries Used

IterableMapping : 0xb15dbc925c1294d191b34db196bbac55b9d350adUnverified

Deployed Bytecode Sourcemap

48421:16731:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53431:128;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53431:128:0;-1:-1:-1;;;;;53431:128:0;;:::i;:::-;;23096:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52895:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52895:130:0;;:::i;25242:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25242:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;57082:146;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57082:146:0;-1:-1:-1;;;;;57082:146:0;;:::i;52755:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52755:128:0;-1:-1:-1;;;;;52755:128:0;;:::i;48939:34::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48591:82;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;48591:82:0;;;;;;;;;;;;;;48496:41;;;;;;;;;;;;;:::i;24195:108::-;;;;;;;;;;;;;:::i;49041:43::-;;;;;;;;;;;;;:::i;25893:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25893:321:0;;;;;;;;;;;;;;;;;:::i;48714:43::-;;;;;;;;;;;;;:::i;57236:141::-;;;;;;;;;;;;;:::i;24039:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53164:118;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53164:118:0;;:::i;26623:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26623:218:0;;;;;;;;:::i;53037:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53037:115:0;-1:-1:-1;;;;;53037:115:0;;:::i;48544:38::-;;;;;;;;;;;;;:::i;58769:94::-;;;;;;;;;;;;;:::i;57385:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57385:125:0;-1:-1:-1;;;;;57385:125:0;;:::i;49308:81::-;;;;;;;;;;;;;:::i;59008:141::-;;;;;;;;;;;;;:::i;54416:314::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54416:314:0;-1:-1:-1;;;;;54416:314:0;;:::i;57681:139::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57681:139:0;-1:-1:-1;;;;;57681:139:0;;:::i;58490:271::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58490:271:0;;:::i;24366:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24366:127:0;-1:-1:-1;;;;;24366:127:0;;:::i;15473:148::-;;;;;;;;;;;;;:::i;52418:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52418:131:0;;:::i;49218:83::-;;;;;;;;;;;;;:::i;56416:406::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56416:406:0;;:::i;53573:835::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53573:835:0;-1:-1:-1;;;;;53573:835:0;;:::i;14822:87::-;;;;;;;;;;;;;:::i;23306:95::-;;;;;;;;;;;;;:::i;48904:28::-;;;;;;;;;;;;;:::i;55355:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55355:259:0;;;;;;;;;;:::i;49163:40::-;;;;;;;;;;;;;:::i;52561:182::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52561:182:0;;:::i;56962:108::-;;;;;;;;;;;;;:::i;27344:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27344:269:0;;;;;;;;:::i;57522:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57522:151:0;-1:-1:-1;;;;;57522:151:0;;:::i;24706:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24706:175:0;;;;;;;;:::i;57828:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57828:318:0;-1:-1:-1;;;;;57828:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;57828:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49667:58;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49667:58:0;-1:-1:-1;;;;;49667:58:0;;:::i;53294:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53294:125:0;-1:-1:-1;;;;;53294:125:0;;:::i;54738:297::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54738:297:0;;;;;;;;;;:::i;55043:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55043:304:0;-1:-1:-1;55043:304:0;;;;:::i;48766:30::-;;;;;;;;;;;;;:::i;24944:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24944:151:0;;;;;;;;;;:::i;48805:52::-;;;;;;;;;;;;;:::i;56038:370::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56038:370:0;-1:-1:-1;;;;;56038:370:0;;:::i;58871:129::-;;;;;;;;;;;;;:::i;56830:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56830:124:0;;:::i;58154:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58154:328:0;;:::i;15776:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15776:244:0;-1:-1:-1;;;;;15776:244:0;;:::i;48866:31::-;;;;;;;;;;;;;:::i;53431:128::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;53525:13:::1;:26:::0;;-1:-1:-1;;;;;;53525:26:0::1;-1:-1:-1::0;;;;;53525:26:0;;;::::1;::::0;;;::::1;::::0;;53431:128::o;23096:91::-;23174:5;23167:12;;;;;;;;-1:-1:-1;;23167:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23141:13;;23167:12;;23174:5;;23167:12;;23174:5;23167:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23096:91;:::o;52895:130::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;52981:15:::1;:36:::0;52895:130::o;25242:169::-;25325:4;25342:39;25351:12;:10;:12::i;:::-;25365:7;25374:6;25342:8;:39::i;:::-;-1:-1:-1;25399:4:0;25242:169;;;;;:::o;57082:146::-;57174:15;;:46;;;-1:-1:-1;;;57174:46:0;;-1:-1:-1;;;;;57174:46:0;;;;;;;;;57150:4;;57174:15;;;;;:37;;:46;;;;;;;;;;;;;;;:15;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57174:46:0;;57082:146;-1:-1:-1;;57082:146:0:o;52755:128::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;52830:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;52830:45:0;;-1:-1:-1;;;;;52830:45:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52755:128:::0;:::o;48939:34::-;;;:::o;48591:82::-;;;-1:-1:-1;;;;;48591:82:0;;:::o;48496:41::-;;;-1:-1:-1;;;;;48496:41:0;;:::o;24195:108::-;24283:12;;24195:108;:::o;49041:43::-;;;;:::o;25893:321::-;25999:4;26016:36;26026:6;26034:9;26045:6;26016:9;:36::i;:::-;26063:121;26072:6;26080:12;:10;:12::i;:::-;26094:89;26132:6;26094:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26094:19:0;;;;;;:11;:19;;;;;;26114:12;:10;:12::i;:::-;-1:-1:-1;;;;;26094:33:0;;;;;;;;;;;;-1:-1:-1;26094:33:0;;;:89;:37;:89::i;:::-;26063:8;:121::i;:::-;-1:-1:-1;26202:4:0;25893:321;;;;;:::o;48714:43::-;;;-1:-1:-1;;;;;48714:43:0;;:::o;57236:141::-;57326:15;;:43;;;-1:-1:-1;;;57326:43:0;;;;57299:7;;-1:-1:-1;;;;;57326:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57326:43:0;;-1:-1:-1;57236:141:0;:::o;24039:91::-;24113:9;;;;24039:91;:::o;53164:118::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;53244:12:::1;:30:::0;53164:118::o;26623:218::-;26711:4;26728:83;26737:12;:10;:12::i;:::-;26751:7;26760:50;26799:10;26760:11;:25;26772:12;:10;:12::i;:::-;-1:-1:-1;;;;;26760:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26760:25:0;;;:34;;;;;;;;;;;:38;:50::i;53037:115::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;53118:13:::1;:26:::0;;-1:-1:-1;;;;;;53118:26:0::1;-1:-1:-1::0;;;;;53118:26:0;;;::::1;::::0;;;::::1;::::0;;53037:115::o;48544:38::-;;;:::o;58769:94::-;58806:15;;:49;;;-1:-1:-1;;;58806:49:0;;58837:10;58806:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;58806:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58769:94:0:o;57385:125::-;-1:-1:-1;;;;;57474:28:0;57450:4;57474:28;;;:19;:28;;;;;;;;;57385:125::o;49308:81::-;;;-1:-1:-1;;;;;49308:81:0;;:::o;59008:141::-;59100:15;;:41;;;-1:-1:-1;;;59100:41:0;;;;59073:7;;-1:-1:-1;;;;;59100:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;54416:314;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;54525:15:::1;::::0;-1:-1:-1;;;;;54503:38:0;;::::1;54525:15:::0;::::1;54503:38;;54495:93;;;;-1:-1:-1::0;;;54495:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54646:15;::::0;54604:59:::1;::::0;-1:-1:-1;;;;;54646:15:0;;::::1;::::0;54604:59;::::1;::::0;::::1;::::0;54646:15:::1;::::0;54604:59:::1;54674:15;:48:::0;;-1:-1:-1;;;;;;54674:48:0::1;-1:-1:-1::0;;;;;54674:48:0;;;::::1;::::0;;;::::1;::::0;;54416:314::o;57681:139::-;57778:15;;:34;;;-1:-1:-1;;;57778:34:0;;-1:-1:-1;;;;;57778:34:0;;;;;;;;;57751:7;;57778:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;58490:271;58622:15;;:28;;;-1:-1:-1;;;;;;58622:28:0;;;;;;;;;;58556:18;;;;;;-1:-1:-1;;;;;58622:15:0;;;;:23;;:28;;;;;;;;;;;;;;;58556:18;58622:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58622:28:0;;;;;;;;;;;;58666:87;;;;;;;;;;;;;;;;;58622:28;58666:87;;;;;;;58622:28;;-1:-1:-1;58622:28:0;-1:-1:-1;58622:28:0;;-1:-1:-1;58743:9:0;;58731:5;;58666:87;;;;;;;;;58490:271;;;;:::o;24366:127::-;-1:-1:-1;;;;;24467:18:0;24440:7;24467:18;;;;;;;;;;;;24366:127::o;15473:148::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;15564:6:::1;::::0;15543:40:::1;::::0;15580:1:::1;::::0;15564:6:::1;::::0;::::1;-1:-1:-1::0;;;;;15564:6:0::1;::::0;15543:40:::1;::::0;15580:1;;15543:40:::1;15594:6;:19:::0;;-1:-1:-1;;;;;;15594:19:0::1;::::0;;15473:148::o;52418:131::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;52501:21:::1;:40:::0;52418:131::o;49218:83::-;;;-1:-1:-1;;;;;49218:83:0;;:::o;56416:406::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;56514:6:::1;56502:8;:18;;:40;;;;;56536:6;56524:8;:18;;56502:40;56494:112;;;;-1:-1:-1::0;;;56494:112:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56637:16;;56625:8;:28;;56617:92;;;;-1:-1:-1::0;;;56617:92:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56759:16;::::0;56725:51:::1;::::0;56749:8;;56725:51:::1;::::0;;;::::1;56787:16;:27:::0;56416:406::o;53573:835::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;53682:15:::1;::::0;-1:-1:-1;;;;;53660:38:0;;::::1;53682:15:::0;::::1;53660:38;;53652:103;;;;-1:-1:-1::0;;;53652:103:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53768:39;53839:10;53768:83;;53910:4;-1:-1:-1::0;;;;;53872:43:0::1;:18;-1:-1:-1::0;;;;;53872:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53872:26:0;-1:-1:-1;;;;;53872:43:0::1;;53864:129;;;;-1:-1:-1::0;;;53864:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54006:18;-1:-1:-1::0;;;;;54006:39:0::1;;54054:18;54006:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;54006:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54085:54:0::1;::::0;;-1:-1:-1;;;54085:54:0;;54133:4:::1;54085:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;54085:39:0;::::1;::::0;-1:-1:-1;54085:39:0::1;::::0;-1:-1:-1;54085:54:0;;;;;-1:-1:-1;;54085:54:0;;;;;;;-1:-1:-1;54085:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54150:18;-1:-1:-1::0;;;;;54150:39:0::1;;54190:7;:5;:7::i;:::-;54150:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;54150:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54257:15:0::1;::::0;54209:65:::1;::::0;;-1:-1:-1;;;54209:65:0;;-1:-1:-1;;;;;54257:15:0;;::::1;54209:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;54209:39:0::1;::::0;-1:-1:-1;54209:65:0;;;;;54257:15:::1;::::0;54209:65;;;;;;;;54257:15;54209:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54334:15:0::1;::::0;54292:59:::1;::::0;-1:-1:-1;;;;;54334:15:0;;::::1;::::0;-1:-1:-1;54292:59:0;;::::1;::::0;-1:-1:-1;54292:59:0::1;::::0;54334:15:::1;::::0;54292:59:::1;54364:15;:36:::0;;-1:-1:-1;;;;;;54364:36:0::1;-1:-1:-1::0;;;;;54364:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;53573:835:0:o;14822:87::-;14895:6;;;;;-1:-1:-1;;;;;14895:6:0;;14822:87::o;23306:95::-;23386:7;23379:14;;;;;;;;-1:-1:-1;;23379:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23353:13;;23379:14;;23386:7;;23379:14;;23386:7;23379:14;;;;;;;;;;;;;;;;;;;;;;;;48904:28;;;;:::o;55355:259::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;55462:13:::1;-1:-1:-1::0;;;;;55454:21:0::1;:4;-1:-1:-1::0;;;;;55454:21:0::1;;;55446:106;;;;-1:-1:-1::0;;;55446:106:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55565:41;55594:4;55600:5;55565:28;:41::i;49163:40::-:0;;;;:::o;52561:182::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;52660:15:::1;::::0;:75:::1;::::0;;-1:-1:-1;;;52660:75:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52660:15:0;;::::1;::::0;:50:::1;::::0;:75;;;;;:15:::1;::::0;:75;;;;;;;;:15;;:75;::::1;;::::0;::::1;;;;::::0;::::1;56962:108:::0;57035:15;;:27;;;-1:-1:-1;;;57035:27:0;;;;57008:7;;-1:-1:-1;;;;;57035:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;27344:269;27437:4;27454:129;27463:12;:10;:12::i;:::-;27477:7;27486:96;27525:15;27486:96;;;;;;;;;;;;;;;;;:11;:25;27498:12;:10;:12::i;:::-;-1:-1:-1;;;;;27486:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27486:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;57522:151::-;57618:15;;:47;;;-1:-1:-1;;;57618:47:0;;-1:-1:-1;;;;;57618:47:0;;;;;;;;;57591:7;;57618:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;24706:175;24792:4;24809:42;24819:12;:10;:12::i;:::-;24833:9;24844:6;24809:9;:42::i;57828:318::-;57924:7;57946:6;57967;57988:7;58010;58032;58054;58076;58103:15;;;;;;;;;-1:-1:-1;;;;;58103:15:0;-1:-1:-1;;;;;58103:26:0;;58130:7;58103:35;;;;;;;;;;;;;-1:-1:-1;;;;;58103:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58103:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58103:35:0;;-1:-1:-1;58103:35:0;;-1:-1:-1;58103:35:0;-1:-1:-1;58103:35:0;-1:-1:-1;58103:35:0;-1:-1:-1;58103:35:0;;-1:-1:-1;58103:35:0;-1:-1:-1;57828:318:0;;;;;;;;;:::o;49667:58::-;;;;;;;;;;;;;;;:::o;53294:125::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;53383:15:::1;:28:::0;;-1:-1:-1;;;;;;53383:28:0::1;-1:-1:-1::0;;;;;53383:28:0;;;::::1;::::0;;;::::1;::::0;;53294:125::o;54738:297::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54831:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;54823:102;;;;-1:-1:-1::0;;;54823:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;54936:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;54936:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;54993:34;;;;;;;::::1;::::0;;;;;;;;::::1;54738:297:::0;;:::o;55043:304::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;55160:9:::1;55156:115;55175:19:::0;;::::1;55156:115;;;55251:8;55216:19;:32;55236:8;;55245:1;55236:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;55236:11:0::1;55216:32:::0;;-1:-1:-1;55216:32:0;::::1;::::0;;;;;;-1:-1:-1;55216:32:0;:43;;-1:-1:-1;;55216:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;55196:3:0::1;55156:115;;;;55288:51;55320:8;;55330;55288:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;55288:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;55288:51:0;;-1:-1:-1;;;;;55288:51:0::1;55043:304:::0;;;:::o;48766:30::-;;;-1:-1:-1;;;;;48766:30:0;;:::o;24944:151::-;-1:-1:-1;;;;;25060:18:0;;;25033:7;25060:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24944:151::o;48805:52::-;;;;:::o;56038:370::-;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;56155:15:::1;::::0;-1:-1:-1;;;;;56133:37:0;;::::1;56155:15:::0;::::1;56133:37;;56125:101;;;;-1:-1:-1::0;;;56125:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56237:41;56253:18;56273:4;56237:15;:41::i;:::-;56337:15;::::0;56294:59:::1;::::0;-1:-1:-1;;;;;56337:15:0;;::::1;::::0;56294:59;::::1;::::0;::::1;::::0;56337:15:::1;::::0;56294:59:::1;56364:15;:36:::0;;-1:-1:-1;;;;;;56364:36:0::1;-1:-1:-1::0;;;;;56364:36:0;;;::::1;::::0;;;::::1;::::0;;56038:370::o;58871:129::-;58953:15;;:39;;;-1:-1:-1;;;58953:39:0;;;;58926:7;;-1:-1:-1;;;;;58953:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;56830:124;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;56904:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;56904:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;56904:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;58154:328:::0;58255:7;58277:6;58298;58319:7;58341;58363;58385;58407;58434:15;;;;;;;;;-1:-1:-1;;;;;58434:15:0;-1:-1:-1;;;;;58434:33:0;;58468:5;58434:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15776:244;15053:12;:10;:12::i;:::-;-1:-1:-1;;;;;15042:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15042:23:0;;15034:68;;;;;-1:-1:-1;;;15034:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15034:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15865:22:0;::::1;15857:73;;;;-1:-1:-1::0;;;15857:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15967:6;::::0;15946:38:::1;::::0;-1:-1:-1;;;;;15946:38:0;;::::1;::::0;15967:6:::1;::::0;::::1;;::::0;15946:38:::1;::::0;;;::::1;15995:6;:17:::0;;-1:-1:-1;;;;;15995:17:0;;::::1;;;-1:-1:-1::0;;;;;;15995:17:0;;::::1;::::0;;;::::1;::::0;;15776:244::o;48866:31::-;;;;:::o;34740:179::-;34798:7;34830:5;;;34854:6;;;;34846:46;;;;;-1:-1:-1;;;34846:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34910:1;34740:179;-1:-1:-1;;;34740:179:0:o;3434:106::-;3522:10;3434:106;:::o;30491:346::-;-1:-1:-1;;;;;30593:19:0;;30585:68;;;;-1:-1:-1;;;30585:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30672:21:0;;30664:68;;;;-1:-1:-1;;;30664:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30745:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30797:32;;;;;;;;;;;;;;;;;30491:346;;;:::o;59452:2259::-;-1:-1:-1;;;;;59584:18:0;;59576:68;;;;-1:-1:-1;;;59576:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59663:16:0;;59655:64;;;;-1:-1:-1;;;59655:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59737:11;59734:92;;59765:28;59781:4;59787:2;59791:1;59765:15;:28::i;:::-;59808:7;;59734:92;59848:28;59879:24;59897:4;59879:9;:24::i;:::-;59963:18;;59848:55;;-1:-1:-1;59939:42:0;;;;;;;60011:33;;-1:-1:-1;60036:8:0;;-1:-1:-1;;;60036:8:0;;;;60035:9;60011:33;:82;;;;-1:-1:-1;;;;;;60062:31:0;;;;;;:25;:31;;;;;;;;60061:32;60011:82;:122;;;;-1:-1:-1;60118:15:0;;-1:-1:-1;;;;;60110:23:0;;;60118:15;;60110:23;;60011:122;:160;;;;-1:-1:-1;60156:15:0;;-1:-1:-1;;;;;60150:21:0;;;60156:15;;60150:21;;60011:160;59994:505;;;60198:8;:15;;-1:-1:-1;;;;60198:15:0;-1:-1:-1;;;60198:15:0;;;60276:12;;60198:15;;60251:53;;60294:9;;60251:38;;:20;;:24;:38::i;:::-;:42;;:53::i;:::-;60230:74;;60319:26;60334:10;60319:14;:26::i;:::-;60362:18;60383:24;60401:4;60383:9;:24::i;:::-;60362:45;;60422:32;60443:10;60422:20;:32::i;:::-;-1:-1:-1;;60471:8:0;:16;;-1:-1:-1;;;;60471:16:0;;;59994:505;60529:8;;-1:-1:-1;;;;;60638:25:0;;60513:12;60638:25;;;:19;:25;;;;;;60529:8;-1:-1:-1;;;60529:8:0;;;;;60528:9;;60638:25;;:52;;-1:-1:-1;;;;;;60667:23:0;;;;;;:19;:23;;;;;;;;60638:52;60635:99;;;-1:-1:-1;60717:5:0;60635:99;60768:7;60765:358;;;60792:12;60807:30;60833:3;60807:21;:6;60818:9;60807:10;:21::i;:30::-;-1:-1:-1;;;;;60898:29:0;;;;;;:25;:29;;;;;;60792:45;;-1:-1:-1;60898:29:0;;60895:116;;;60955:40;60991:3;60955:31;60964:21;;60955:4;:8;;:31;;;;:::i;:40::-;60948:47;;60895:116;61036:16;:6;61047:4;61036:10;:16::i;:::-;61027:25;;61069:42;61085:4;61099;61106;61069:15;:42::i;:::-;60765:358;;61135:33;61151:4;61157:2;61161:6;61135:15;:33::i;:::-;61185:15;;-1:-1:-1;;;;;61185:15:0;:26;61220:4;61227:15;61220:4;61227:9;:15::i;:::-;61185:58;;;;;;;;;;;;;-1:-1:-1;;;;;61185:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61181:74;61269:15;;-1:-1:-1;;;;;61269:15:0;:26;61304:2;61309:13;61304:2;61309:9;:13::i;:::-;61269:54;;;;;;;;;;;;;-1:-1:-1;;;;;61269:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61265:70;61351:8;;-1:-1:-1;;;61351:8:0;;;;61347:357;;61390:16;;61427:15;;:28;;;-1:-1:-1;;;;;;61427:28:0;;;;;;;;;;-1:-1:-1;;;;;61427:15:0;;;;:23;;:28;;;;;;;;;;;;;;;61376:11;61427:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61427:28:0;;;;;;;;;;;;;;;;61423:270;;;;;61553:86;;;;;;;;;;;;;;;;;;;;;;;;;;61629:9;;61618:4;;61553:86;;;;;;;;;61456:199;;;61423:270;61347:357;;59452:2259;;;;;;;:::o;37567:166::-;37653:7;37689:12;37681:6;;;;37673:29;;;;-1:-1:-1;;;37673:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37720:5:0;;;37567:166::o;55622:406::-;-1:-1:-1;;;;;55713:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;55705:116;;;;-1:-1:-1;;;55705:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55832:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;55832:39:0;;;;;;;;;;;;55884:79;;55909:15;;:42;;;-1:-1:-1;;;55909:42:0;;-1:-1:-1;;;;;55909:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55884:79;55980:40;;;;;;-1:-1:-1;;;;;55980:40:0;;;;;;;;55622:406;;:::o;28103:539::-;-1:-1:-1;;;;;28209:20:0;;28201:70;;;;-1:-1:-1;;;28201:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28290:23:0;;28282:71;;;;-1:-1:-1;;;28282:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28366:47;28387:6;28395:9;28406:6;28366:20;:47::i;:::-;28446:71;28468:6;28446:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28446:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;28426:17:0;;;:9;:17;;;;;;;;;;;:91;;;;28551:20;;;;;;;:32;;28576:6;28551:24;:32::i;:::-;-1:-1:-1;;;;;28528:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;28599:35;;;;;;;28528:20;;28599:35;;;;;;;;;;;;;28103:539;;;:::o;35619:220::-;35677:7;35701:6;35697:20;;-1:-1:-1;35716:1:0;35709:8;;35697:20;35740:5;;;35744:1;35740;:5;:1;35764:5;;;;;:10;35756:56;;;;-1:-1:-1;;;35756:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36317:153;36375:7;36407:1;36403;:5;36395:44;;;;;-1:-1:-1;;;36395:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36461:1;36457;:5;;;;;;;36317:153;-1:-1:-1;;;36317:153:0:o;61719:1158::-;61829:12;61844:13;:6;61855:1;61844:10;:13::i;:::-;61829:28;-1:-1:-1;61868:17:0;61888:13;:6;61899:1;61888:10;:13::i;:::-;61868:33;-1:-1:-1;61912:23:0;61938:13;:6;61949:1;61938:10;:13::i;:::-;61912:39;-1:-1:-1;61962:22:0;61987:52;61912:39;61987:31;62008:9;61987:31;:6;61998:4;61987:10;:16::i;:::-;:20;;:31::i;:52::-;61962:77;-1:-1:-1;62342:21:0;62408:22;62425:4;62408:16;:22::i;:::-;62561:18;62582:41;:21;62608:14;62582:25;:41::i;:::-;62561:62;;62673:35;62686:9;62697:10;62673:12;:35::i;:::-;62719:34;62738:14;62719:18;:34::i;:::-;62764:36;62784:15;62764:19;:36::i;:::-;62826:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61719:1158;;;;;;;:::o;64696:447::-;64761:41;64780:6;64796:4;64761:18;:41::i;:::-;64840:13;;64833:46;;;-1:-1:-1;;;64833:46:0;;64873:4;64833:46;;;;;;64813:17;;-1:-1:-1;;;;;64840:13:0;;64833:31;;:46;;;;;;;;;;;;;;64840:13;64833:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64833:46:0;64912:13;;64944:15;;64905:67;;;-1:-1:-1;;;64905:67:0;;-1:-1:-1;;;;;64944:15:0;;;64905:67;;;;;;;;;;;;64833:46;;-1:-1:-1;64890:12:0;;64912:13;;;;;64905:30;;:67;;;;;64833:46;;64905:67;;;;;;;64890:12;64912:13;64905:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64905:67:0;;-1:-1:-1;64993:143:0;;;;65021:15;;:51;;;-1:-1:-1;;;65021:51:0;;;;;;;;;;-1:-1:-1;;;;;65021:15:0;;;;:40;;:51;;;;;:15;;:51;;;;;;;;:15;;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65092:32:0;;;;;;;;;;;;;;;;-1:-1:-1;65092:32:0;;;;;;;;-1:-1:-1;65092:32:0;64696:447;;;:::o;35202:158::-;35260:7;35293:1;35288;:6;;35280:49;;;;;-1:-1:-1;;;35280:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35347:5:0;;;35202:158::o;62885:611::-;63047:16;;;63061:1;63047:16;;;63023:21;63047:16;;;;;63023:21;63047:16;;;;;;;;;;-1:-1:-1;63047:16:0;63023:40;;63092:4;63074;63079:1;63074:7;;;;;;;;-1:-1:-1;;;;;63074:23:0;;;:7;;;;;;;;;;:23;;;;63118:15;;:22;;;-1:-1:-1;;;63118:22:0;;;;:15;;;;;:20;;:22;;;;;63074:7;;63118:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63118:22:0;63108:7;;:4;;63113:1;;63108:7;;;;;;-1:-1:-1;;;;;63108:32:0;;;:7;;;;;;;;;:32;63185:15;;63153:62;;63170:4;;63185:15;63203:11;63153:8;:62::i;:::-;63254:15;;:224;;-1:-1:-1;;;63254:224:0;;;;;;;;:15;:224;;;;;;63432:4;63254:224;;;;;;63452:15;63254:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63254:15:0;;;;:66;;63335:11;;63405:4;;63432;63452:15;63254:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64148:540;64338:15;;64306:62;;64323:4;;-1:-1:-1;;;;;64338:15:0;64356:11;64306:8;:62::i;:::-;64410:15;;64614;;64410:260;;;-1:-1:-1;;;64410:260:0;;64482:4;64410:260;;;;;;;;;;:15;:260;;;;;;;;;;-1:-1:-1;;;;;64614:15:0;;;64410:260;;;;64644:15;64410:260;;;;;;:15;;;;;:31;;64449:9;;64410:260;;;;;;;;;;;;;;;64449:9;64410:15;:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;64148:540:0:o;59163:156::-;59227:24;59244:6;59227:16;:24::i;:::-;59263:15;;:47;;-1:-1:-1;;;;;59263:15:0;;;;59288:21;59263:47;;;;;:15;:47;:15;:47;59288:21;59263:15;:47;;;;;;;;;;;;;;;;;;;59331:113;59422:13;;59396:40;;59415:6;;-1:-1:-1;;;;;59422:13:0;59396:18;:40::i;:::-;59331:113;:::o;63506:634::-;63685:16;;;63699:1;63685:16;;;;;;;;;63661:21;;63685:16;;;63661:21;;63685:16;;;;;-1:-1:-1;63685:16:0;63661:40;;63730:4;63712;63717:1;63712:7;;;;;;;;-1:-1:-1;;;;;63712:23:0;;;:7;;;;;;;;;;:23;;;;63756:15;;:22;;;-1:-1:-1;;;63756:22:0;;;;:15;;;;;:20;;:22;;;;;63712:7;;63756:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63756:22:0;63746:7;;:4;;63751:1;;63746:7;;;;;;-1:-1:-1;;;;;63746:32:0;;;:7;;;;;;;;;:32;63799:13;;63789:7;;63799:13;;;63789:4;;63794:1;;63789:7;;;;;;-1:-1:-1;;;;;63789:23:0;;;:7;;;;;;;;;:23;63857:15;;63825:62;;63842:4;;63857:15;63875:11;63825:8;:62::i;:::-;63926:15;;:196;;-1:-1:-1;;;63926:196:0;;;;;;;;:15;:196;;;;;;-1:-1:-1;;;;;63926:196:0;;;;;;;64096:15;63926:196;;;;;;;;;;;;;;;;;;;;;:15;;;;;:69;;64010:11;;64053:4;;64072:9;;64096:15;63926:196;;;;;;;;;;;;;;:15;:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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