Token BNBBACK

 

Overview ERC-20

Price
$0.00 @ 0.000432 FTM (-0.07%)
Fully Diluted Market Cap
Total Supply:
1,000,000,000 BNBBACK

Holders:
25 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

BNBBACK Token is a decentralized BEP20 community-driven token, to bring the thrust system code deploying on Binance smart chains for the time to bring passive feature income hardcoded into a contract to until it reaches a threshold.


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

Contract Source Code Verified (Exact Match)

Contract Name:
BNBBACK

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
*
* ██████╗░███╗░░██╗██████╗░██████╗░░█████╗░░█████╗░██╗░░██╗
* ██╔══██╗████╗░██║██╔══██╗██╔══██╗██╔══██╗██╔══██╗██║░██╔╝
* ██████╦╝██╔██╗██║██████╦╝██████╦╝███████║██║░░╚═╝█████═╝░
* ██╔══██╗██║╚████║██╔══██╗██╔══██╗██╔══██║██║░░██╗██╔═██╗░
* ██████╦╝██║░╚███║██████╦╝██████╦╝██║░░██║╚█████╔╝██║░╚██╗
* ╚═════╝░╚═╝░░╚══╝╚═════╝░╚═════╝░╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝
*
* ████████╗░█████╗░  ████████╗██╗░░██╗███████╗  ███╗░░░███╗░█████╗░░█████╗░███╗░░██╗
* ╚══██╔══╝██╔══██╗  ╚══██╔══╝██║░░██║██╔════╝  ████╗░████║██╔══██╗██╔══██╗████╗░██║
* ░░░██║░░░██║░░██║  ░░░██║░░░███████║█████╗░░  ██╔████╔██║██║░░██║██║░░██║██╔██╗██║
* ░░░██║░░░██║░░██║  ░░░██║░░░██╔══██║██╔══╝░░  ██║╚██╔╝██║██║░░██║██║░░██║██║╚████║
* ░░░██║░░░╚█████╔╝  ░░░██║░░░██║░░██║███████╗  ██║░╚═╝░██║╚█████╔╝╚█████╔╝██║░╚███║
* ░░░╚═╝░░░░╚════╝░  ░░░╚═╝░░░╚═╝░░╚═╝╚══════╝  ╚═╝░░░░░╚═╝░╚════╝░░╚════╝░╚═╝░░╚══╝
* BNBBACK.io & BNBBACK.app
* OFFICIAL AND VARIFIED CONTRACT
* VISIT: https://BNBBACK.io
* APP:   https://BNBBACK.app
*
*/
// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        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;
    }
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

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

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

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

    function set(
        Map storage map,
        address key,
        uint256 val
    ) internal {
        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) internal {
        if (!map.inserted[key]) {
            return;
        }

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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


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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

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

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

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

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

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

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

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

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

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

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

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

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract DividendPayingToken is
    ERC20,
    DividendPayingTokenInterface,
    DividendPayingTokenOptionalInterface
{
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

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

    uint256 internal magnifiedDividendPerShare;

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

    uint256 public totalDividendsDistributed;

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

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

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

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

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

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

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

            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 mints tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _mint(address account, uint256 value) internal override {
        super._mint(account, value);

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

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

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

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

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

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

    IUniswapV2Router02 public uniswapV2Router;

    address public uniswapV2Pair;

    bool private swapping;

    BNBBACKDividendTracker public dividendTracker;

    address public liquidityWallet;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    address payable public marketingAddress = payable(0x2BB6D595B693731466C88F77D467eFFE8EF4b8eC);

    uint256 public swapTokensAtAmount = 200000 * (10**18);

    uint256 private marketingBuyFees = 3;
    uint256 private marketingSellFees = 3;
    uint256 private marketingTransferFees = 3;
    uint256 private liquidityBuyFee = 2;
    uint256 private liquiditySellFee = 2;
    uint256 private liquidityTransferFee = 2;
    uint256 private BNBRewardsBuyFee = 5;
    uint256 private BNBRewardsSellFee = 5;
    uint256 private BNBRewardsTransferFee = 5;

    uint256 public totalBuyFees = marketingBuyFees.add(liquidityBuyFee).add(BNBRewardsBuyFee);
    uint256 public totalSellFees = marketingSellFees.add(liquiditySellFee).add(BNBRewardsSellFee);
    uint256 public totalTransferFees = marketingTransferFees.add(liquidityTransferFee).add(BNBRewardsTransferFee);
    
    uint256 private countLiquidityFees = 0;
    uint256 private countBNBRewardsFee = 0;
    

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

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

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


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


    event UpdateBuyFees(
        uint256 marketingBuy,
        uint256 liquidityBuy,
        uint256 BNBRewardsBuy
    );

    event UpdateSellFees(
        uint256 marketingSell,
        uint256 liquiditySell,
        uint256 BNBRewardsSell
    );

    event UpdateTransferFees(
        uint256 marketingTransfer,
        uint256 liquidityTransfer,
        uint256 BNBRewardsTransfer
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

    event MarketingWalletUpdated(
        address indexed newMarketingWallet,
        address indexed oldMarketingWallet
    );

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

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

    event SendDividends(uint256 tokenAmount, uint256 bnbAmount);

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


    constructor() ERC20("BNBBACK", "BNBBACK") {
        dividendTracker = new BNBBACKDividendTracker();

        liquidityWallet = deadWallet;

        uniswapV2Router = IUniswapV2Router02(
            0xF491e7B69E4244ad4002BC14e878a34207E38c29
        );

        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );

        _setAutomatedMarketMakerPair(uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(deadWallet);
        dividendTracker.excludedFromDividends(address(0));
        dividendTracker.excludeFromDividends(address(uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        _isExcludedFromFees[liquidityWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(dividendTracker)] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    receive() external payable {}

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker));

        BNBBACKDividendTracker newDividendTracker = BNBBACKDividendTracker(
            payable(newAddress)
        );

        require(newDividendTracker.owner() == address(this));

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

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateMinimumBalanceForDividends(uint256 newMinimumBalance) external onlyOwner {
        
        dividendTracker.updateMinimumTokenBalanceForDividends(newMinimumBalance);
    }

    function updateMarketingWallet(address payable newAddress)
        public
        onlyOwner
    {
        emit MarketingWalletUpdated(newAddress, marketingAddress);
        marketingAddress = newAddress;
        
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded);
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function excludeFromDividends(address account) public onlyOwner {
        dividendTracker.excludeFromDividends(account);

    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateLiquidityWallet(address newLiquidityWallet)
        public
        onlyOwner
    {
        excludeFromFees(newLiquidityWallet, true);
        emit LiquidityWalletUpdated(newLiquidityWallet, liquidityWallet);
        liquidityWallet = newLiquidityWallet;
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue >= 200000 && newValue <= 500000);
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateBuyFees(
        uint256 newMarketingFee,
        uint256 newLiquidityFee,
        uint256 newBNBRewardsFee
    ) public onlyOwner {

        marketingBuyFees = newMarketingFee;
        liquidityBuyFee = newLiquidityFee;
        BNBRewardsBuyFee = newBNBRewardsFee;
        totalBuyFees = marketingBuyFees.add(liquidityBuyFee).add(BNBRewardsBuyFee);
        emit UpdateBuyFees(newMarketingFee, newLiquidityFee, newBNBRewardsFee);

    }
    
    function updateSellFees(
        uint256 newMarketingFee,
        uint256 newLiquidityFee,
        uint256 newBNBRewardsFee
    ) public onlyOwner {
        marketingSellFees = newMarketingFee;
        liquiditySellFee = newLiquidityFee;
        BNBRewardsSellFee = newBNBRewardsFee;
        totalSellFees = marketingSellFees.add(liquiditySellFee).add(BNBRewardsSellFee);
        emit UpdateSellFees(newMarketingFee, newLiquidityFee, newBNBRewardsFee);

    }

    function updateTransferFees(
        uint256 newMarketingFee,
        uint256 newLiquidityFee,
        uint256 newBNBRewardsFee
    ) public onlyOwner {
        marketingTransferFees = newMarketingFee;
        liquidityTransferFee = newLiquidityFee;
        BNBRewardsTransferFee = newBNBRewardsFee;
        totalTransferFees = marketingTransferFees.add(liquidityTransferFee).add(BNBRewardsTransferFee);
        emit UpdateTransferFees(newMarketingFee, newLiquidityFee, newBNBRewardsFee);

    }

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

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

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

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

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

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

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

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

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

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

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

        if(from != uniswapV2Pair){
            require(to != address(this), "You cannot send tokens to the contract address!");
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        } else if (
            !swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]
        ) {
            bool isSelling = automatedMarketMakerPairs[to];
            bool isBuying = automatedMarketMakerPairs[from];


            if (
                isSelling && // sells only by detecting transfer to automated market maker pair
                from != address(uniswapV2Router) //router -> pair is removing liquidity which shouldn't have max
            ) {
                
                marketingFeeActual = marketingSellFees;
                liquidityFeeActual = liquiditySellFee;
                BNBRewardsFeeActual = BNBRewardsSellFee;
            }

            else if (
                isBuying &&
                to != address(uniswapV2Router)
            ) {
                 marketingFeeActual = marketingBuyFees;
                 liquidityFeeActual = liquidityBuyFee;
                 BNBRewardsFeeActual = BNBRewardsBuyFee;
               
            }else{

                marketingFeeActual = marketingTransferFees;
                liquidityFeeActual = liquidityTransferFee;
                BNBRewardsFeeActual = BNBRewardsTransferFee;

            }

            uint256 contractTokenBalance = balanceOf(address(this));

            bool canSwap = contractTokenBalance >= swapTokensAtAmount;
            
            if (canSwap && !automatedMarketMakerPairs[from]) {
                swapping = true;

                swapAndLiquify(countLiquidityFees);

                swapAndSendDividends(countBNBRewardsFee);

                swapAndSendMarketingBNB();

                swapping = false;
            }

            uint256 marketingFeeAmount = amount.mul(marketingFeeActual).div(100);
            uint256 liquidityFeeAmount = amount.mul(liquidityFeeActual).div(100);
            uint256 BNBRewardsFeeAmount = amount.mul(BNBRewardsFeeActual).div(100);
            
            countLiquidityFees += liquidityFeeAmount;
            countBNBRewardsFee += BNBRewardsFeeAmount;

            uint256 fees = marketingFeeAmount + liquidityFeeAmount + BNBRewardsFeeAmount;
            amount = amount.sub(fees);
            super._transfer(from, address(this), fees);

            uint256 gas = gasForProcessing;

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

        super._transfer(from, to, amount);
        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}
        
    }

    function swapAndLiquify(uint256 tokens) private {
        if(tokens > balanceOf(address(this))){
            emit SwapAndLiquify(0, 0, 0, false);
            return;
        }
        
        
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);
        
        if(half <= 0 || otherHalf <= 0){
            return;
        }

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

        // swap tokens for BNB
        swapTokensForBNB(half, payable(address(this)));
        
        countLiquidityFees -= half;

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        countLiquidityFees -= otherHalf;
        
        emit SwapAndLiquify(half, newBalance, otherHalf, true);
    }
    
    function swapTokensForBNB(uint256 tokenAmount, address payable account) private {
        if(tokenAmount <= 0){
            return;
        }
        if(balanceOf(address(this)) < tokenAmount){
            tokenAmount = balanceOf(address(this));
        }
        
        // 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,
            account,
            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 dividends) private {
       
        uint256 beforeSwap;
        uint256 afterSwapDelta;
        
        beforeSwap = address(this).balance;
        swapTokensForBNB(dividends, payable(address(this)));
        afterSwapDelta = address(this).balance - beforeSwap;
        countBNBRewardsFee -= dividends;
        uint256 BNBRewardsFeeBNB = afterSwapDelta;

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

    }

    function swapAndSendMarketingBNB() private {

        uint256 marketingTokens = balanceOf(address(this));
       
        //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), marketingTokens);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            marketingTokens,
            0, // accept any amount of BNB
            path,
            marketingAddress,
            block.timestamp
        );
        
    }
}


contract BNBBACKDividendTracker 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()  DividendPayingToken("BNBBACK_Dividend_Tracker", "BNBBACK_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 10000 * (10**18); //must hold 10000+ tokens
    }

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

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

    function updateMinimumTokenBalanceForDividends(uint256 _newMinimumBalance) external onlyOwner {
        minimumTokenBalanceForDividends = _newMinimumBalance * (10**18);
    }
    
    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, "BNBBACK_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "BNBBACK_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":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":"newMarketingWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldMarketingWallet","type":"address"}],"name":"MarketingWalletUpdated","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":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbAmount","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"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"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":false,"internalType":"uint256","name":"marketingBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"BNBRewardsBuy","type":"uint256"}],"name":"UpdateBuyFees","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":false,"internalType":"uint256","name":"marketingSell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquiditySell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"BNBRewardsSell","type":"uint256"}],"name":"UpdateSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"marketingTransfer","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityTransfer","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"BNBRewardsTransfer","type":"uint256"}],"name":"UpdateTransferFees","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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract BNBBACKDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","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":"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":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTransferFees","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":"newMarketingFee","type":"uint256"},{"internalType":"uint256","name":"newLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newBNBRewardsFee","type":"uint256"}],"name":"updateBuyFees","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 payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinimumBalance","type":"uint256"}],"name":"updateMinimumBalanceForDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFee","type":"uint256"},{"internalType":"uint256","name":"newLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newBNBRewardsFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFee","type":"uint256"},{"internalType":"uint256","name":"newLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newBNBRewardsFee","type":"uint256"}],"name":"updateTransferFees","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"}]

6080604052600a805461dead6001600160a01b031991821617909155600b8054732bb6d595b693731466c88f77d467effe8ef4b8ec9216919091179055692a5a058fc295ed000000600c556003600d819055600e819055600f81905560026010819055601181905560128190556005601381905560148190556015819055620000b09290916200009c9190620006e2602090811b620015f917901c565b620006e260201b620015f91790919060201c565b601655620000d86014546200009c601154600e54620006e260201b620015f91790919060201c565b601755620001006015546200009c601254600f54620006e260201b620015f91790919060201c565b60185560006019556000601a55620493e0601b553480156200012157600080fd5b50604080518082018252600780825266424e424241434b60c81b60208084018281528551808701909652928552840152815191929162000164916003916200091c565b5080516200017a9060049060208401906200091c565b50505060006200018f6200075060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001eb90620009ab565b604051809103906000f08015801562000208573d6000803e3d6000fd5b50600880546001600160a01b03199081166001600160a01b0393841617909155600a546009805491909316908216179091556006805473f491e7b69e4244ad4002bc14e878a34207e38c299216821790556040805163c45a015560e01b8152905163c45a015591600481810192602092909190829003018186803b1580156200029057600080fd5b505afa158015620002a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cb9190620009d0565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032957600080fd5b505afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003649190620009d0565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620003ad57600080fd5b505af1158015620003c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e89190620009d0565b600780546001600160a01b0319166001600160a01b039290921691821790556200041490600162000754565b60085460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b1580156200045b57600080fd5b505af115801562000470573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b158015620004ba57600080fd5b505af1158015620004cf573d6000803e3d6000fd5b5050600854600a5460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156200051d57600080fd5b505af115801562000532573d6000803e3d6000fd5b5050600854604051634e7b827f60e01b8152600060048201526001600160a01b039091169250634e7b827f915060240160206040518083038186803b1580156200057b57600080fd5b505afa15801562000590573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005b69190620009fb565b5060085460065460405163031e79db60e41b81526001600160a01b0391821660048201529116906331e79db090602401600060405180830381600087803b1580156200060157600080fd5b505af115801562000616573d6000803e3d6000fd5b50506009546001600160a01b03166000908152601c602081905260408083208054600160ff19918216811790925530855291842080549092168117909155935091506200066b6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556008549091168152601c909252902080549091166001179055620006dc620006c96005546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000820565b62000a83565b600080620006f1838562000a1f565b905083811015620007495760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b3390565b6001600160a01b0382166000908152601d60205260409020805460ff19168215801591909117909155620007e45760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620007ca57600080fd5b505af1158015620007df573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038216620008785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000740565b6200089481600254620006e260201b620015f91790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620008c7918390620015f9620006e2821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8280546200092a9062000a46565b90600052602060002090601f0160209004810192826200094e576000855562000999565b82601f106200096957805160ff191683800117855562000999565b8280016001018555821562000999579182015b82811115620009995782518255916020019190600101906200097c565b50620009a7929150620009b9565b5090565b6120b3806200344983390190565b5b80821115620009a75760008155600101620009ba565b600060208284031215620009e357600080fd5b81516001600160a01b03811681146200074957600080fd5b60006020828403121562000a0e57600080fd5b815180151581146200074957600080fd5b6000821982111562000a4157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c9082168062000a5b57607f821691505b6020821081141562000a7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6129b68062000a936000396000f3fe6080604052600436106102605760003560e01c806388bdd9be11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610758578063e2f456051461079e578063e37ba8f9146107b4578063e7841ec0146107d4578063f27fd254146107e9578063f2fde38b1461080957600080fd5b8063c0246668146106c2578063c17b5b8c146106e2578063d0a3981414610702578063d469801614610718578063d6ee42e91461073857600080fd5b8063a8b9d24011610108578063a8b9d240146105b7578063a9059cbb146105d7578063aacebbe3146105f7578063ad56c13c14610617578063b62496f51461067c578063b9e93700146106ac57600080fd5b806388bdd9be1461052e5780638da5cb5b1461054e57806395d89b411461056c5780639c1b8af514610581578063a5ece9411461059757600080fd5b80633b364da8116101dd5780636843cd84116101a15780636843cd841461046e578063700bb1911461048e57806370a08231146104ae5780638095d564146104ce57806385141a77146104ee578063871c128d1461050e57600080fd5b80633b364da8146103cb57806349bd5a5e146103eb5780634e71d92d1461040b5780634fbee1931461042057806364b0f6531461045957600080fd5b806323b872dd1161022457806323b872dd146103385780632c1f52161461035857806330bb4cff14610378578063313ce5671461038d57806331e79db0146103a957600080fd5b806306fdde031461026c578063095ea7b3146102975780630e5d0e45146102c75780631694505e146102eb57806318160ddd1461032357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b50610281610829565b60405161028e91906126f8565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004612623565b6108bb565b604051901515815260200161028e565b3480156102d357600080fd5b506102dd60185481565b60405190815260200161028e565b3480156102f757600080fd5b5060065461030b906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b34801561032f57600080fd5b506002546102dd565b34801561034457600080fd5b506102b761035336600461254a565b6108d2565b34801561036457600080fd5b5060085461030b906001600160a01b031681565b34801561038457600080fd5b506102dd61093b565b34801561039957600080fd5b506040516012815260200161028e565b3480156103b557600080fd5b506103c96103c43660046124d7565b6109bd565b005b3480156103d757600080fd5b506103c96103e636600461266c565b610a53565b3480156103f757600080fd5b5060075461030b906001600160a01b031681565b34801561041757600080fd5b506103c9610aae565b34801561042c57600080fd5b506102b761043b3660046124d7565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561046557600080fd5b506102dd610b35565b34801561047a57600080fd5b506102dd6104893660046124d7565b610b7a565b34801561049a57600080fd5b506103c96104a936600461266c565b610bf9565b3480156104ba57600080fd5b506102dd6104c93660046124d7565b610cda565b3480156104da57600080fd5b506103c96104e936600461269e565b610cf5565b3480156104fa57600080fd5b50600a5461030b906001600160a01b031681565b34801561051a57600080fd5b506103c961052936600461266c565b610d8c565b34801561053a57600080fd5b506103c96105493660046124d7565b610e08565b34801561055a57600080fd5b506005546001600160a01b031661030b565b34801561057857600080fd5b506102816110b0565b34801561058d57600080fd5b506102dd601b5481565b3480156105a357600080fd5b50600b5461030b906001600160a01b031681565b3480156105c357600080fd5b506102dd6105d23660046124d7565b6110bf565b3480156105e357600080fd5b506102b76105f2366004612623565b6110f2565b34801561060357600080fd5b506103c96106123660046124d7565b6110ff565b34801561062357600080fd5b506106376106323660046124d7565b611186565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161028e565b34801561068857600080fd5b506102b76106973660046124d7565b601d6020526000908152604090205460ff1681565b3480156106b857600080fd5b506102dd60165481565b3480156106ce57600080fd5b506103c96106dd36600461258b565b611230565b3480156106ee57600080fd5b506103c96106fd36600461269e565b6112e5565b34801561070e57600080fd5b506102dd60175481565b34801561072457600080fd5b5060095461030b906001600160a01b031681565b34801561074457600080fd5b506103c961075336600461269e565b61136d565b34801561076457600080fd5b506102dd610773366004612511565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107aa57600080fd5b506102dd600c5481565b3480156107c057600080fd5b506103c96107cf3660046124d7565b6113f5565b3480156107e057600080fd5b506102dd611487565b3480156107f557600080fd5b5061063761080436600461266c565b6114cc565b34801561081557600080fd5b506103c96108243660046124d7565b61150e565b606060038054610838906128a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610864906128a8565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c833848461165f565b5060015b92915050565b60006108df848484611784565b610931843361092c85604051806060016040528060288152602001612959602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611c68565b61165f565b5060019392505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561098057600080fd5b505afa158015610994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b89190612685565b905090565b6005546001600160a01b031633146109f05760405162461bcd60e51b81526004016109e79061274d565b60405180910390fd5b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610a3857600080fd5b505af1158015610a4c573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610a7d5760405162461bcd60e51b81526004016109e79061274d565b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e8990602401610a1e565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610afa57600080fd5b505af1158015610b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b32919061264f565b50565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561098057600080fd5b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610bc157600080fd5b505afa158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cc9190612685565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b158015610c4757600080fd5b505af1158015610c5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7f91906126ca565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610d1f5760405162461bcd60e51b81526004016109e79061274d565b600d83905560108290556013819055610d4281610d3c85856115f9565b906115f9565b60165560408051848152602081018490529081018290527fef771cd1f65ae0d0bb1f243b74153b6559106206e6dbc387e6e219afd8a95cf4906060015b60405180910390a1505050565b6005546001600160a01b03163314610db65760405162461bcd60e51b81526004016109e79061274d565b62030d408110158015610dcc57506207a1208111155b610dd557600080fd5b601b5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601b55565b6005546001600160a01b03163314610e325760405162461bcd60e51b81526004016109e79061274d565b6008546001600160a01b0382811691161415610e4d57600080fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9557600080fd5b505afa158015610ea9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecd91906124f4565b6001600160a01b031614610ee057600080fd5b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b158015610f2257600080fd5b505af1158015610f36573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b158015610f7b57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b5050600a5460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b158015610fda57600080fd5b505af1158015610fee573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561103957600080fd5b505af115801561104d573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610838906128a8565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610ba9565b60006108c8338484611784565b6005546001600160a01b031633146111295760405162461bcd60e51b81526004016109e79061274d565b600b546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156111dd57600080fd5b505afa1580156111f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121591906125b9565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b0316331461125a5760405162461bcd60e51b81526004016109e79061274d565b6001600160a01b0382166000908152601c602052604090205460ff161515811515141561128657600080fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461130f5760405162461bcd60e51b81526004016109e79061274d565b600e8390556011829055601481905561132c81610d3c85856115f9565b60175560408051848152602081018490529081018290527faaaabdccd2e271f505d88ba07f83d9f2d16e63dac9b7f725cfc8d9e05a33a6e690606001610d7f565b6005546001600160a01b031633146113975760405162461bcd60e51b81526004016109e79061274d565b600f839055601282905560158190556113b481610d3c85856115f9565b60185560408051848152602081018490529081018290527fd7fe9ccf0d59843d67ad6cd87826b9c7aad3debd1e37ab485d71cee1c0e755fa90606001610d7f565b6005546001600160a01b0316331461141f5760405162461bcd60e51b81526004016109e79061274d565b61142a816001611230565b6009546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561098057600080fd5b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016111c4565b6005546001600160a01b031633146115385760405162461bcd60e51b81526004016109e79061274d565b6001600160a01b03811661159d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e7565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806116068385612838565b9050838110156116585760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109e7565b9392505050565b6001600160a01b0383166116c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e7565b6001600160a01b0382166117225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166117aa5760405162461bcd60e51b81526004016109e790612782565b6007546001600160a01b03848116911614611830576001600160a01b0382163014156118305760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f742073656e6420746f6b656e7320746f2074686520636f60448201526e6e747261637420616464726573732160881b60648201526084016109e7565b806118465761184183836000611ca2565b505050565b600754600160a01b900460ff1615801561187957506001600160a01b0383166000908152601c602052604090205460ff16155b801561189e57506001600160a01b0382166000908152601c602052604090205460ff16155b15611b6f576001600160a01b038083166000908152601d602052604080822054928616825290205460ff91821691168180156118e857506006546001600160a01b03868116911614155b1561190457600e54601e55601154601f5560145460205561194e565b80801561191f57506006546001600160a01b03858116911614155b1561193b57600d54601e55601054601f5560135460205561194e565b600f54601e55601254601f556015546020555b600061195930610cda565b600c549091508110801590819061198957506001600160a01b0387166000908152601d602052604090205460ff16155b156119ce576007805460ff60a01b1916600160a01b1790556019546119ad90611de7565b6119b8601a54611f15565b6119c0611fdb565b6007805460ff60a01b191690555b60006119f060646119ea601e548961215890919063ffffffff16565b906121d7565b90506000611a0e60646119ea601f548a61215890919063ffffffff16565b90506000611a2c60646119ea6020548b61215890919063ffffffff16565b90508160196000828254611a409190612838565b9250508190555080601a6000828254611a599190612838565b909155506000905081611a6c8486612838565b611a769190612838565b9050611a828982612219565b9850611a8f8b3083611ca2565b601b546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b158015611adb57600080fd5b505af1925050508015611b0b575060408051601f3d908101601f19168201909252611b08918101906126ca565b60015b611b1457611b65565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b5050505050505050505b611b7a838383611ca2565b6008546001600160a01b031663e30443bc84611b9581610cda565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611bdb57600080fd5b505af1925050508015611bec575060015b506008546001600160a01b031663e30443bc83611c0881610cda565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611c4e57600080fd5b505af1925050508015611c5f575060015b61184157505050565b60008184841115611c8c5760405162461bcd60e51b81526004016109e791906126f8565b506000611c998486612891565b95945050505050565b6001600160a01b038316611cc85760405162461bcd60e51b81526004016109e790612782565b6001600160a01b038216611d2a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109e7565b611d6781604051806060016040528060268152602001612933602691396001600160a01b0386166000908152602081905260409020549190611c68565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d9690826115f9565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611777565b611df030610cda565b811115611e415760408051600080825260208201819052818301819052606082015290517f5826dab182292d2e5b8adf2856697983c65b882fa567a247222747a43e606d199181900360800190a150565b6000611e4e8260026121d7565b90506000611e5c8383612219565b9050811580611e69575080155b15611e7357505050565b47611e7e833061225b565b8260196000828254611e909190612891565b9091555060009050611ea24783612219565b9050611eae83826123ed565b8260196000828254611ec09190612891565b90915550506040805185815260208101839052908101849052600160608201527f5826dab182292d2e5b8adf2856697983c65b882fa567a247222747a43e606d19906080015b60405180910390a15050505050565b476000611f22833061225b565b611f2c8247612891565b905082601a6000828254611f409190612891565b909155505060085460405182916000916001600160a01b039091169083908381818185875af1925050503d8060008114611f96576040519150601f19603f3d011682016040523d82523d6000602084013e611f9b565b606091505b505090508015610a4c5760408051868152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39101611f06565b6000611fe630610cda565b60408051600280825260608201835292935060009290916020830190803683370190505090503081600081518110612020576120206128f9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561207457600080fd5b505afa158015612088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ac91906124f4565b816001815181106120bf576120bf6128f9565b6001600160a01b0392831660209182029290920101526006546120e5913091168461165f565b600654600b5460405163791ac94760e01b81526001600160a01b039283169263791ac94792612122928792600092889291169042906004016127c7565b600060405180830381600087803b15801561213c57600080fd5b505af1158015612150573d6000803e3d6000fd5b505050505050565b600082612167575060006108cc565b60006121738385612872565b9050826121808583612850565b146116585760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109e7565b600061165883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124a9565b600061165883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c68565b60008211612267575050565b8161227130610cda565b10156122835761228030610cda565b91505b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122b8576122b86128f9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561230c57600080fd5b505afa158015612320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234491906124f4565b81600181518110612357576123576128f9565b6001600160a01b03928316602091820292909201015260065461237d913091168561165f565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906123b69086906000908690889042906004016127c7565b600060405180830381600087803b1580156123d057600080fd5b505af11580156123e4573d6000803e3d6000fd5b50505050505050565b6006546124059030906001600160a01b03168461165f565b60065460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b15801561247057600080fd5b505af1158015612484573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a4c91906126ca565b600081836124ca5760405162461bcd60e51b81526004016109e791906126f8565b506000611c998486612850565b6000602082840312156124e957600080fd5b81356116588161290f565b60006020828403121561250657600080fd5b81516116588161290f565b6000806040838503121561252457600080fd5b823561252f8161290f565b9150602083013561253f8161290f565b809150509250929050565b60008060006060848603121561255f57600080fd5b833561256a8161290f565b9250602084013561257a8161290f565b929592945050506040919091013590565b6000806040838503121561259e57600080fd5b82356125a98161290f565b9150602083013561253f81612924565b600080600080600080600080610100898b0312156125d657600080fd5b88516125e18161290f565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b6000806040838503121561263657600080fd5b82356126418161290f565b946020939093013593505050565b60006020828403121561266157600080fd5b815161165881612924565b60006020828403121561267e57600080fd5b5035919050565b60006020828403121561269757600080fd5b5051919050565b6000806000606084860312156126b357600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156126df57600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b8181101561272557858101830151858201604001528201612709565b81811115612737576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128175784516001600160a01b0316835293830193918301916001016127f2565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561284b5761284b6128e3565b500190565b60008261286d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561288c5761288c6128e3565b500290565b6000828210156128a3576128a36128e3565b500390565b600181811c908216806128bc57607f821691505b602082108114156128dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610b3257600080fd5b8015158114610b3257600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220041027cd9139d092b041988a4586312b7bbc6d7d28bb8243598ea99685558d2364736f6c6343000807003360806040523480156200001157600080fd5b5060408051808201825260188082527f424e424241434b5f4469766964656e645f547261636b65720000000000000000602080840182815285518087019096529285528401528151919291839183916200006e9160039162000107565b5080516200008490600490602084019062000107565b505050505060006200009b6200010360201b60201c565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e1060115569021e19e0c9bab2400000601255620001ea565b3390565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600181811c90821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b611eb980620001fa6000396000f3fe6080604052600436106101f25760003560e01c806370a082311161010d578063bc4c4b37116100a0578063e7841ec01161006f578063e7841ec0146105f7578063e98030c71461060c578063f2fde38b1461062c578063fbcbc0f11461064c578063ffb2c4791461066c57600080fd5b8063bc4c4b371461055b578063be10b6141461057b578063dd62ed3e14610591578063e30443bc146105d757600080fd5b806395d89b41116100dc57806395d89b41146104d0578063a8b9d240146104e5578063a9059cbb14610505578063aafd847a1461052557600080fd5b806370a082311461043c57806385a6b3ae146104725780638da5cb5b1461048857806391b89fba146104b057600080fd5b806327ce0147116101855780634e7b827f116101545780634e7b827f1461037c5780635183d6fd146103ac5780636a474002146104115780636f2789ec1461042657600080fd5b806327ce01471461030a5780633009a6091461032a578063313ce5671461034057806331e79db01461035c57600080fd5b80630dcb2e89116101c15780630dcb2e891461028857806318160ddd146102a8578063226cfa3d146102bd57806323b872dd146102ea57600080fd5b806303c833021461020657806306fdde031461020e578063095ea7b31461023957806309bbedde1461026957600080fd5b36610201576101ff6106a7565b005b600080fd5b6101ff6106a7565b34801561021a57600080fd5b5061022361073a565b6040516102309190611c0f565b60405180910390f35b34801561024557600080fd5b50610259610254366004611b5b565b6107cc565b6040519015158152602001610230565b34801561027557600080fd5b50600a545b604051908152602001610230565b34801561029457600080fd5b506101ff6102a3366004611bf6565b6107e3565b3480156102b457600080fd5b5060025461027a565b3480156102c957600080fd5b5061027a6102d8366004611b00565b60106020526000908152604090205481565b3480156102f657600080fd5b50610259610305366004611bb5565b61082e565b34801561031657600080fd5b5061027a610325366004611b00565b610897565b34801561033657600080fd5b5061027a600e5481565b34801561034c57600080fd5b5060405160128152602001610230565b34801561036857600080fd5b506101ff610377366004611b00565b6108f3565b34801561038857600080fd5b50610259610397366004611b00565b600f6020526000908152604090205460ff1681565b3480156103b857600080fd5b506103cc6103c7366004611bf6565b6109b3565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610230565b34801561041d57600080fd5b506101ff610a22565b34801561043257600080fd5b5061027a60115481565b34801561044857600080fd5b5061027a610457366004611b00565b6001600160a01b031660009081526020819052604090205490565b34801561047e57600080fd5b5061027a60085481565b34801561049457600080fd5b506009546040516001600160a01b039091168152602001610230565b3480156104bc57600080fd5b5061027a6104cb366004611b00565b610aca565b3480156104dc57600080fd5b50610223610ad5565b3480156104f157600080fd5b5061027a610500366004611b00565b610ae4565b34801561051157600080fd5b50610259610520366004611b5b565b610b10565b34801561053157600080fd5b5061027a610540366004611b00565b6001600160a01b031660009081526007602052604090205490565b34801561056757600080fd5b50610259610576366004611b1d565b610b1d565b34801561058757600080fd5b5061027a60125481565b34801561059d57600080fd5b5061027a6105ac366004611b87565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e357600080fd5b506101ff6105f2366004611b5b565b610bcb565b34801561060357600080fd5b50600e5461027a565b34801561061857600080fd5b506101ff610627366004611bf6565b610c64565b34801561063857600080fd5b506101ff610647366004611b00565b610dd6565b34801561065857600080fd5b506103cc610667366004611b00565b610ec1565b34801561067857600080fd5b5061068c610687366004611bf6565b610faa565b60408051938452602084019290925290820152606001610230565b60006106b260025490565b116106bc57600080fd5b3415610738576106ef6106ce60025490565b6106dc34600160801b6110c5565b6106e69190611cf2565b6005549061114b565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600854610734903461114b565b6008555b565b60606003805461074990611d89565b80601f016020809104026020016040519081016040528092919081815260200182805461077590611d89565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b60006107d93384846111aa565b5060015b92915050565b6009546001600160a01b031633146108165760405162461bcd60e51b815260040161080d90611c64565b60405180910390fd5b61082881670de0b6b3a7640000611d14565b60125550565b600061083b8484846112ce565b61088d843361088885604051806060016040528060288152602001611e5c602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061132d565b6111aa565b5060019392505050565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b926108e9926108e4926108de916108d991906110c5565b611367565b90611377565b6113b5565b6107dd9190611cf2565b6009546001600160a01b0316331461091d5760405162461bcd60e51b815260040161080d90611c64565b6001600160a01b0381166000908152600f602052604090205460ff161561094357600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff191660011790556109719082906113c8565b61097c600a82611427565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b6000806000806000806000806109c8600a5490565b89106109ed575060009650600019955085945086935083925082915081905080610a17565b60006109fa600a8b611562565b9050610a0581610ec1565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606b60248201527f424e424241434b5f4469766964656e645f547261636b65723a2077697468647260448201527f61774469766964656e642064697361626c65642e20557365207468652027636c60648201527f61696d272066756e6374696f6e206f6e20746865206d61696e20424e4242414360848201526a259031b7b73a3930b1ba1760a91b60a482015260c40161080d565b60006107dd82610ae4565b60606004805461074990611d89565b6001600160a01b0381166000908152600760205260408120546107dd90610b0a84610897565b90611595565b60006107d93384846112ce565b6009546000906001600160a01b03163314610b4a5760405162461bcd60e51b815260040161080d90611c64565b6000610b55846115d7565b90508015610bc1576001600160a01b038416600081815260106020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610baf9085815260200190565b60405180910390a360019150506107dd565b5060009392505050565b6009546001600160a01b03163314610bf55760405162461bcd60e51b815260040161080d90611c64565b6001600160a01b0382166000908152600f602052604090205460ff1615610c1a575050565b6012548110610c3e57610c2d82826113c8565b610c39600a838361171d565b610c54565b610c498260006113c8565b610c54600a83611427565b610c5f826001610b1d565b505050565b6009546001600160a01b03163314610c8e5760405162461bcd60e51b815260040161080d90611c64565b610e108110158015610ca35750620151808111155b610d2b5760405162461bcd60e51b815260206004820152604d60248201527f424e424241434b5f4469766964656e645f547261636b65723a20636c61696d5760448201527f616974206d757374206265207570646174656420746f206265747765656e203160648201526c20616e6420323420686f75727360981b608482015260a40161080d565b601154811415610da35760405162461bcd60e51b815260206004820152603f60248201527f424e424241434b5f4469766964656e645f547261636b65723a2043616e6e6f7460448201527f2075706461746520636c61696d5761697420746f2073616d652076616c756500606482015260840161080d565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6009546001600160a01b03163314610e005760405162461bcd60e51b815260040161080d90611c64565b6001600160a01b038116610e655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b806000808080808080610ed5600a896117c6565b9650600019955060008712610f3757600e54871115610f0357600e54610efc908890611811565b9550610f37565b600e54600a5460009110610f18576000610f27565b600e54600a54610f2791611595565b9050610f338882611377565b9650505b610f4088610ae4565b9450610f4b88610897565b6001600160a01b038916600090815260106020526040902054909450925082610f75576000610f83565b601154610f8390849061114b565b9150428211610f93576000610f9d565b610f9d8242611595565b9050919395975091939597565b600a546000908190819080610fca575050600e54600092508291506110be565b600e546000805a90506000805b8984108015610fe557508582105b156110ad5784610ff481611dc4565b600a549096508610905061100757600094505b6000600a600001868154811061101f5761101f611e0b565b60009182526020808320909101546001600160a01b031680835260109091526040909120549091506110509061184e565b1561107357611060816001610b1d565b15611073578161106f81611dc4565b9250505b8261107d81611dc4565b93505060005a9050808511156110a4576110a161109a8683611595565b879061114b565b95505b9350610fd79050565b600e85905590975095509193505050505b9193909250565b6000826110d4575060006107dd565b60006110e08385611d14565b9050826110ed8583611cf2565b146111445760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080d565b9392505050565b6000806111588385611cda565b9050838110156111445760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080d565b6001600160a01b03831661120c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080d565b6001600160a01b03821661126d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602e60248201527f424e424241434b5f4469766964656e645f547261636b65723a204e6f2074726160448201526d1b9cd9995c9cc8185b1b1bddd95960921b606482015260840161080d565b600081848411156113515760405162461bcd60e51b815260040161080d9190611c0f565b50600061135e8486611d72565b95945050505050565b600081818112156107dd57600080fd5b6000806113848385611c99565b9050600083121580156113975750838112155b806113ac57506000831280156113ac57508381125b61114457600080fd5b6000808212156113c457600080fd5b5090565b6001600160a01b038216600090815260208190526040902054808211156114075760006113f58383611595565b90506114018482611875565b50505050565b80821015610c5f57600061141b8284611595565b905061140184826118d9565b6001600160a01b038116600090815260038301602052604090205460ff1661144d575050565b6001600160a01b03811660009081526003830160209081526040808320805460ff191690556001808601835281842084905560028601909252822054845490929161149791611d72565b905060008460000182815481106114b0576114b0611e0b565b60009182526020808320909101546001600160a01b039081168084526002890190925260408084208790559087168352822091909155855490915081908690859081106114ff576114ff611e0b565b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055845485908061153957611539611df5565b600082815260209020810160001990810180546001600160a01b03191690550190555050505050565b600082600001828154811061157957611579611e0b565b6000918252602090912001546001600160a01b03169392505050565b600061114483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061132d565b6000806115e383610ae4565b90508015611714576001600160a01b03831660009081526007602052604090205461160e908261114b565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9061165d9084815260200190565b60405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d80600081146116b7576040519150601f19603f3d011682016040523d82523d6000602084013e6116bc565b606091505b505090508061170d576001600160a01b0384166000908152600760205260409020546116e89083611595565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b6001600160a01b038216600090815260038401602052604090205460ff1615611762576001600160a01b03821660009081526001840160205260409020819055505050565b6001600160a01b03821660008181526003850160209081526040808320805460ff19166001908117909155878101835281842086905587546002890184529184208290558101875586835291200180546001600160a01b0319169091179055505050565b6001600160a01b038116600090815260038301602052604081205460ff166117f157506000196107dd565b506001600160a01b03166000908152600291909101602052604090205490565b60008061181e8385611d33565b9050600083121580156118315750838113155b806113ac57506000831280156113ac575083811361114457600080fd5b60004282111561186057506000919050565b60115461186d4284611595565b101592915050565b61187f828261191d565b6118b961189a6108d9836005546110c590919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611811565b6001600160a01b0390921660009081526006602052604090209190915550565b6118e382826119fc565b6118b96118fe6108d9836005546110c590919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611377565b6001600160a01b0382166119735760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161080d565b600254611980908261114b565b6002556001600160a01b0382166000908152602081905260409020546119a6908261114b565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611a5c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161080d565b611a9981604051806060016040528060228152602001611e3a602291396001600160a01b038516600090815260208190526040902054919061132d565b6001600160a01b038316600090815260208190526040902055600254611abf9082611595565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016119f0565b600060208284031215611b1257600080fd5b813561114481611e21565b60008060408385031215611b3057600080fd5b8235611b3b81611e21565b915060208301358015158114611b5057600080fd5b809150509250929050565b60008060408385031215611b6e57600080fd5b8235611b7981611e21565b946020939093013593505050565b60008060408385031215611b9a57600080fd5b8235611ba581611e21565b91506020830135611b5081611e21565b600080600060608486031215611bca57600080fd5b8335611bd581611e21565b92506020840135611be581611e21565b929592945050506040919091013590565b600060208284031215611c0857600080fd5b5035919050565b600060208083528351808285015260005b81811015611c3c57858101830151858201604001528201611c20565b81811115611c4e576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b0384900385131615611cbb57611cbb611ddf565b600160ff1b8390038412811615611cd457611cd4611ddf565b50500190565b60008219821115611ced57611ced611ddf565b500190565b600082611d0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611d2e57611d2e611ddf565b500290565b60008083128015600160ff1b850184121615611d5157611d51611ddf565b6001600160ff1b0384018313811615611d6c57611d6c611ddf565b50500390565b600082821015611d8457611d84611ddf565b500390565b600181811c90821680611d9d57607f821691505b60208210811415611dbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dd857611dd8611ddf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114611e3657600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f226f99696b8c6b1643317cc6753c7a40b7bad7c23f46171228db2e04b1c733564736f6c63430008070033

Deployed ByteCode Sourcemap

44871:18418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12577:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14885:210;;;;;;;;;;-1:-1:-1;14885:210:0;;;;;:::i;:::-;;:::i;:::-;;;7010:14:1;;7003:22;6985:41;;6973:2;6958:18;14885:210:0;6845:187:1;45999:109:0;;;;;;;;;;;;;;;;;;;12257:25:1;;;12245:2;12230:18;45999:109:0;12111:177:1;44948:41:0;;;;;;;;;;-1:-1:-1;44948:41:0;;;;-1:-1:-1;;;;;44948:41:0;;;;;;-1:-1:-1;;;;;4659:32:1;;;4641:51;;4629:2;4614:18;44948:41:0;4495:203:1;13697:108:0;;;;;;;;;;-1:-1:-1;13785:12:0;;13697:108;;15577:454;;;;;;;;;;-1:-1:-1;15577:454:0;;;;;:::i;:::-;;:::i;45065:45::-;;;;;;;;;;-1:-1:-1;45065:45:0;;;;-1:-1:-1;;;;;45065:45:0;;;53611:141;;;;;;;;;;;;;:::i;49616:93::-;;;;;;;;;;-1:-1:-1;49616:93:0;;49699:2;14807:36:1;;14795:2;14780:18;49616:93:0;14665:184:1;51181:130:0;;;;;;;;;;-1:-1:-1;51181:130:0;;;;;:::i;:::-;;:::i;:::-;;50495:189;;;;;;;;;;-1:-1:-1;50495:189:0;;;;;:::i;:::-;;:::i;44998:28::-;;;;;;;;;;-1:-1:-1;44998:28:0;;;;-1:-1:-1;;;;;44998:28:0;;;55411:103;;;;;;;;;;;;;:::i;53760:126::-;;;;;;;;;;-1:-1:-1;53760:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;53850:28:0;53826:4;53850:28;;;:19;:28;;;;;;;;;53760:126;55660:142;;;;;;;;;;;;;:::i;54086:171::-;;;;;;;;;;-1:-1:-1;54086:171:0;;;;;:::i;:::-;;:::i;54993:410::-;;;;;;;;;;-1:-1:-1;54993:410:0;;;;;:::i;:::-;;:::i;13868:177::-;;;;;;;;;;-1:-1:-1;13868:177:0;;;;;:::i;:::-;;:::i;52144:463::-;;;;;;;;;;-1:-1:-1;52144:463:0;;;;;:::i;:::-;;:::i;45158:70::-;;;;;;;;;;-1:-1:-1;45158:70:0;;;;-1:-1:-1;;;;;45158:70:0;;;51896:240;;;;;;;;;;-1:-1:-1;51896:240:0;;;;;:::i;:::-;;:::i;49754:733::-;;;;;;;;;;-1:-1:-1;49754:733:0;;;;;:::i;:::-;;:::i;28274:79::-;;;;;;;;;;-1:-1:-1;28339:6:0;;-1:-1:-1;;;;;28339:6:0;28274:79;;12796:104;;;;;;;;;;;;;:::i;46289:40::-;;;;;;;;;;;;;;;;45235:93;;;;;;;;;;-1:-1:-1;45235:93:0;;;;-1:-1:-1;;;;;45235:93:0;;;53894:184;;;;;;;;;;-1:-1:-1;53894:184:0;;;;;:::i;:::-;;:::i;14258:216::-;;;;;;;;;;-1:-1:-1;14258:216:0;;;;;:::i;:::-;;:::i;50692:225::-;;;;;;;;;;-1:-1:-1;50692:225:0;;;;;:::i;:::-;;:::i;54265:351::-;;;;;;;;;;-1:-1:-1;54265:351:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5884:32:1;;;5866:51;;5948:2;5933:18;;5926:34;;;;5976:18;;;5969:34;;;;6034:2;6019:18;;6012:34;;;;6077:3;6062:19;;6055:35;5904:3;6106:19;;6099:35;6165:3;6150:19;;6143:35;6209:3;6194:19;;6187:35;5853:3;5838:19;54265:351:0;5527:701:1;46601:57:0;;;;;;;;;;-1:-1:-1;46601:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45803:89;;;;;;;;;;;;;;;;50925:244;;;;;;;;;;-1:-1:-1;50925:244:0;;;;;:::i;:::-;;:::i;52619:470::-;;;;;;;;;;-1:-1:-1;52619:470:0;;;;;:::i;:::-;;:::i;45899:93::-;;;;;;;;;;;;;;;;45119:30;;;;;;;;;;-1:-1:-1;45119:30:0;;;;-1:-1:-1;;;;;45119:30:0;;;53097:506;;;;;;;;;;-1:-1:-1;53097:506:0;;;;;:::i;:::-;;:::i;14537:201::-;;;;;;;;;;-1:-1:-1;14537:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;14703:18:0;;;14671:7;14703:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14537:201;45337:53;;;;;;;;;;;;;;;;51607:281;;;;;;;;;;-1:-1:-1;51607:281:0;;;;;:::i;:::-;;:::i;55522:130::-;;;;;;;;;;;;;:::i;54624:361::-;;;;;;;;;;-1:-1:-1;54624:361:0;;;;;:::i;:::-;;:::i;28720:281::-;;;;;;;;;;-1:-1:-1;28720:281:0;;;;;:::i;:::-;;:::i;12577:100::-;12631:13;12664:5;12657:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12577:100;:::o;14885:210::-;15004:4;15026:39;2871:10;15049:7;15058:6;15026:8;:39::i;:::-;-1:-1:-1;15083:4:0;14885:210;;;;;:::o;15577:454::-;15717:4;15734:36;15744:6;15752:9;15763:6;15734:9;:36::i;:::-;15781:220;15804:6;2871:10;15852:138;15908:6;15852:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15852:19:0;;;;;;:11;:19;;;;;;;;2871:10;15852:33;;;;;;;;;;:37;:138::i;:::-;15781:8;:220::i;:::-;-1:-1:-1;16019:4:0;15577:454;;;;;:::o;53611:141::-;53701:15;;:43;;;-1:-1:-1;;;53701:43:0;;;;53674:7;;-1:-1:-1;;;;;53701:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53694:50;;53611:141;:::o;51181:130::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;;;;;;;;;51256:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;51256:45:0;;-1:-1:-1;;;;;4659:32:1;;;51256:45:0::1;::::0;::::1;4641:51:1::0;51256:15:0;;::::1;::::0;:36:::1;::::0;4614:18:1;;51256:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51181:130:::0;:::o;50495:189::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;50604:15:::1;::::0;:72:::1;::::0;-1:-1:-1;;;50604:72:0;;::::1;::::0;::::1;12257:25:1::0;;;-1:-1:-1;;;;;50604:15:0;;::::1;::::0;:53:::1;::::0;12230:18:1;;50604:72:0::1;12111:177:1::0;55411:103:0;55448:15;;:58;;-1:-1:-1;;;55448:58:0;;55487:10;55448:58;;;5111:51:1;55448:15:0;5178:18:1;;;5171:50;-1:-1:-1;;;;;55448:15:0;;;;:30;;5084:18:1;;55448:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55411:103::o;55660:142::-;55753:15;;:41;;;-1:-1:-1;;;55753:41:0;;;;55726:7;;-1:-1:-1;;;;;55753:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;54086:171;54215:15;;:34;;-1:-1:-1;;;54215:34:0;;-1:-1:-1;;;;;4659:32:1;;;54215:34:0;;;4641:51:1;54183:7:0;;54215:15;;:25;;4614:18:1;;54215:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;54993:410::-;55175:15;;:28;;-1:-1:-1;;;;;;55175:28:0;;;;;12257:25:1;;;55073:18:0;;;;;;-1:-1:-1;;;;;55175:15:0;;:23;;12230:18:1;;55175:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55219:176;;;14500:25:1;;;14556:2;14541:18;;14534:34;;;14584:18;;;14577:34;;;14642:2;14627:18;;14620:34;;;55058:145:0;;-1:-1:-1;55058:145:0;;-1:-1:-1;55058:145:0;-1:-1:-1;55375:9:0;;55337:5;;55219:176;;14487:3:1;14472:19;55219:176:0;;;;;;;55047:356;;;54993:410;:::o;13868:177::-;-1:-1:-1;;;;;14019:18:0;13987:7;14019:18;;;;;;;;;;;;13868:177::o;52144:463::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;52307:16:::1;:34:::0;;;52352:15:::1;:33:::0;;;52396:16:::1;:35:::0;;;52457:59:::1;52415:16:::0;52457:37:::1;52326:15:::0;52370;52457:20:::1;:37::i;:::-;:41:::0;::::1;:59::i;:::-;52442:12;:74:::0;52532:65:::1;::::0;;13741:25:1;;;13797:2;13782:18;;13775:34;;;13825:18;;;13818:34;;;52532:65:0::1;::::0;13729:2:1;13714:18;52532:65:0::1;;;;;;;;52144:463:::0;;;:::o;51896:240::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;51994:6:::1;51982:8;:18;;:40;;;;;52016:6;52004:8;:18;;51982:40;51974:49;;;::::0;::::1;;52073:16;::::0;52039:51:::1;::::0;52063:8;;52039:51:::1;::::0;;;::::1;52101:16;:27:::0;51896:240::o;49754:733::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;49863:15:::1;::::0;-1:-1:-1;;;;;49841:38:0;;::::1;49863:15:::0;::::1;49841:38;;49833:47;;;::::0;::::1;;49893:41;49982:10;49893:111;;50063:4;-1:-1:-1::0;;;;;50025:43:0::1;:18;-1:-1:-1::0;;;;;50025:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50025:43:0::1;;50017:52;;;::::0;::::1;;50082:68;::::0;-1:-1:-1;;;50082:68:0;;-1:-1:-1;;;;;50082:39:0;::::1;:68;::::0;::::1;4641:51:1::0;;;50082:39:0;::::1;::::0;4614:18:1;;50082:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50161:54:0::1;::::0;-1:-1:-1;;;50161:54:0;;50209:4:::1;50161:54;::::0;::::1;4641:51:1::0;-1:-1:-1;;;;;50161:39:0;::::1;::::0;-1:-1:-1;50161:39:0::1;::::0;-1:-1:-1;4614:18:1;;50161:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50266:10:0::1;::::0;50226:51:::1;::::0;-1:-1:-1;;;50226:51:0;;-1:-1:-1;;;;;50266:10:0;;::::1;50226:51;::::0;::::1;4641::1::0;50226:39:0;;::::1;::::0;-1:-1:-1;50226:39:0::1;::::0;-1:-1:-1;4614:18:1;;50226:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50336:15:0::1;::::0;50288:65:::1;::::0;-1:-1:-1;;;50288:65:0;;-1:-1:-1;;;;;50336:15:0;;::::1;50288:65;::::0;::::1;4641:51:1::0;50288:39:0;;::::1;::::0;-1:-1:-1;50288:39:0::1;::::0;-1:-1:-1;4614:18:1;;50288:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50413:15:0::1;::::0;50371:59:::1;::::0;-1:-1:-1;;;;;50413:15:0;;::::1;::::0;-1:-1:-1;50371:59:0;;::::1;::::0;-1:-1:-1;50371:59:0::1;::::0;50413:15:::1;::::0;50371:59:::1;50443:15;:36:::0;;-1:-1:-1;;;;;;50443:36:0::1;-1:-1:-1::0;;;;;50443:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;49754:733:0:o;12796:104::-;12852:13;12885:7;12878:14;;;;;:::i;53894:184::-;54023:15;;:47;;-1:-1:-1;;;54023:47:0;;-1:-1:-1;;;;;4659:32:1;;;54023:47:0;;;4641:51:1;53991:7:0;;54023:15;;:38;;4614:18:1;;54023:47:0;4495:203:1;14258:216:0;14380:4;14402:42;2871:10;14426:9;14437:6;14402:9;:42::i;50692:225::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;50842:16:::1;::::0;50807:52:::1;::::0;-1:-1:-1;;;;;50842:16:0;;::::1;::::0;50807:52;::::1;::::0;::::1;::::0;50842:16:::1;::::0;50807:52:::1;50870:16;:29:::0;;-1:-1:-1;;;;;;50870:29:0::1;-1:-1:-1::0;;;;;50870:29:0;;;::::1;::::0;;;::::1;::::0;;50692:225::o;54265:351::-;54573:15;;:35;;-1:-1:-1;;;54573:35:0;;-1:-1:-1;;;;;4659:32:1;;;54573:35:0;;;4641:51:1;54379:7:0;;;;;;;;;;;;;;;;54573:15;;;:26;;4614:18:1;;54573:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54566:42;;;;;;;;;;;;;;;;54265:351;;;;;;;;;:::o;50925:244::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51018:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;51010:49;;;::::0;::::1;;-1:-1:-1::0;;;;;51070:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;51070:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51127:34;;6985:41:1;;;51127:34:0::1;::::0;6958:18:1;51127:34:0::1;;;;;;;50925:244:::0;;:::o;52619:470::-;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;52781:17:::1;:35:::0;;;52827:16:::1;:34:::0;;;52872:17:::1;:36:::0;;;52935:62:::1;52892:16:::0;52935:39:::1;52801:15:::0;52846;52935:21:::1;:39::i;:62::-;52919:13;:78:::0;53013:66:::1;::::0;;13741:25:1;;;13797:2;13782:18;;13775:34;;;13825:18;;;13818:34;;;53013:66:0::1;::::0;13729:2:1;13714:18;53013:66:0::1;13539:319:1::0;53097:506:0;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;53263:21:::1;:39:::0;;;53313:20:::1;:38:::0;;;53362:21:::1;:40:::0;;;53433:74:::1;53386:16:::0;53433:47:::1;53287:15:::0;53336;53433:25:::1;:47::i;:74::-;53413:17;:94:::0;53523:70:::1;::::0;;13741:25:1;;;13797:2;13782:18;;13775:34;;;13825:18;;;13818:34;;;53523:70:0::1;::::0;13729:2:1;13714:18;53523:70:0::1;13539:319:1::0;51607:281:0;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;51717:41:::1;51733:18;51753:4;51717:15;:41::i;:::-;51817:15;::::0;51774:59:::1;::::0;-1:-1:-1;;;;;51817:15:0;;::::1;::::0;51774:59;::::1;::::0;::::1;::::0;51817:15:::1;::::0;51774:59:::1;51844:15;:36:::0;;-1:-1:-1;;;;;;51844:36:0::1;-1:-1:-1::0;;;;;51844:36:0;;;::::1;::::0;;;::::1;::::0;;51607:281::o;55522:130::-;55605:15;;:39;;;-1:-1:-1;;;55605:39:0;;;;55578:7;;-1:-1:-1;;;;;55605:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;54624:361;54937:15;;:40;;-1:-1:-1;;;54937:40:0;;;;;12257:25:1;;;54743:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54937:15:0;;;;:33;;12230:18:1;;54937:40:0;12111:177:1;28720:281:0;28486:6;;-1:-1:-1;;;;;28486:6:0;2871:10;28486:22;28478:67;;;;-1:-1:-1;;;28478:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28823:22:0;::::1;28801:110;;;::::0;-1:-1:-1;;;28801:110:0;;9157:2:1;28801:110:0::1;::::0;::::1;9139:21:1::0;9196:2;9176:18;;;9169:30;9235:34;9215:18;;;9208:62;-1:-1:-1;;;9286:18:1;;;9279:36;9332:19;;28801:110:0::1;8955:402:1::0;28801:110:0::1;28948:6;::::0;28927:38:::1;::::0;-1:-1:-1;;;;;28927:38:0;;::::1;::::0;28948:6:::1;::::0;28927:38:::1;::::0;28948:6:::1;::::0;28927:38:::1;28976:6;:17:::0;;-1:-1:-1;;;;;;28976:17:0::1;-1:-1:-1::0;;;;;28976:17:0;;;::::1;::::0;;;::::1;::::0;;28720:281::o;23196:181::-;23254:7;;23286:5;23290:1;23286;:5;:::i;:::-;23274:17;;23315:1;23310;:6;;23302:46;;;;-1:-1:-1;;;23302:46:0;;9967:2:1;23302:46:0;;;9949:21:1;10006:2;9986:18;;;9979:30;10045:29;10025:18;;;10018:57;10092:18;;23302:46:0;9765:351:1;23302:46:0;23368:1;23196:181;-1:-1:-1;;;23196:181:0:o;19024:380::-;-1:-1:-1;;;;;19160:19:0;;19152:68;;;;-1:-1:-1;;;19152:68:0;;11908:2:1;19152:68:0;;;11890:21:1;11947:2;11927:18;;;11920:30;11986:34;11966:18;;;11959:62;-1:-1:-1;;;12037:18:1;;;12030:34;12081:19;;19152:68:0;11706:400:1;19152:68:0;-1:-1:-1;;;;;19239:21:0;;19231:68;;;;-1:-1:-1;;;19231:68:0;;9564:2:1;19231:68:0;;;9546:21:1;9603:2;9583:18;;;9576:30;9642:34;9622:18;;;9615:62;-1:-1:-1;;;9693:18:1;;;9686:32;9735:19;;19231:68:0;9362:398:1;19231:68:0;-1:-1:-1;;;;;19312:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19364:32;;12257:25:1;;;19364:32:0;;12230:18:1;19364:32:0;;;;;;;;19024:380;;;:::o;55946:3473::-;-1:-1:-1;;;;;56078:18:0;;56070:68;;;;-1:-1:-1;;;56070:68:0;;;;;;;:::i;:::-;56162:13;;-1:-1:-1;;;;;56154:21:0;;;56162:13;;56154:21;56151:131;;-1:-1:-1;;;;;56199:19:0;;56213:4;56199:19;;56191:79;;;;-1:-1:-1;;;56191:79:0;;10323:2:1;56191:79:0;;;10305:21:1;10362:2;10342:18;;;10335:30;10401:34;10381:18;;;10374:62;-1:-1:-1;;;10452:18:1;;;10445:45;10507:19;;56191:79:0;10121:411:1;56191:79:0;56298:11;56294:2898;;56326:28;56342:4;56348:2;56352:1;56326:15;:28::i;:::-;55946:3473;;;:::o;56294:2898::-;56412:8;;-1:-1:-1;;;56412:8:0;;;;56411:9;:39;;;;-1:-1:-1;;;;;;56425:25:0;;;;;;:19;:25;;;;;;;;56424:26;56411:39;:67;;;;-1:-1:-1;;;;;;56455:23:0;;;;;;:19;:23;;;;;;;;56454:24;56411:67;56393:2799;;;-1:-1:-1;;;;;56522:29:0;;;56505:14;56522:29;;;:25;:29;;;;;;;56582:31;;;;;;;;56522:29;;;;;56582:31;56522:29;56654:129;;;;-1:-1:-1;56767:15:0;;-1:-1:-1;;;;;56751:32:0;;;56767:15;;56751:32;;56654:129;56632:965;;;56921:17;;56900:18;:38;56978:16;;56957:18;:37;57035:17;;57013:19;:39;56632:965;;;57111:8;:59;;;;-1:-1:-1;57154:15:0;;-1:-1:-1;;;;;57140:30:0;;;57154:15;;57140:30;;57111:59;57089:508;;;57227:16;;57206:18;:37;57284:15;;57263:18;:36;57341:16;;57319:19;:38;57089:508;;;57436:21;;57415:18;:42;57497:20;;57476:18;:41;57558:21;;57536:19;:43;57089:508;57613:28;57644:24;57662:4;57644:9;:24::i;:::-;57724:18;;57613:55;;-1:-1:-1;57700:42:0;;;;;;;57775:43;;-1:-1:-1;;;;;;57787:31:0;;;;;;:25;:31;;;;;;;;57786:32;57775:43;57771:298;;;57839:8;:15;;-1:-1:-1;;;;57839:15:0;-1:-1:-1;;;57839:15:0;;;57890:18;;57875:34;;:14;:34::i;:::-;57930:40;57951:18;;57930:20;:40::i;:::-;57991:25;:23;:25::i;:::-;58037:8;:16;;-1:-1:-1;;;;58037:16:0;;;57771:298;58085:26;58114:39;58149:3;58114:30;58125:18;;58114:6;:10;;:30;;;;:::i;:::-;:34;;:39::i;:::-;58085:68;;58168:26;58197:39;58232:3;58197:30;58208:18;;58197:6;:10;;:30;;;;:::i;:39::-;58168:68;;58251:27;58281:40;58317:3;58281:31;58292:19;;58281:6;:10;;:31;;;;:::i;:40::-;58251:70;;58372:18;58350;;:40;;;;;;;:::i;:::-;;;;;;;;58427:19;58405:18;;:41;;;;;;;:::i;:::-;;;;-1:-1:-1;58463:12:0;;-1:-1:-1;58520:19:0;58478:39;58499:18;58478;:39;:::i;:::-;:61;;;;:::i;:::-;58463:76;-1:-1:-1;58563:16:0;:6;58463:76;58563:10;:16::i;:::-;58554:25;;58594:42;58610:4;58624;58631;58594:15;:42::i;:::-;58667:16;;58704:15;;:28;;-1:-1:-1;;;;;;58704:28:0;;;;;12257:25:1;;;-1:-1:-1;;;;;58704:15:0;;;;:23;;12230:18:1;;58704:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58704:28:0;;;;;;;;-1:-1:-1;;58704:28:0;;;;;;;;;;;;:::i;:::-;;;58700:453;;;;;58896:231;;;14500:25:1;;;14556:2;14541:18;;14534:34;;;14584:18;;;14577:34;;;14642:2;14627:18;;14620:34;;;59099:9:0;;59046:4;;58896:231;;14487:3:1;14472:19;58896:231:0;;;;;;;58733:410;;;58700:453;56490:2702;;;;;;;;;56393:2799;59204:33;59220:4;59226:2;59230:6;59204:15;:33::i;:::-;59252:15;;-1:-1:-1;;;;;59252:15:0;:26;59287:4;59294:15;59287:4;59294:9;:15::i;:::-;59252:58;;-1:-1:-1;;;;;;59252:58:0;;;;;;;-1:-1:-1;;;;;5440:32:1;;;59252:58:0;;;5422:51:1;5489:18;;;5482:34;5395:18;;59252:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59248:74;59336:15;;-1:-1:-1;;;;;59336:15:0;:26;59371:2;59376:13;59371:2;59376:9;:13::i;:::-;59336:54;;-1:-1:-1;;;;;;59336:54:0;;;;;;;-1:-1:-1;;;;;5440:32:1;;;59336:54:0;;;5422:51:1;5489:18;;;5482:34;5395:18;;59336:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59332:70;;55946:3473;;;:::o;24099:226::-;24219:7;24255:12;24247:6;;;;24239:29;;;;-1:-1:-1;;;24239:29:0;;;;;;;;:::i;:::-;-1:-1:-1;24279:9:0;24291:5;24295:1;24291;:5;:::i;:::-;24279:17;24099:226;-1:-1:-1;;;;;24099:226:0:o;16523:610::-;-1:-1:-1;;;;;16663:20:0;;16655:70;;;;-1:-1:-1;;;16655:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16744:23:0;;16736:71;;;;-1:-1:-1;;;16736:71:0;;8753:2:1;16736:71:0;;;8735:21:1;8792:2;8772:18;;;8765:30;8831:34;8811:18;;;8804:62;-1:-1:-1;;;8882:18:1;;;8875:33;8925:19;;16736:71:0;8551:399:1;16736:71:0;16900:108;16936:6;16900:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16900:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;16880:17:0;;;:9;:17;;;;;;;;;;;:128;;;;17042:20;;;;;;;:32;;17067:6;17042:24;:32::i;:::-;-1:-1:-1;;;;;17019:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17090:35;12257:25:1;;;17019:20:0;;17090:35;;;;;;12230:18:1;17090:35:0;12111:177:1;59427:1224:0;59498:24;59516:4;59498:9;:24::i;:::-;59489:6;:33;59486:120;;;59543:30;;;59558:1;7768:25:1;;;7824:2;7809:18;;7802:34;;;7852:18;;;7845:34;;;7910:2;7895:18;;7888:50;59543:30:0;;;;;;;7755:3:1;59543:30:0;;;59427:1224;:::o;59486:120::-;59687:12;59702:13;:6;59713:1;59702:10;:13::i;:::-;59687:28;-1:-1:-1;59726:17:0;59746:16;:6;59687:28;59746:10;:16::i;:::-;59726:36;-1:-1:-1;59786:9:0;;;:27;;-1:-1:-1;59799:14:0;;59786:27;59783:64;;;59829:7;;59427:1224;:::o;59783:64::-;60149:21;60215:46;60232:4;60254;60215:16;:46::i;:::-;60304:4;60282:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;60369:18:0;;-1:-1:-1;60390:41:0;:21;60416:14;60390:25;:41::i;:::-;60369:62;;60481:35;60494:9;60505:10;60481:12;:35::i;:::-;60559:9;60537:18;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;60594:49:0;;;7768:25:1;;;7824:2;7809:18;;7802:34;;;7852:18;;;7845:34;;;60638:4:0;7910:2:1;7895:18;;7888:50;60594:49:0;;7755:3:1;7740:19;60594:49:0;;;;;;;;59475:1176;;;;59427:1224;:::o;62004:605::-;62166:21;62081:18;62198:51;62215:9;62242:4;62198:16;:51::i;:::-;62277:34;62301:10;62277:21;:34;:::i;:::-;62260:51;;62344:9;62322:18;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;62445:15:0;;62437:58;;62391:14;;62364:24;;-1:-1:-1;;;;;62445:15:0;;;;62391:14;;62364:24;62437:58;62364:24;62437:58;62391:14;62445:15;62437:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62418:77;;;62519:7;62516:84;;;62546:42;;;13460:25:1;;;13516:2;13501:18;;13494:34;;;62546:42:0;;13433:18:1;62546:42:0;13286:248:1;62617:669:0;62673:23;62699:24;62717:4;62699:9;:24::i;:::-;62826:16;;;62840:1;62826:16;;;;;;;;62673:50;;-1:-1:-1;62802:21:0;;62826:16;;;;;;;;;;;;-1:-1:-1;62826:16:0;62802:40;;62871:4;62853;62858:1;62853:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;62853:23:0;;;:7;;;;;;;;;;:23;;;;62897:15;;:22;;;-1:-1:-1;;;62897:22:0;;;;:15;;;;;:20;;:22;;;;;62853:7;;62897:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62887:4;62892:1;62887:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;62887:32:0;;;:7;;;;;;;;;:32;62964:15;;62932:66;;62949:4;;62964:15;62982;62932:8;:66::i;:::-;63037:15;;63211:16;;63037:231;;-1:-1:-1;;;63037:231:0;;-1:-1:-1;;;;;63037:15:0;;;;:66;;:231;;63118:15;;63037;;63192:4;;63211:16;;;63242:15;;63037:231;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62660:626;;62617:669::o;24584:471::-;24642:7;24887:6;24883:47;;-1:-1:-1;24917:1:0;24910:8;;24883:47;24942:9;24954:5;24958:1;24954;:5;:::i;:::-;24942:17;-1:-1:-1;24987:1:0;24978:5;24982:1;24942:17;24978:5;:::i;:::-;:10;24970:56;;;;-1:-1:-1;;;24970:56:0;;10739:2:1;24970:56:0;;;10721:21:1;10778:2;10758:18;;;10751:30;10817:34;10797:18;;;10790:62;-1:-1:-1;;;10868:18:1;;;10861:31;10909:19;;24970:56:0;10537:397:1;25531:132:0;25589:7;25616:39;25620:1;25623;25616:39;;;;;;;;;;;;;;;;;:3;:39::i;23660:136::-;23718:7;23745:43;23749:1;23752;23745:43;;;;;;;;;;;;;;;;;:3;:43::i;60663:798::-;60772:1;60757:11;:16;60754:53;;60663:798;;:::o;60754:53::-;60847:11;60820:24;60838:4;60820:9;:24::i;:::-;:38;60817:107;;;60888:24;60906:4;60888:9;:24::i;:::-;60874:38;;60817:107;61028:16;;;61042:1;61028:16;;;;;;;;61004:21;;61028:16;;;;;;;;;;-1:-1:-1;61028:16:0;61004:40;;61073:4;61055;61060:1;61055:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61055:23:0;;;:7;;;;;;;;;;:23;;;;61099:15;;:22;;;-1:-1:-1;;;61099:22:0;;;;:15;;;;;:20;;:22;;;;;61055:7;;61099:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61089:4;61094:1;61089:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61089:32:0;;;:7;;;;;;;;;:32;61166:15;;61134:62;;61151:4;;61166:15;61184:11;61134:8;:62::i;:::-;61235:15;;:218;;-1:-1:-1;;;61235:218:0;;-1:-1:-1;;;;;61235:15:0;;;;:66;;:218;;61316:11;;61235:15;;61386:4;;61405:7;;61427:15;;61235:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60743:718;60663:798;;:::o;61475:521::-;61655:15;;61623:62;;61640:4;;-1:-1:-1;;;;;61655:15:0;61673:11;61623:8;:62::i;:::-;61728:15;;61932;;61728:260;;-1:-1:-1;;;61728:260:0;;61800:4;61728:260;;;6574:34:1;6624:18;;;6617:34;;;61728:15:0;6667:18:1;;;6660:34;;;6710:18;;;6703:34;-1:-1:-1;;;;;61932:15:0;;;6753:19:1;;;6746:44;61962:15:0;6806:19:1;;;6799:35;61728:15:0;;;:31;;61767:9;;6508:19:1;;61728:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26159:312::-;26279:7;26314:12;26307:5;26299:28;;;;-1:-1:-1;;;26299:28:0;;;;;;;;:::i;:::-;-1:-1:-1;26338:9:0;26350:5;26354:1;26350;:5;:::i;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;782:388::-;850:6;858;911:2;899:9;890:7;886:23;882:32;879:52;;;927:1;924;917:12;879:52;966:9;953:23;985:31;1010:5;985:31;:::i;:::-;1035:5;-1:-1:-1;1092:2:1;1077:18;;1064:32;1105:33;1064:32;1105:33;:::i;:::-;1157:7;1147:17;;;782:388;;;;;:::o;1175:456::-;1252:6;1260;1268;1321:2;1309:9;1300:7;1296:23;1292:32;1289:52;;;1337:1;1334;1327:12;1289:52;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1175:456;;1567:7;;-1:-1:-1;;;1621:2:1;1606:18;;;;1593:32;;1175:456::o;1636:382::-;1701:6;1709;1762:2;1750:9;1741:7;1737:23;1733:32;1730:52;;;1778:1;1775;1768:12;1730:52;1817:9;1804:23;1836:31;1861:5;1836:31;:::i;:::-;1886:5;-1:-1:-1;1943:2:1;1928:18;;1915:32;1956:30;1915:32;1956:30;:::i;2023:681::-;2154:6;2162;2170;2178;2186;2194;2202;2210;2263:3;2251:9;2242:7;2238:23;2234:33;2231:53;;;2280:1;2277;2270:12;2231:53;2312:9;2306:16;2331:31;2356:5;2331:31;:::i;:::-;2381:5;2371:15;;;2426:2;2415:9;2411:18;2405:25;2395:35;;2470:2;2459:9;2455:18;2449:25;2439:35;;2514:2;2503:9;2499:18;2493:25;2483:35;;2558:3;2547:9;2543:19;2537:26;2527:36;;2603:3;2592:9;2588:19;2582:26;2572:36;;2648:3;2637:9;2633:19;2627:26;2617:36;;2693:3;2682:9;2678:19;2672:26;2662:36;;2023:681;;;;;;;;;;;:::o;2709:315::-;2777:6;2785;2838:2;2826:9;2817:7;2813:23;2809:32;2806:52;;;2854:1;2851;2844:12;2806:52;2893:9;2880:23;2912:31;2937:5;2912:31;:::i;:::-;2962:5;3014:2;2999:18;;;;2986:32;;-1:-1:-1;;;2709:315:1:o;3029:245::-;3096:6;3149:2;3137:9;3128:7;3124:23;3120:32;3117:52;;;3165:1;3162;3155:12;3117:52;3197:9;3191:16;3216:28;3238:5;3216:28;:::i;3279:180::-;3338:6;3391:2;3379:9;3370:7;3366:23;3362:32;3359:52;;;3407:1;3404;3397:12;3359:52;-1:-1:-1;3430:23:1;;3279:180;-1:-1:-1;3279:180:1:o;3464:184::-;3534:6;3587:2;3575:9;3566:7;3562:23;3558:32;3555:52;;;3603:1;3600;3593:12;3555:52;-1:-1:-1;3626:16:1;;3464:184;-1:-1:-1;3464:184:1:o;3653:316::-;3730:6;3738;3746;3799:2;3787:9;3778:7;3774:23;3770:32;3767:52;;;3815:1;3812;3805:12;3767:52;-1:-1:-1;;3838:23:1;;;3908:2;3893:18;;3880:32;;-1:-1:-1;3959:2:1;3944:18;;;3931:32;;3653:316;-1:-1:-1;3653:316:1:o;3974:306::-;4062:6;4070;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4176:9;4170:16;4160:26;;4226:2;4215:9;4211:18;4205:25;4195:35;;4270:2;4259:9;4255:18;4249:25;4239:35;;3974:306;;;;;:::o;7949:597::-;8061:4;8090:2;8119;8108:9;8101:21;8151:6;8145:13;8194:6;8189:2;8178:9;8174:18;8167:34;8219:1;8229:140;8243:6;8240:1;8237:13;8229:140;;;8338:14;;;8334:23;;8328:30;8304:17;;;8323:2;8300:26;8293:66;8258:10;;8229:140;;;8387:6;8384:1;8381:13;8378:91;;;8457:1;8452:2;8443:6;8432:9;8428:22;8424:31;8417:42;8378:91;-1:-1:-1;8530:2:1;8509:15;-1:-1:-1;;8505:29:1;8490:45;;;;8537:2;8486:54;;7949:597;-1:-1:-1;;;7949:597:1:o;10939:356::-;11141:2;11123:21;;;11160:18;;;11153:30;11219:34;11214:2;11199:18;;11192:62;11286:2;11271:18;;10939:356::o;11300:401::-;11502:2;11484:21;;;11541:2;11521:18;;;11514:30;11580:34;11575:2;11560:18;;11553:62;-1:-1:-1;;;11646:2:1;11631:18;;11624:35;11691:3;11676:19;;11300:401::o;12293:988::-;12563:4;12611:3;12600:9;12596:19;12642:6;12631:9;12624:25;12668:2;12706:6;12701:2;12690:9;12686:18;12679:34;12749:3;12744:2;12733:9;12729:18;12722:31;12773:6;12808;12802:13;12839:6;12831;12824:22;12877:3;12866:9;12862:19;12855:26;;12916:2;12908:6;12904:15;12890:29;;12937:1;12947:195;12961:6;12958:1;12955:13;12947:195;;;13026:13;;-1:-1:-1;;;;;13022:39:1;13010:52;;13117:15;;;;13082:12;;;;13058:1;12976:9;12947:195;;;-1:-1:-1;;;;;;;13198:32:1;;;;13193:2;13178:18;;13171:60;-1:-1:-1;;;13262:3:1;13247:19;13240:35;13159:3;12293:988;-1:-1:-1;;;12293:988:1:o;14854:128::-;14894:3;14925:1;14921:6;14918:1;14915:13;14912:39;;;14931:18;;:::i;:::-;-1:-1:-1;14967:9:1;;14854:128::o;14987:217::-;15027:1;15053;15043:132;;15097:10;15092:3;15088:20;15085:1;15078:31;15132:4;15129:1;15122:15;15160:4;15157:1;15150:15;15043:132;-1:-1:-1;15189:9:1;;14987:217::o;15209:168::-;15249:7;15315:1;15311;15307:6;15303:14;15300:1;15297:21;15292:1;15285:9;15278:17;15274:45;15271:71;;;15322:18;;:::i;:::-;-1:-1:-1;15362:9:1;;15209:168::o;15382:125::-;15422:4;15450:1;15447;15444:8;15441:34;;;15455:18;;:::i;:::-;-1:-1:-1;15492:9:1;;15382:125::o;15512:380::-;15591:1;15587:12;;;;15634;;;15655:61;;15709:4;15701:6;15697:17;15687:27;;15655:61;15762:2;15754:6;15751:14;15731:18;15728:38;15725:161;;;15808:10;15803:3;15799:20;15796:1;15789:31;15843:4;15840:1;15833:15;15871:4;15868:1;15861:15;15725:161;;15512:380;;;:::o;15897:127::-;15958:10;15953:3;15949:20;15946:1;15939:31;15989:4;15986:1;15979:15;16013:4;16010:1;16003:15;16029:127;16090:10;16085:3;16081:20;16078:1;16071:31;16121:4;16118:1;16111:15;16145:4;16142:1;16135:15;16293:131;-1:-1:-1;;;;;16368:31:1;;16358:42;;16348:70;;16414:1;16411;16404:12;16429:118;16515:5;16508:13;16501:21;16494:5;16491:32;16481:60;;16537:1;16534;16527:12

Swarm Source

ipfs://f226f99696b8c6b1643317cc6753c7a40b7bad7c23f46171228db2e04b1c7335
Loading