ETH Price: $2,458.32 (+0.82%)

Token

Bubbles (BUBBLES)
 

Overview

Max Total Supply

1,000,000 BUBBLES

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,307.642001775990147399 BUBBLES

Value
$0.00
0x78c5d6665a78e82e1b485f1a82ed0d9ab01e41b5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Bubbles

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-27
*/

/**

Twitter : https://twitter.com/Bubbles_erc
Telegram : https://t.me/bubbles_erc

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */ 

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    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 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;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public bubblesrfiWallet;
    address public marketingWallet;
    address public burnWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyBubblesrfiFee;
    uint256 public buyTreasuryFee;
    uint256 public buyLiquidityFee;
    uint256 public buyBurnFee;

    uint256 public sellTotalFees;
    uint256 public sellBubblesrfiFee;
    uint256 public sellTreasuryFee;
    uint256 public sellLiquidityFee;
    uint256 public sellBurnFee;

    uint256 public tokensForBubblesrfi;
    uint256 public tokensForTreasury;
    uint256 public tokensForLiquidity;
    uint256 public tokensForBurn;

    /******************/

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

    // 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 UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Bubbles", "BUBBLES") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyBubblesrfiFee = 2;
        uint256 _buyTreasuryFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyBurnFee = 0;

        uint256 _sellBubblesrfiFee = 2;
        uint256 _sellTreasuryFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellBurnFee = 0;

        uint256 totalSupply = 1000000 * 1e18;

        maxTransactionAmount = 10000 * 1e18; 
        maxWallet = 10000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 10) / 10000; 

        buyBubblesrfiFee = _buyBubblesrfiFee;
        buyTreasuryFee = _buyTreasuryFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyBurnFee = _buyBurnFee;
        buyTotalFees = buyBubblesrfiFee + buyTreasuryFee + buyLiquidityFee + buyBurnFee;

        sellBubblesrfiFee = _sellBubblesrfiFee;
        sellTreasuryFee = _sellTreasuryFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellBurnFee = _sellBurnFee;
        sellTotalFees = sellBubblesrfiFee + sellTreasuryFee + sellLiquidityFee + sellBurnFee;

        bubblesrfiWallet = address(0xB10570F61e2D390D655C4d898696A4434AeD813b); // set as bubblesrfi wallet
        marketingWallet = address(0x0be01070556D44f84298d6b1C07B26e79c98dFd9); // set as marketing wallet
        burnWallet = address(0x6d11EfC193926a5cE6fe7f05fd024923566c03a3); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _bubblesrfiFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        require((_bubblesrfiFee + _marketingFee + _liquidityFee ) <= 10, "Max BuyFee 10%");
        buyBubblesrfiFee = _bubblesrfiFee;
        buyTreasuryFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyBurnFee = _devFee;
        buyTotalFees = buyBubblesrfiFee + buyTreasuryFee + buyLiquidityFee + buyBurnFee;
     }

    function updateSellFees(
        uint256 _bubblesrfiFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        require((_bubblesrfiFee + _marketingFee + _liquidityFee ) <= 10, "Max SellFee 10%");
        sellBubblesrfiFee = _bubblesrfiFee;
        sellTreasuryFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellBurnFee = _devFee;
        sellTotalFees = sellBubblesrfiFee + sellTreasuryFee + sellLiquidityFee + sellBurnFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBubblesrfi += (fees * sellBubblesrfiFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
                tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForBubblesrfi += (fees * buyBubblesrfiFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
                tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForBubblesrfi + tokensForLiquidity + tokensForTreasury + tokensForBurn;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForBubblesrfi = ethBalance.mul(tokensForBubblesrfi).div(totalTokensToSwap);
        uint256 ethForTreasury = ethBalance.mul(tokensForTreasury).div(totalTokensToSwap);
        uint256 ethForBurn = ethBalance.mul(tokensForBurn).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForBubblesrfi - ethForTreasury - ethForBurn;

        tokensForLiquidity = 0;
        tokensForBubblesrfi = 0;
        tokensForTreasury = 0;
        tokensForBurn = 0;

        (success, ) = address(burnWallet).call{value: ethForBurn}("");
        (success, ) = address(marketingWallet).call{value: ethForTreasury}("");


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(bubblesrfiWallet).call{value: address(this).balance}("");
    }

}

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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubblesrfiWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBubblesrfiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBubblesrfiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBubblesrfi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_bubblesrfiFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bubblesrfiFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191662010001179055600e805460ff191660011790553480156200002f57600080fd5b5060405180604001604052806007815260200166427562626c657360c81b81525060405180604001604052806007815260200166425542424c455360c81b815250816003908051906020019062000088929190620006ce565b5080516200009e906004906020840190620006ce565b505050620000bb620000b56200041b60201b60201c565b6200041f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000dd81600162000471565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000128573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014e919062000774565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c2919062000774565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000210573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000236919062000774565b6001600160a01b031660a08190526200025190600162000471565b60a05162000261906001620004eb565b69021e19e0c9bab24000006009819055600b55600260036000808383828069d3c21bcecceda10000006127106200029a82600a620007bc565b620002a69190620007de565b600a5560108990556011889055601287905560138690558587620002cb8a8c62000801565b620002d7919062000801565b620002e3919062000801565b600f556015859055601684905560178390556018829055818362000308868862000801565b62000314919062000801565b62000320919062000801565b601455600680546001600160a01b031990811673b10570f61e2d390d655c4d898696a4434aed813b17909155600780548216730be01070556d44f84298d6b1c07b26e79c98dfd917905560088054909116736d11efc193926a5ce6fe7f05fd024923566c03a3179055620003a8620003a06005546001600160a01b031690565b60016200053f565b620003b53060016200053f565b620003c461dead60016200053f565b620003e3620003db6005546001600160a01b031690565b600162000471565b620003f030600162000471565b620003ff61dead600162000471565b6200040b3382620005e9565b5050505050505050505062000859565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004c05760405162461bcd60e51b815260206004820181905260248201526000805160206200332583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200058a5760405162461bcd60e51b81526020600482018190526024820152600080516020620033258339815191526044820152606401620004b7565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004b7565b806002600082825462000655919062000801565b90915550506001600160a01b038216600090815260208190526040812080548392906200068490849062000801565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006dc906200081c565b90600052602060002090601f0160209004810192826200070057600085556200074b565b82601f106200071b57805160ff19168380011785556200074b565b828001600101855582156200074b579182015b828111156200074b5782518255916020019190600101906200072e565b50620007599291506200075d565b5090565b5b808211156200075957600081556001016200075e565b6000602082840312156200078757600080fd5b81516001600160a01b03811681146200079f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007d957620007d9620007a6565b500290565b600082620007fc57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008175762000817620007a6565b500190565b600181811c908216806200083157607f821691505b602082108114156200085357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a6e620008b76000396000818161057f01528181610f01015261179c01526000818161044c0152818161175e015281816123c10152818161247a015281816124b60152818161253001526125980152612a6e6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c876d0b9116100f7578063e71dc3f511610095578063f11a24d31161006f578063f11a24d3146109e8578063f2fde38b146109fe578063f637434214610a1e578063f8b45b0514610a3457600080fd5b8063e71dc3f51461099d578063e7ad9fcd146109b3578063e884f260146109d357600080fd5b8063d257b34f116100d1578063d257b34f1461090b578063d85ba0631461092b578063dd62ed3e14610941578063e2f456051461098757600080fd5b8063c876d0b9146108c5578063c8c8ebe4146108df578063cc2ffe7c146108f557600080fd5b8063a9059cbb11610164578063b62496f51161013e578063b62496f514610836578063bbc0c74214610866578063c024666814610885578063c18bc195146108a557600080fd5b8063a9059cbb146107e0578063adb873bd14610800578063b43f8e001461081657600080fd5b806395d89b41116101a057806395d89b41146107755780639a7a23d61461078a578063a2b53f57146107aa578063a457c2d7146107c057600080fd5b80638da5cb5b14610721578063907d8cc11461073f578063924de9b71461075557600080fd5b806349bd5a5e116102a05780636ddd17131161023e578063751039fc11610218578063751039fc146106b75780637571336a146106cc57806375f0a874146106ec5780638a8c523c1461070c57600080fd5b80636ddd17131461064c57806370a082311461066c578063715018a6146106a257600080fd5b80635c068a8c1161027a5780635c068a8c146105f45780636a486a8e1461060a5780636b2fb124146106205780636b3f25a41461063657600080fd5b806349bd5a5e1461056d5780634a62bb65146105a15780634fbee193146105bb57600080fd5b80631d7778561161030d57806327c8f835116102e757806327c8f835146104fb5780632e6ed7ef14610511578063313ce56714610531578063395093511461054d57600080fd5b80631d777856146104a3578063203e727e146104b957806323b872dd146104db57600080fd5b806310d5de531161034957806310d5de531461040a5780631694505e1461043a57806318160ddd1461046e5780631a8145bb1461048d57600080fd5b8063062287491461037b57806306fdde03146103b8578063095ea7b3146103da57600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5060085461039b906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103c457600080fd5b506103cd610a4a565b6040516103af9190612610565b3480156103e657600080fd5b506103fa6103f536600461267a565b610adc565b60405190151581526020016103af565b34801561041657600080fd5b506103fa6104253660046126a6565b601e6020526000908152604090205460ff1681565b34801561044657600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047a57600080fd5b506002545b6040519081526020016103af565b34801561049957600080fd5b5061047f601b5481565b3480156104af57600080fd5b5061047f601c5481565b3480156104c557600080fd5b506104d96104d43660046126c3565b610af2565b005b3480156104e757600080fd5b506103fa6104f63660046126dc565b610bd8565b34801561050757600080fd5b5061039b61dead81565b34801561051d57600080fd5b506104d961052c36600461271d565b610c82565b34801561053d57600080fd5b50604051601281526020016103af565b34801561055957600080fd5b506103fa61056836600461267a565b610d3f565b34801561057957600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ad57600080fd5b50600c546103fa9060ff1681565b3480156105c757600080fd5b506103fa6105d63660046126a6565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561060057600080fd5b5061047f60115481565b34801561061657600080fd5b5061047f60145481565b34801561062c57600080fd5b5061047f60165481565b34801561064257600080fd5b5061047f60195481565b34801561065857600080fd5b50600c546103fa9062010000900460ff1681565b34801561067857600080fd5b5061047f6106873660046126a6565b6001600160a01b031660009081526020819052604090205490565b3480156106ae57600080fd5b506104d9610d7b565b3480156106c357600080fd5b506103fa610db1565b3480156106d857600080fd5b506104d96106e736600461275f565b610dee565b3480156106f857600080fd5b5060075461039b906001600160a01b031681565b34801561071857600080fd5b506104d9610e43565b34801561072d57600080fd5b506005546001600160a01b031661039b565b34801561074b57600080fd5b5061047f60105481565b34801561076157600080fd5b506104d9610770366004612794565b610e80565b34801561078157600080fd5b506103cd610ec6565b34801561079657600080fd5b506104d96107a536600461275f565b610ed5565b3480156107b657600080fd5b5061047f60155481565b3480156107cc57600080fd5b506103fa6107db36600461267a565b610fb5565b3480156107ec57600080fd5b506103fa6107fb36600461267a565b61104e565b34801561080c57600080fd5b5061047f60185481565b34801561082257600080fd5b5060065461039b906001600160a01b031681565b34801561084257600080fd5b506103fa6108513660046126a6565b601f6020526000908152604090205460ff1681565b34801561087257600080fd5b50600c546103fa90610100900460ff1681565b34801561089157600080fd5b506104d96108a036600461275f565b61105b565b3480156108b157600080fd5b506104d96108c03660046126c3565b6110e4565b3480156108d157600080fd5b50600e546103fa9060ff1681565b3480156108eb57600080fd5b5061047f60095481565b34801561090157600080fd5b5061047f601a5481565b34801561091757600080fd5b506103fa6109263660046126c3565b6111b5565b34801561093757600080fd5b5061047f600f5481565b34801561094d57600080fd5b5061047f61095c3660046127af565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561099357600080fd5b5061047f600a5481565b3480156109a957600080fd5b5061047f60135481565b3480156109bf57600080fd5b506104d96109ce36600461271d565b61130c565b3480156109df57600080fd5b506103fa6113ca565b3480156109f457600080fd5b5061047f60125481565b348015610a0a57600080fd5b506104d9610a193660046126a6565b611407565b348015610a2a57600080fd5b5061047f60175481565b348015610a4057600080fd5b5061047f600b5481565b606060038054610a59906127e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a85906127e8565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae93384846114a2565b50600192915050565b6005546001600160a01b03163314610b255760405162461bcd60e51b8152600401610b1c90612823565b60405180910390fd5b670de0b6b3a76400006103e8610b3a60025490565b610b4590600561286e565b610b4f919061288d565b610b59919061288d565b811015610bc05760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b1c565b610bd281670de0b6b3a764000061286e565b60095550565b6000610be58484846115c6565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c6a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b1c565b610c7785338584036114a2565b506001949350505050565b6005546001600160a01b03163314610cac5760405162461bcd60e51b8152600401610b1c90612823565b600a82610cb985876128af565b610cc391906128af565b1115610d025760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b1c565b60108490556011839055601282905560138190558082610d2285876128af565b610d2c91906128af565b610d3691906128af565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ae9918590610d769086906128af565b6114a2565b6005546001600160a01b03163314610da55760405162461bcd60e51b8152600401610b1c90612823565b610daf6000611e7a565b565b6005546000906001600160a01b03163314610dde5760405162461bcd60e51b8152600401610b1c90612823565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e185760405162461bcd60e51b8152600401610b1c90612823565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e6d5760405162461bcd60e51b8152600401610b1c90612823565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610eaa5760405162461bcd60e51b8152600401610b1c90612823565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a59906127e8565b6005546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610b1c90612823565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610fa75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b1c565b610fb18282611ecc565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b1c565b61104433858584036114a2565b5060019392505050565b6000610ae93384846115c6565b6005546001600160a01b031633146110855760405162461bcd60e51b8152600401610b1c90612823565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461110e5760405162461bcd60e51b8152600401610b1c90612823565b670de0b6b3a76400006103e861112360025490565b61112e90600561286e565b611138919061288d565b611142919061288d565b81101561119d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b1c565b6111af81670de0b6b3a764000061286e565b600b5550565b6005546000906001600160a01b031633146111e25760405162461bcd60e51b8152600401610b1c90612823565b620186a06111ef60025490565b6111fa90600161286e565b611204919061288d565b8210156112715760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b1c565b6103e861127d60025490565b61128890600561286e565b611292919061288d565b8211156112fe5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b1c565b50600a81905560015b919050565b6005546001600160a01b031633146113365760405162461bcd60e51b8152600401610b1c90612823565b600a8261134385876128af565b61134d91906128af565b111561138d5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b1c565b601584905560168390556017829055601881905580826113ad85876128af565b6113b791906128af565b6113c191906128af565b60145550505050565b6005546000906001600160a01b031633146113f75760405162461bcd60e51b8152600401610b1c90612823565b50600e805460ff19169055600190565b6005546001600160a01b031633146114315760405162461bcd60e51b8152600401610b1c90612823565b6001600160a01b0381166114965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b1c565b61149f81611e7a565b50565b6001600160a01b0383166115045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b1c565b6001600160a01b0382166115655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b1c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115ec5760405162461bcd60e51b8152600401610b1c906128c7565b6001600160a01b0382166116125760405162461bcd60e51b8152600401610b1c9061290c565b806116285761162383836000611f20565b505050565b600c5460ff1615611ae5576005546001600160a01b0384811691161480159061165f57506005546001600160a01b03838116911614155b801561167357506001600160a01b03821615155b801561168a57506001600160a01b03821661dead14155b80156116a05750600554600160a01b900460ff16155b15611ae557600c54610100900460ff16611738576001600160a01b0383166000908152601d602052604090205460ff16806116f357506001600160a01b0382166000908152601d602052604090205460ff165b6117385760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b1c565b600e5460ff161561187f576005546001600160a01b0383811691161480159061179357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117d157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561187f57326000908152600d6020526040902054431161186c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b1c565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118c057506001600160a01b0382166000908152601e602052604090205460ff16155b156119a4576009548111156119355760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b1c565b600b546001600160a01b03831660009081526020819052604090205461195b90836128af565b111561199f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b1c565b611ae5565b6001600160a01b0382166000908152601f602052604090205460ff1680156119e557506001600160a01b0383166000908152601e602052604090205460ff16155b15611a5b5760095481111561199f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b1c565b6001600160a01b0382166000908152601e602052604090205460ff16611ae557600b546001600160a01b038316600090815260208190526040902054611aa190836128af565b1115611ae55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b1c565b30600090815260208190526040902054600a5481108015908190611b115750600c5462010000900460ff165b8015611b275750600554600160a01b900460ff16155b8015611b4c57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b7157506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b9657506001600160a01b0384166000908152601d602052604090205460ff16155b15611bc4576005805460ff60a01b1916600160a01b179055611bb6612075565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c1257506001600160a01b0385166000908152601d602052604090205460ff165b15611c1b575060005b60008115611e66576001600160a01b0386166000908152601f602052604090205460ff168015611c4d57506000601454115b15611d3b57611c726064611c6c6014548861233f90919063ffffffff16565b90612352565b905060145460155482611c85919061286e565b611c8f919061288d565b60196000828254611ca091906128af565b9091555050601454601754611cb5908361286e565b611cbf919061288d565b601b6000828254611cd091906128af565b9091555050601454601854611ce5908361286e565b611cef919061288d565b601c6000828254611d0091906128af565b9091555050601454601654611d15908361286e565b611d1f919061288d565b601a6000828254611d3091906128af565b90915550611e489050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d6557506000600f54115b15611e4857611d846064611c6c600f548861233f90919063ffffffff16565b9050600f5460105482611d97919061286e565b611da1919061288d565b60196000828254611db291906128af565b9091555050600f54601254611dc7908361286e565b611dd1919061288d565b601b6000828254611de291906128af565b9091555050600f54601354611df7908361286e565b611e01919061288d565b601c6000828254611e1291906128af565b9091555050600f54601154611e27908361286e565b611e31919061288d565b601a6000828254611e4291906128af565b90915550505b8015611e5957611e59873083611f20565b611e63818661294f565b94505b611e71878787611f20565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f465760405162461bcd60e51b8152600401610b1c906128c7565b6001600160a01b038216611f6c5760405162461bcd60e51b8152600401610b1c9061290c565b6001600160a01b03831660009081526020819052604090205481811015611fe45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b1c565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061201b9084906128af565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161206791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b5460195461209f91906128af565b6120a991906128af565b6120b391906128af565b905060008215806120c2575081155b156120cc57505050565b600a546120da90601461286e565b8311156120f257600a546120ef90601461286e565b92505b6000600283601b5486612105919061286e565b61210f919061288d565b612119919061288d565b90506000612127858361235e565b9050476121338261236a565b600061213f478361235e565b9050600061215c87611c6c6019548561233f90919063ffffffff16565b9050600061217988611c6c601a548661233f90919063ffffffff16565b9050600061219689611c6c601c548761233f90919063ffffffff16565b9050600081836121a6868861294f565b6121b0919061294f565b6121ba919061294f565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461221c576040519150601f19603f3d011682016040523d82523d6000602084013e612221565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612271576040519150601f19603f3d011682016040523d82523d6000602084013e612276565b606091505b5090995050871580159061228a5750600081115b156122dd57612299888261252a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461232a576040519150601f19603f3d011682016040523d82523d6000602084013e61232f565b606091505b5050505050505050505050505050565b600061234b828461286e565b9392505050565b600061234b828461288d565b600061234b828461294f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061239f5761239f612966565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561241d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612441919061297c565b8160018151811061245457612454612966565b60200260200101906001600160a01b031690816001600160a01b03168152505061249f307f0000000000000000000000000000000000000000000000000000000000000000846114a2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124f4908590600090869030904290600401612999565b600060405180830381600087803b15801561250e57600080fd5b505af1158015612522573d6000803e3d6000fd5b505050505050565b612555307f0000000000000000000000000000000000000000000000000000000000000000846114a2565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156125e4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126099190612a0a565b5050505050565b600060208083528351808285015260005b8181101561263d57858101830151858201604001528201612621565b8181111561264f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461149f57600080fd5b6000806040838503121561268d57600080fd5b823561269881612665565b946020939093013593505050565b6000602082840312156126b857600080fd5b813561234b81612665565b6000602082840312156126d557600080fd5b5035919050565b6000806000606084860312156126f157600080fd5b83356126fc81612665565b9250602084013561270c81612665565b929592945050506040919091013590565b6000806000806080858703121561273357600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461130757600080fd5b6000806040838503121561277257600080fd5b823561277d81612665565b915061278b6020840161274f565b90509250929050565b6000602082840312156127a657600080fd5b61234b8261274f565b600080604083850312156127c257600080fd5b82356127cd81612665565b915060208301356127dd81612665565b809150509250929050565b600181811c908216806127fc57607f821691505b6020821081141561281d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561288857612888612858565b500290565b6000826128aa57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128c2576128c2612858565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561296157612961612858565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561298e57600080fd5b815161234b81612665565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129e95784516001600160a01b0316835293830193918301916001016129c4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a1f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204eb6487822a496db94dcb1b634b9c6c1adf768571b38b307ab7cc3b82b604a9d64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c876d0b9116100f7578063e71dc3f511610095578063f11a24d31161006f578063f11a24d3146109e8578063f2fde38b146109fe578063f637434214610a1e578063f8b45b0514610a3457600080fd5b8063e71dc3f51461099d578063e7ad9fcd146109b3578063e884f260146109d357600080fd5b8063d257b34f116100d1578063d257b34f1461090b578063d85ba0631461092b578063dd62ed3e14610941578063e2f456051461098757600080fd5b8063c876d0b9146108c5578063c8c8ebe4146108df578063cc2ffe7c146108f557600080fd5b8063a9059cbb11610164578063b62496f51161013e578063b62496f514610836578063bbc0c74214610866578063c024666814610885578063c18bc195146108a557600080fd5b8063a9059cbb146107e0578063adb873bd14610800578063b43f8e001461081657600080fd5b806395d89b41116101a057806395d89b41146107755780639a7a23d61461078a578063a2b53f57146107aa578063a457c2d7146107c057600080fd5b80638da5cb5b14610721578063907d8cc11461073f578063924de9b71461075557600080fd5b806349bd5a5e116102a05780636ddd17131161023e578063751039fc11610218578063751039fc146106b75780637571336a146106cc57806375f0a874146106ec5780638a8c523c1461070c57600080fd5b80636ddd17131461064c57806370a082311461066c578063715018a6146106a257600080fd5b80635c068a8c1161027a5780635c068a8c146105f45780636a486a8e1461060a5780636b2fb124146106205780636b3f25a41461063657600080fd5b806349bd5a5e1461056d5780634a62bb65146105a15780634fbee193146105bb57600080fd5b80631d7778561161030d57806327c8f835116102e757806327c8f835146104fb5780632e6ed7ef14610511578063313ce56714610531578063395093511461054d57600080fd5b80631d777856146104a3578063203e727e146104b957806323b872dd146104db57600080fd5b806310d5de531161034957806310d5de531461040a5780631694505e1461043a57806318160ddd1461046e5780631a8145bb1461048d57600080fd5b8063062287491461037b57806306fdde03146103b8578063095ea7b3146103da57600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5060085461039b906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103c457600080fd5b506103cd610a4a565b6040516103af9190612610565b3480156103e657600080fd5b506103fa6103f536600461267a565b610adc565b60405190151581526020016103af565b34801561041657600080fd5b506103fa6104253660046126a6565b601e6020526000908152604090205460ff1681565b34801561044657600080fd5b5061039b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561047a57600080fd5b506002545b6040519081526020016103af565b34801561049957600080fd5b5061047f601b5481565b3480156104af57600080fd5b5061047f601c5481565b3480156104c557600080fd5b506104d96104d43660046126c3565b610af2565b005b3480156104e757600080fd5b506103fa6104f63660046126dc565b610bd8565b34801561050757600080fd5b5061039b61dead81565b34801561051d57600080fd5b506104d961052c36600461271d565b610c82565b34801561053d57600080fd5b50604051601281526020016103af565b34801561055957600080fd5b506103fa61056836600461267a565b610d3f565b34801561057957600080fd5b5061039b7f0000000000000000000000007400486ce8f300755cc34de3236e5a92dfc473e381565b3480156105ad57600080fd5b50600c546103fa9060ff1681565b3480156105c757600080fd5b506103fa6105d63660046126a6565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561060057600080fd5b5061047f60115481565b34801561061657600080fd5b5061047f60145481565b34801561062c57600080fd5b5061047f60165481565b34801561064257600080fd5b5061047f60195481565b34801561065857600080fd5b50600c546103fa9062010000900460ff1681565b34801561067857600080fd5b5061047f6106873660046126a6565b6001600160a01b031660009081526020819052604090205490565b3480156106ae57600080fd5b506104d9610d7b565b3480156106c357600080fd5b506103fa610db1565b3480156106d857600080fd5b506104d96106e736600461275f565b610dee565b3480156106f857600080fd5b5060075461039b906001600160a01b031681565b34801561071857600080fd5b506104d9610e43565b34801561072d57600080fd5b506005546001600160a01b031661039b565b34801561074b57600080fd5b5061047f60105481565b34801561076157600080fd5b506104d9610770366004612794565b610e80565b34801561078157600080fd5b506103cd610ec6565b34801561079657600080fd5b506104d96107a536600461275f565b610ed5565b3480156107b657600080fd5b5061047f60155481565b3480156107cc57600080fd5b506103fa6107db36600461267a565b610fb5565b3480156107ec57600080fd5b506103fa6107fb36600461267a565b61104e565b34801561080c57600080fd5b5061047f60185481565b34801561082257600080fd5b5060065461039b906001600160a01b031681565b34801561084257600080fd5b506103fa6108513660046126a6565b601f6020526000908152604090205460ff1681565b34801561087257600080fd5b50600c546103fa90610100900460ff1681565b34801561089157600080fd5b506104d96108a036600461275f565b61105b565b3480156108b157600080fd5b506104d96108c03660046126c3565b6110e4565b3480156108d157600080fd5b50600e546103fa9060ff1681565b3480156108eb57600080fd5b5061047f60095481565b34801561090157600080fd5b5061047f601a5481565b34801561091757600080fd5b506103fa6109263660046126c3565b6111b5565b34801561093757600080fd5b5061047f600f5481565b34801561094d57600080fd5b5061047f61095c3660046127af565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561099357600080fd5b5061047f600a5481565b3480156109a957600080fd5b5061047f60135481565b3480156109bf57600080fd5b506104d96109ce36600461271d565b61130c565b3480156109df57600080fd5b506103fa6113ca565b3480156109f457600080fd5b5061047f60125481565b348015610a0a57600080fd5b506104d9610a193660046126a6565b611407565b348015610a2a57600080fd5b5061047f60175481565b348015610a4057600080fd5b5061047f600b5481565b606060038054610a59906127e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a85906127e8565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae93384846114a2565b50600192915050565b6005546001600160a01b03163314610b255760405162461bcd60e51b8152600401610b1c90612823565b60405180910390fd5b670de0b6b3a76400006103e8610b3a60025490565b610b4590600561286e565b610b4f919061288d565b610b59919061288d565b811015610bc05760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b1c565b610bd281670de0b6b3a764000061286e565b60095550565b6000610be58484846115c6565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c6a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b1c565b610c7785338584036114a2565b506001949350505050565b6005546001600160a01b03163314610cac5760405162461bcd60e51b8152600401610b1c90612823565b600a82610cb985876128af565b610cc391906128af565b1115610d025760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b1c565b60108490556011839055601282905560138190558082610d2285876128af565b610d2c91906128af565b610d3691906128af565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ae9918590610d769086906128af565b6114a2565b6005546001600160a01b03163314610da55760405162461bcd60e51b8152600401610b1c90612823565b610daf6000611e7a565b565b6005546000906001600160a01b03163314610dde5760405162461bcd60e51b8152600401610b1c90612823565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e185760405162461bcd60e51b8152600401610b1c90612823565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e6d5760405162461bcd60e51b8152600401610b1c90612823565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610eaa5760405162461bcd60e51b8152600401610b1c90612823565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a59906127e8565b6005546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610b1c90612823565b7f0000000000000000000000007400486ce8f300755cc34de3236e5a92dfc473e36001600160a01b0316826001600160a01b03161415610fa75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b1c565b610fb18282611ecc565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b1c565b61104433858584036114a2565b5060019392505050565b6000610ae93384846115c6565b6005546001600160a01b031633146110855760405162461bcd60e51b8152600401610b1c90612823565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461110e5760405162461bcd60e51b8152600401610b1c90612823565b670de0b6b3a76400006103e861112360025490565b61112e90600561286e565b611138919061288d565b611142919061288d565b81101561119d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b1c565b6111af81670de0b6b3a764000061286e565b600b5550565b6005546000906001600160a01b031633146111e25760405162461bcd60e51b8152600401610b1c90612823565b620186a06111ef60025490565b6111fa90600161286e565b611204919061288d565b8210156112715760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b1c565b6103e861127d60025490565b61128890600561286e565b611292919061288d565b8211156112fe5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b1c565b50600a81905560015b919050565b6005546001600160a01b031633146113365760405162461bcd60e51b8152600401610b1c90612823565b600a8261134385876128af565b61134d91906128af565b111561138d5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b1c565b601584905560168390556017829055601881905580826113ad85876128af565b6113b791906128af565b6113c191906128af565b60145550505050565b6005546000906001600160a01b031633146113f75760405162461bcd60e51b8152600401610b1c90612823565b50600e805460ff19169055600190565b6005546001600160a01b031633146114315760405162461bcd60e51b8152600401610b1c90612823565b6001600160a01b0381166114965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b1c565b61149f81611e7a565b50565b6001600160a01b0383166115045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b1c565b6001600160a01b0382166115655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b1c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115ec5760405162461bcd60e51b8152600401610b1c906128c7565b6001600160a01b0382166116125760405162461bcd60e51b8152600401610b1c9061290c565b806116285761162383836000611f20565b505050565b600c5460ff1615611ae5576005546001600160a01b0384811691161480159061165f57506005546001600160a01b03838116911614155b801561167357506001600160a01b03821615155b801561168a57506001600160a01b03821661dead14155b80156116a05750600554600160a01b900460ff16155b15611ae557600c54610100900460ff16611738576001600160a01b0383166000908152601d602052604090205460ff16806116f357506001600160a01b0382166000908152601d602052604090205460ff165b6117385760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b1c565b600e5460ff161561187f576005546001600160a01b0383811691161480159061179357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117d157507f0000000000000000000000007400486ce8f300755cc34de3236e5a92dfc473e36001600160a01b0316826001600160a01b031614155b1561187f57326000908152600d6020526040902054431161186c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b1c565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118c057506001600160a01b0382166000908152601e602052604090205460ff16155b156119a4576009548111156119355760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b1c565b600b546001600160a01b03831660009081526020819052604090205461195b90836128af565b111561199f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b1c565b611ae5565b6001600160a01b0382166000908152601f602052604090205460ff1680156119e557506001600160a01b0383166000908152601e602052604090205460ff16155b15611a5b5760095481111561199f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b1c565b6001600160a01b0382166000908152601e602052604090205460ff16611ae557600b546001600160a01b038316600090815260208190526040902054611aa190836128af565b1115611ae55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b1c565b30600090815260208190526040902054600a5481108015908190611b115750600c5462010000900460ff165b8015611b275750600554600160a01b900460ff16155b8015611b4c57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b7157506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b9657506001600160a01b0384166000908152601d602052604090205460ff16155b15611bc4576005805460ff60a01b1916600160a01b179055611bb6612075565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c1257506001600160a01b0385166000908152601d602052604090205460ff165b15611c1b575060005b60008115611e66576001600160a01b0386166000908152601f602052604090205460ff168015611c4d57506000601454115b15611d3b57611c726064611c6c6014548861233f90919063ffffffff16565b90612352565b905060145460155482611c85919061286e565b611c8f919061288d565b60196000828254611ca091906128af565b9091555050601454601754611cb5908361286e565b611cbf919061288d565b601b6000828254611cd091906128af565b9091555050601454601854611ce5908361286e565b611cef919061288d565b601c6000828254611d0091906128af565b9091555050601454601654611d15908361286e565b611d1f919061288d565b601a6000828254611d3091906128af565b90915550611e489050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d6557506000600f54115b15611e4857611d846064611c6c600f548861233f90919063ffffffff16565b9050600f5460105482611d97919061286e565b611da1919061288d565b60196000828254611db291906128af565b9091555050600f54601254611dc7908361286e565b611dd1919061288d565b601b6000828254611de291906128af565b9091555050600f54601354611df7908361286e565b611e01919061288d565b601c6000828254611e1291906128af565b9091555050600f54601154611e27908361286e565b611e31919061288d565b601a6000828254611e4291906128af565b90915550505b8015611e5957611e59873083611f20565b611e63818661294f565b94505b611e71878787611f20565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f465760405162461bcd60e51b8152600401610b1c906128c7565b6001600160a01b038216611f6c5760405162461bcd60e51b8152600401610b1c9061290c565b6001600160a01b03831660009081526020819052604090205481811015611fe45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b1c565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061201b9084906128af565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161206791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b5460195461209f91906128af565b6120a991906128af565b6120b391906128af565b905060008215806120c2575081155b156120cc57505050565b600a546120da90601461286e565b8311156120f257600a546120ef90601461286e565b92505b6000600283601b5486612105919061286e565b61210f919061288d565b612119919061288d565b90506000612127858361235e565b9050476121338261236a565b600061213f478361235e565b9050600061215c87611c6c6019548561233f90919063ffffffff16565b9050600061217988611c6c601a548661233f90919063ffffffff16565b9050600061219689611c6c601c548761233f90919063ffffffff16565b9050600081836121a6868861294f565b6121b0919061294f565b6121ba919061294f565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461221c576040519150601f19603f3d011682016040523d82523d6000602084013e612221565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612271576040519150601f19603f3d011682016040523d82523d6000602084013e612276565b606091505b5090995050871580159061228a5750600081115b156122dd57612299888261252a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461232a576040519150601f19603f3d011682016040523d82523d6000602084013e61232f565b606091505b5050505050505050505050505050565b600061234b828461286e565b9392505050565b600061234b828461288d565b600061234b828461294f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061239f5761239f612966565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561241d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612441919061297c565b8160018151811061245457612454612966565b60200260200101906001600160a01b031690816001600160a01b03168152505061249f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114a2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124f4908590600090869030904290600401612999565b600060405180830381600087803b15801561250e57600080fd5b505af1158015612522573d6000803e3d6000fd5b505050505050565b612555307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114a2565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156125e4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126099190612a0a565b5050505050565b600060208083528351808285015260005b8181101561263d57858101830151858201604001528201612621565b8181111561264f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461149f57600080fd5b6000806040838503121561268d57600080fd5b823561269881612665565b946020939093013593505050565b6000602082840312156126b857600080fd5b813561234b81612665565b6000602082840312156126d557600080fd5b5035919050565b6000806000606084860312156126f157600080fd5b83356126fc81612665565b9250602084013561270c81612665565b929592945050506040919091013590565b6000806000806080858703121561273357600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461130757600080fd5b6000806040838503121561277257600080fd5b823561277d81612665565b915061278b6020840161274f565b90509250929050565b6000602082840312156127a657600080fd5b61234b8261274f565b600080604083850312156127c257600080fd5b82356127cd81612665565b915060208301356127dd81612665565b809150509250929050565b600181811c908216806127fc57607f821691505b6020821081141561281d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561288857612888612858565b500290565b6000826128aa57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128c2576128c2612858565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561296157612961612858565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561298e57600080fd5b815161234b81612665565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129e95784516001600160a01b0316835293830193918301916001016129c4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a1f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204eb6487822a496db94dcb1b634b9c6c1adf768571b38b307ab7cc3b82b604a9d64736f6c634300080a0033

Deployed Bytecode Sourcemap

32717:16599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33064:25;;;;;;;;;;-1:-1:-1;33064:25:0;;;;-1:-1:-1;;;;;33064:25:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;33064:25:0;;;;;;;;9644:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11811:169::-;;;;;;;;;;-1:-1:-1;11811:169:0;;;;;:::i;:::-;;:::i;:::-;;;1445:14:1;;1438:22;1420:41;;1408:2;1393:18;11811:169:0;1280:187:1;34218:63:0;;;;;;;;;;-1:-1:-1;34218:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32794:51;;;;;;;;;;;;;;;10764:108;;;;;;;;;;-1:-1:-1;10852:12:0;;10764:108;;;2105:25:1;;;2093:2;2078:18;10764:108:0;1959:177:1;34001:33:0;;;;;;;;;;;;;;;;34041:28;;;;;;;;;;;;;;;;38562:275;;;;;;;;;;-1:-1:-1;38562:275:0;;;;;:::i;:::-;;:::i;:::-;;12462:492;;;;;;;;;;-1:-1:-1;12462:492:0;;;;;:::i;:::-;;:::i;32897:53::-;;;;;;;;;;;;32943:6;32897:53;;39484:522;;;;;;;;;;-1:-1:-1;39484:522:0;;;;;:::i;:::-;;:::i;10606:93::-;;;;;;;;;;-1:-1:-1;10606:93:0;;10689:2;3319:36:1;;3307:2;3292:18;10606:93:0;3177:184:1;13363:215:0;;;;;;;;;;-1:-1:-1;13363:215:0;;;;;:::i;:::-;;:::i;32852:38::-;;;;;;;;;;;;;;;33213:33;;;;;;;;;;-1:-1:-1;33213:33:0;;;;;;;;41252:126;;;;;;;;;;-1:-1:-1;41252:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41342:28:0;41318:4;41342:28;;;:19;:28;;;;;;;;;41252:126;33630:29;;;;;;;;;;;;;;;;33737:28;;;;;;;;;;;;;;;;33811:30;;;;;;;;;;;;;;;;33921:34;;;;;;;;;;;;;;;;33293:30;;;;;;;;;;-1:-1:-1;33293:30:0;;;;;;;;;;;10935:127;;;;;;;;;;-1:-1:-1;10935:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11036:18:0;11009:7;11036:18;;;;;;;;;;;;10935:127;2879:103;;;;;;;;;;;;;:::i;37670:121::-;;;;;;;;;;;;;:::i;39113:167::-;;;;;;;;;;-1:-1:-1;39113:167:0;;;;;:::i;:::-;;:::i;33027:30::-;;;;;;;;;;-1:-1:-1;33027:30:0;;;;-1:-1:-1;;;;;33027:30:0;;;37506:112;;;;;;;;;;;;;:::i;2228:87::-;;;;;;;;;;-1:-1:-1;2301:6:0;;-1:-1:-1;;;;;2301:6:0;2228:87;;33592:31;;;;;;;;;;;;;;;;39376:100;;;;;;;;;;-1:-1:-1;39376:100:0;;;;;:::i;:::-;;:::i;9863:104::-;;;;;;;;;;;;;:::i;40744:304::-;;;;;;;;;;-1:-1:-1;40744:304:0;;;;;:::i;:::-;;:::i;33772:32::-;;;;;;;;;;;;;;;;14081:413;;;;;;;;;;-1:-1:-1;14081:413:0;;;;;:::i;:::-;;:::i;11275:175::-;;;;;;;;;;-1:-1:-1;11275:175:0;;;;;:::i;:::-;;:::i;33886:26::-;;;;;;;;;;;;;;;;32989:31;;;;;;;;;;-1:-1:-1;32989:31:0;;;;-1:-1:-1;;;;;32989:31:0;;;34439:57;;;;;;;;;;-1:-1:-1;34439:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33253:33;;;;;;;;;;-1:-1:-1;33253:33:0;;;;;;;;;;;40554:182;;;;;;;;;;-1:-1:-1;40554:182:0;;;;;:::i;:::-;;:::i;38845:256::-;;;;;;;;;;-1:-1:-1;38845:256:0;;;;;:::i;:::-;;:::i;33510:39::-;;;;;;;;;;-1:-1:-1;33510:39:0;;;;;;;;33098:35;;;;;;;;;;;;;;;;33962:32;;;;;;;;;;;;;;;;38057:497;;;;;;;;;;-1:-1:-1;38057:497:0;;;;;:::i;:::-;;:::i;33558:27::-;;;;;;;;;;;;;;;;11513:151;;;;;;;;;;-1:-1:-1;11513:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11629:18:0;;;11602:7;11629:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11513:151;33140:33;;;;;;;;;;;;;;;;33703:25;;;;;;;;;;;;;;;;40014:532;;;;;;;;;;-1:-1:-1;40014:532:0;;;;;:::i;:::-;;:::i;37852:135::-;;;;;;;;;;;;;:::i;33666:30::-;;;;;;;;;;;;;;;;3137:201;;;;;;;;;;-1:-1:-1;3137:201:0;;;;;:::i;:::-;;:::i;33848:31::-;;;;;;;;;;;;;;;;33180:24;;;;;;;;;;;;;;;;9644:100;9698:13;9731:5;9724:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9644:100;:::o;11811:169::-;11894:4;11911:39;981:10;11934:7;11943:6;11911:8;:39::i;:::-;-1:-1:-1;11968:4:0;11811:169;;;;:::o;38562:275::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;;;;;;;;;38699:4:::1;38691;38670:13;10852:12:::0;;;10764:108;38670:13:::1;:17;::::0;38686:1:::1;38670:17;:::i;:::-;38669:26;;;;:::i;:::-;38668:35;;;;:::i;:::-;38658:6;:45;;38636:142;;;::::0;-1:-1:-1;;;38636:142:0;;5904:2:1;38636:142:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:45;6088:19;;38636:142:0::1;5702:411:1::0;38636:142:0::1;38812:17;:6:::0;38822::::1;38812:17;:::i;:::-;38789:20;:40:::0;-1:-1:-1;38562:275:0:o;12462:492::-;12602:4;12619:36;12629:6;12637:9;12648:6;12619:9;:36::i;:::-;-1:-1:-1;;;;;12695:19:0;;12668:24;12695:19;;;:11;:19;;;;;;;;981:10;12695:33;;;;;;;;12747:26;;;;12739:79;;;;-1:-1:-1;;;12739:79:0;;6320:2:1;12739:79:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:38;6497:19;;12739:79:0;6118:404:1;12739:79:0;12854:57;12863:6;981:10;12904:6;12885:16;:25;12854:8;:57::i;:::-;-1:-1:-1;12942:4:0;;12462:492;-1:-1:-1;;;;12462:492:0:o;39484:522::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;39728:2:::1;39709:13:::0;39676:30:::1;39693:13:::0;39676:14;:30:::1;:::i;:::-;:46;;;;:::i;:::-;39675:55;;39667:82;;;::::0;-1:-1:-1;;;39667:82:0;;6862:2:1;39667:82:0::1;::::0;::::1;6844:21:1::0;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:44;6974:18;;39667:82:0::1;6660:338:1::0;39667:82:0::1;39760:16;:33:::0;;;39804:14:::1;:30:::0;;;39845:15:::1;:31:::0;;;39887:10:::1;:20:::0;;;39900:7;39863:13;39933:33:::1;39821:13:::0;39779:14;39933:33:::1;:::i;:::-;:51;;;;:::i;:::-;:64;;;;:::i;:::-;39918:12;:79:::0;-1:-1:-1;;;;39484:522:0:o;13363:215::-;981:10;13451:4;13500:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13500:34:0;;;;;;;;;;13451:4;;13468:80;;13491:7;;13500:47;;13537:10;;13500:47;:::i;:::-;13468:8;:80::i;2879:103::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;2944:30:::1;2971:1;2944:18;:30::i;:::-;2879:103::o:0;37670:121::-;2301:6;;37722:4;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;-1:-1:-1;37739:14:0::1;:22:::0;;-1:-1:-1;;37739:22:0::1;::::0;;;37670:121;:::o;39113:167::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39226:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39226:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39113:167::o;37506:112::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;37561:13:::1;:20:::0;;-1:-1:-1;;37592:18:0;;;;;37506:112::o;39376:100::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;39447:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39447:21:0;;::::1;::::0;;;::::1;::::0;;39376:100::o;9863:104::-;9919:13;9952:7;9945:14;;;;;:::i;40744:304::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;40888:13:::1;-1:-1:-1::0;;;;;40880:21:0::1;:4;-1:-1:-1::0;;;;;40880:21:0::1;;;40858:128;;;::::0;-1:-1:-1;;;40858:128:0;;7205:2:1;40858:128:0::1;::::0;::::1;7187:21:1::0;7244:2;7224:18;;;7217:30;7283:34;7263:18;;;7256:62;7354:27;7334:18;;;7327:55;7399:19;;40858:128:0::1;7003:421:1::0;40858:128:0::1;40999:41;41028:4;41034:5;40999:28;:41::i;:::-;40744:304:::0;;:::o;14081:413::-;981:10;14174:4;14218:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14218:34:0;;;;;;;;;;14271:35;;;;14263:85;;;;-1:-1:-1;;;14263:85:0;;7631:2:1;14263:85:0;;;7613:21:1;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:35;7805:19;;14263:85:0;7429:401:1;14263:85:0;14384:67;981:10;14407:7;14435:15;14416:16;:34;14384:8;:67::i;:::-;-1:-1:-1;14482:4:0;;14081:413;-1:-1:-1;;;14081:413:0:o;11275:175::-;11361:4;11378:42;981:10;11402:9;11413:6;11378:9;:42::i;40554:182::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40639:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40639:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40694:34;;1420:41:1;;;40694:34:0::1;::::0;1393:18:1;40694:34:0::1;;;;;;;40554:182:::0;;:::o;38845:256::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;38985:4:::1;38977;38956:13;10852:12:::0;;;10764:108;38956:13:::1;:17;::::0;38972:1:::1;38956:17;:::i;:::-;38955:26;;;;:::i;:::-;38954:35;;;;:::i;:::-;38944:6;:45;;38922:131;;;::::0;-1:-1:-1;;;38922:131:0;;8037:2:1;38922:131:0::1;::::0;::::1;8019:21:1::0;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:1;;;8159:34;8210:19;;38922:131:0::1;7835:400:1::0;38922:131:0::1;39076:17;:6:::0;39086::::1;39076:17;:::i;:::-;39064:9;:29:::0;-1:-1:-1;38845:256:0:o;38057:497::-;2301:6;;38165:4;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;38244:6:::1;38223:13;10852:12:::0;;;10764:108;38223:13:::1;:17;::::0;38239:1:::1;38223:17;:::i;:::-;38222:28;;;;:::i;:::-;38209:9;:41;;38187:144;;;::::0;-1:-1:-1;;;38187:144:0;;8442:2:1;38187:144:0::1;::::0;::::1;8424:21:1::0;8481:2;8461:18;;;8454:30;8520:34;8500:18;;;8493:62;-1:-1:-1;;;8571:18:1;;;8564:51;8632:19;;38187:144:0::1;8240:417:1::0;38187:144:0::1;38399:4;38378:13;10852:12:::0;;;10764:108;38378:13:::1;:17;::::0;38394:1:::1;38378:17;:::i;:::-;38377:26;;;;:::i;:::-;38364:9;:39;;38342:141;;;::::0;-1:-1:-1;;;38342:141:0;;8864:2:1;38342:141:0::1;::::0;::::1;8846:21:1::0;8903:2;8883:18;;;8876:30;8942:34;8922:18;;;8915:62;-1:-1:-1;;;8993:18:1;;;8986:50;9053:19;;38342:141:0::1;8662:416:1::0;38342:141:0::1;-1:-1:-1::0;38494:18:0::1;:30:::0;;;38542:4:::1;2519:1;38057:497:::0;;;:::o;40014:532::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;40259:2:::1;40240:13:::0;40207:30:::1;40224:13:::0;40207:14;:30:::1;:::i;:::-;:46;;;;:::i;:::-;40206:55;;40198:83;;;::::0;-1:-1:-1;;;40198:83:0;;9285:2:1;40198:83:0::1;::::0;::::1;9267:21:1::0;9324:2;9304:18;;;9297:30;-1:-1:-1;;;9343:18:1;;;9336:45;9398:18;;40198:83:0::1;9083:339:1::0;40198:83:0::1;40292:17;:34:::0;;;40337:15:::1;:31:::0;;;40379:16:::1;:32:::0;;;40422:11:::1;:21:::0;;;40436:7;40398:13;40470:35:::1;40355:13:::0;40312:14;40470:35:::1;:::i;:::-;:54;;;;:::i;:::-;:68;;;;:::i;:::-;40454:13;:84:::0;-1:-1:-1;;;;40014:532:0:o;37852:135::-;2301:6;;37912:4;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;-1:-1:-1;37929:20:0::1;:28:::0;;-1:-1:-1;;37929:28:0::1;::::0;;;37852:135;:::o;3137:201::-;2301:6;;-1:-1:-1;;;;;2301:6:0;981:10;2448:23;2440:68;;;;-1:-1:-1;;;2440:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3226:22:0;::::1;3218:73;;;::::0;-1:-1:-1;;;3218:73:0;;9629:2:1;3218:73:0::1;::::0;::::1;9611:21:1::0;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:1;;;9751:36;9804:19;;3218:73:0::1;9427:402:1::0;3218:73:0::1;3302:28;3321:8;3302:18;:28::i;:::-;3137:201:::0;:::o;17765:380::-;-1:-1:-1;;;;;17901:19:0;;17893:68;;;;-1:-1:-1;;;17893:68:0;;10036:2:1;17893:68:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114:34;10094:18;;;10087:62;-1:-1:-1;;;10165:18:1;;;10158:34;10209:19;;17893:68:0;9834:400:1;17893:68:0;-1:-1:-1;;;;;17980:21:0;;17972:68;;;;-1:-1:-1;;;17972:68:0;;10441:2:1;17972:68:0;;;10423:21:1;10480:2;10460:18;;;10453:30;10519:34;10499:18;;;10492:62;-1:-1:-1;;;10570:18:1;;;10563:32;10612:19;;17972:68:0;10239:398:1;17972:68:0;-1:-1:-1;;;;;18053:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18105:32;;2105:25:1;;;18105:32:0;;2078:18:1;18105:32:0;;;;;;;17765:380;;;:::o;41386:4883::-;-1:-1:-1;;;;;41518:18:0;;41510:68;;;;-1:-1:-1;;;41510:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41597:16:0;;41589:64;;;;-1:-1:-1;;;41589:64:0;;;;;;;:::i;:::-;41670:11;41666:93;;41698:28;41714:4;41720:2;41724:1;41698:15;:28::i;:::-;41386:4883;;;:::o;41666:93::-;41775:14;;;;41771:2487;;;2301:6;;-1:-1:-1;;;;;41828:15:0;;;2301:6;;41828:15;;;;:49;;-1:-1:-1;2301:6:0;;-1:-1:-1;;;;;41864:13:0;;;2301:6;;41864:13;;41828:49;:86;;;;-1:-1:-1;;;;;;41898:16:0;;;;41828:86;:128;;;;-1:-1:-1;;;;;;41935:21:0;;41949:6;41935:21;;41828:128;:158;;;;-1:-1:-1;41978:8:0;;-1:-1:-1;;;41978:8:0;;;;41977:9;41828:158;41806:2441;;;42026:13;;;;;;;42021:223;;-1:-1:-1;;;;;42098:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42127:23:0;;;;;;:19;:23;;;;;;;;42098:52;42064:160;;;;-1:-1:-1;;;42064:160:0;;11654:2:1;42064:160:0;;;11636:21:1;11693:2;11673:18;;;11666:30;-1:-1:-1;;;11712:18:1;;;11705:52;11774:18;;42064:160:0;11452:346:1;42064:160:0;42400:20;;;;42396:641;;;2301:6;;-1:-1:-1;;;;;42475:13:0;;;2301:6;;42475:13;;;;:72;;;42531:15;-1:-1:-1;;;;;42517:30:0;:2;-1:-1:-1;;;;;42517:30:0;;;42475:72;:129;;;;;42590:13;-1:-1:-1;;;;;42576:28:0;:2;-1:-1:-1;;;;;42576:28:0;;;42475:129;42445:573;;;42722:9;42693:39;;;;:28;:39;;;;;;42768:12;-1:-1:-1;42655:258:0;;;;-1:-1:-1;;;42655:258:0;;12005:2:1;42655:258:0;;;11987:21:1;12044:2;12024:18;;;12017:30;12083:34;12063:18;;;12056:62;12154:34;12134:18;;;12127:62;-1:-1:-1;;;12205:19:1;;;12198:40;12255:19;;42655:258:0;11803:477:1;42655:258:0;42969:9;42940:39;;;;:28;:39;;;;;42982:12;42940:54;;42445:573;-1:-1:-1;;;;;43111:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43168:35:0;;;;;;:31;:35;;;;;;;;43167:36;43111:92;43085:1147;;;43290:20;;43280:6;:30;;43246:169;;;;-1:-1:-1;;;43246:169:0;;12487:2:1;43246:169:0;;;12469:21:1;12526:2;12506:18;;;12499:30;12565:34;12545:18;;;12538:62;-1:-1:-1;;;12616:18:1;;;12609:51;12677:19;;43246:169:0;12285:417:1;43246:169:0;43498:9;;-1:-1:-1;;;;;11036:18:0;;11009:7;11036:18;;;;;;;;;;;43472:22;;:6;:22;:::i;:::-;:35;;43438:140;;;;-1:-1:-1;;;43438:140:0;;12909:2:1;43438:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;43438:140:0;12707:343:1;43438:140:0;43085:1147;;;-1:-1:-1;;;;;43676:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43731:37:0;;;;;;:31;:37;;;;;;;;43730:38;43676:92;43650:582;;;43855:20;;43845:6;:30;;43811:170;;;;-1:-1:-1;;;43811:170:0;;13257:2:1;43811:170:0;;;13239:21:1;13296:2;13276:18;;;13269:30;13335:34;13315:18;;;13308:62;-1:-1:-1;;;13386:18:1;;;13379:52;13448:19;;43811:170:0;13055:418:1;43650:582:0;-1:-1:-1;;;;;44012:35:0;;;;;;:31;:35;;;;;;;;44007:225;;44132:9;;-1:-1:-1;;;;;11036:18:0;;11009:7;11036:18;;;;;;;;;;;44106:22;;:6;:22;:::i;:::-;:35;;44072:140;;;;-1:-1:-1;;;44072:140:0;;12909:2:1;44072:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;44072:140:0;12707:343:1;44072:140:0;44319:4;44270:28;11036:18;;;;;;;;;;;44377;;44353:42;;;;;;;44426:35;;-1:-1:-1;44450:11:0;;;;;;;44426:35;:61;;;;-1:-1:-1;44479:8:0;;-1:-1:-1;;;44479:8:0;;;;44478:9;44426:61;:110;;;;-1:-1:-1;;;;;;44505:31:0;;;;;;:25;:31;;;;;;;;44504:32;44426:110;:153;;;;-1:-1:-1;;;;;;44554:25:0;;;;;;:19;:25;;;;;;;;44553:26;44426:153;:194;;;;-1:-1:-1;;;;;;44597:23:0;;;;;;:19;:23;;;;;;;;44596:24;44426:194;44408:326;;;44647:8;:15;;-1:-1:-1;;;;44647:15:0;-1:-1:-1;;;44647:15:0;;;44679:10;:8;:10::i;:::-;44706:8;:16;;-1:-1:-1;;;;44706:16:0;;;44408:326;44762:8;;-1:-1:-1;;;;;44872:25:0;;44746:12;44872:25;;;:19;:25;;;;;;44762:8;-1:-1:-1;;;44762:8:0;;;;;44761:9;;44872:25;;:52;;-1:-1:-1;;;;;;44901:23:0;;;;;;:19;:23;;;;;;;;44872:52;44868:100;;;-1:-1:-1;44951:5:0;44868:100;44980:12;45085:7;45081:1135;;;-1:-1:-1;;;;;45137:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45186:1;45170:13;;:17;45137:50;45133:934;;;45215:34;45245:3;45215:25;45226:13;;45215:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45208:41;;45320:13;;45299:17;;45292:4;:24;;;;:::i;:::-;45291:42;;;;:::i;:::-;45268:19;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;45402:13:0;;45382:16;;45375:23;;:4;:23;:::i;:::-;45374:41;;;;:::i;:::-;45352:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45474:13:0;;45459:11;;45452:18;;:4;:18;:::i;:::-;45451:36;;;;:::i;:::-;45434:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;45554:13:0;;45535:15;;45528:22;;:4;:22;:::i;:::-;45527:40;;;;:::i;:::-;45506:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;45133:934:0;;-1:-1:-1;45133:934:0;;-1:-1:-1;;;;;45629:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45679:1;45664:12;;:16;45629:51;45625:442;;;45708:33;45737:3;45708:24;45719:12;;45708:6;:10;;:24;;;;:::i;:33::-;45701:40;;45811:12;;45791:16;;45784:4;:23;;;;:::i;:::-;45783:40;;;;:::i;:::-;45760:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45891:12:0;;45872:15;;45865:22;;:4;:22;:::i;:::-;45864:39;;;;:::i;:::-;45842:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45961:12:0;;45947:10;;45940:17;;:4;:17;:::i;:::-;45939:34;;;;:::i;:::-;45922:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46039:12:0;;46021:14;;46014:21;;:4;:21;:::i;:::-;46013:38;;;;:::i;:::-;45992:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45625:442:0;46087:8;;46083:91;;46116:42;46132:4;46146;46153;46116:15;:42::i;:::-;46190:14;46200:4;46190:14;;:::i;:::-;;;45081:1135;46228:33;46244:4;46250:2;46254:6;46228:15;:33::i;:::-;41499:4770;;;;41386:4883;;;:::o;3498:191::-;3591:6;;;-1:-1:-1;;;;;3608:17:0;;;-1:-1:-1;;;;;;3608:17:0;;;;;;;3641:40;;3591:6;;;3608:17;3591:6;;3641:40;;3572:16;;3641:40;3561:128;3498:191;:::o;41056:188::-;-1:-1:-1;;;;;41139:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41139:39:0;;;;;;;;;;41196:40;;41139:39;;:31;41196:40;;;41056:188;;:::o;14984:733::-;-1:-1:-1;;;;;15124:20:0;;15116:70;;;;-1:-1:-1;;;15116:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15205:23:0;;15197:71;;;;-1:-1:-1;;;15197:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15365:17:0;;15341:21;15365:17;;;;;;;;;;;15401:23;;;;15393:74;;;;-1:-1:-1;;;15393:74:0;;13810:2:1;15393:74:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:36;13985:19;;15393:74:0;13608:402:1;15393:74:0;-1:-1:-1;;;;;15503:17:0;;;:9;:17;;;;;;;;;;;15523:22;;;15503:42;;15567:20;;;;;;;;:30;;15539:6;;15503:9;15567:30;;15539:6;;15567:30;:::i;:::-;;;;;;;;15632:9;-1:-1:-1;;;;;15615:35:0;15624:6;-1:-1:-1;;;;;15615:35:0;;15643:6;15615:35;;;;2105:25:1;;2093:2;2078:18;;1959:177;15615:35:0;;;;;;;;15105:612;14984:733;;;:::o;47398:1913::-;47481:4;47437:23;11036:18;;;;;;;;;;;47437:50;;47498:25;47589:13;;47569:17;;47548:18;;47526:19;;:40;;;;:::i;:::-;:60;;;;:::i;:::-;:76;;;;:::i;:::-;47498:104;-1:-1:-1;47613:12:0;47642:20;;;:46;;-1:-1:-1;47666:22:0;;47642:46;47638:85;;;47705:7;;;47398:1913::o;47638:85::-;47757:18;;:23;;47778:2;47757:23;:::i;:::-;47739:15;:41;47735:115;;;47815:18;;:23;;47836:2;47815:23;:::i;:::-;47797:41;;47735:115;47911:23;47998:1;47978:17;47956:18;;47938:15;:36;;;;:::i;:::-;47937:58;;;;:::i;:::-;:62;;;;:::i;:::-;47911:88;-1:-1:-1;48010:26:0;48039:36;:15;47911:88;48039:19;:36::i;:::-;48010:65;-1:-1:-1;48116:21:0;48150:36;48010:65;48150:16;:36::i;:::-;48199:18;48220:44;:21;48246:17;48220:25;:44::i;:::-;48199:65;;48277:24;48304:58;48344:17;48304:35;48319:19;;48304:10;:14;;:35;;;;:::i;:58::-;48277:85;;48373:22;48398:56;48436:17;48398:33;48413:17;;48398:10;:14;;:33;;;;:::i;:56::-;48373:81;;48465:18;48486:52;48520:17;48486:29;48501:13;;48486:10;:14;;:29;;;;:::i;:52::-;48465:73;-1:-1:-1;48551:23:0;48465:73;48609:14;48577:29;48590:16;48577:10;:29;:::i;:::-;:46;;;;:::i;:::-;:59;;;;:::i;:::-;48670:1;48649:18;:22;;;48682:19;:23;;;48716:17;:21;;;48748:13;:17;;;48800:10;;48792:47;;48551:85;;-1:-1:-1;;;;;;48800:10:0;;48824;;48792:47;48670:1;48792:47;48824:10;48800;48792:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48872:15:0;;48864:56;;48778:61;;-1:-1:-1;;;;;;48872:15:0;;48901:14;;48864:56;;;;48901:14;48872:15;48864:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48850:70:0;;-1:-1:-1;;48939:19:0;;;;;:42;;;48980:1;48962:15;:19;48939:42;48935:278;;;48998:46;49011:15;49028;48998:12;:46::i;:::-;49168:18;;49064:137;;;14427:25:1;;;14483:2;14468:18;;14461:34;;;14511:18;;;14504:34;;;;49064:137:0;;;;;;14415:2:1;49064:137:0;;;48935:278;49247:16;;49239:64;;-1:-1:-1;;;;;49247:16:0;;;;49277:21;;49239:64;;;;49277:21;49247:16;49239:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47398:1913:0:o;23218:98::-;23276:7;23303:5;23307:1;23303;:5;:::i;:::-;23296:12;23218:98;-1:-1:-1;;;23218:98:0:o;23617:::-;23675:7;23702:5;23706:1;23702;:5;:::i;22861:98::-;22919:7;22946:5;22950:1;22946;:5;:::i;46277:589::-;46427:16;;;46441:1;46427:16;;;;;;;;46403:21;;46427:16;;;;;;;;;;-1:-1:-1;46427:16:0;46403:40;;46472:4;46454;46459:1;46454:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46454:23:0;;;-1:-1:-1;;;;;46454:23:0;;;;;46498:15;-1:-1:-1;;;;;46498:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46488:4;46493:1;46488:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46488:32:0;;;-1:-1:-1;;;;;46488:32:0;;;;;46533:62;46550:4;46565:15;46583:11;46533:8;:62::i;:::-;46634:224;;-1:-1:-1;;;46634:224:0;;-1:-1:-1;;;;;46634:15:0;:66;;;;:224;;46715:11;;46741:1;;46785:4;;46812;;46832:15;;46634:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46332:534;46277:589;:::o;46874:516::-;47022:62;47039:4;47054:15;47072:11;47022:8;:62::i;:::-;47331:10;;47127:255;;-1:-1:-1;;;47127:255:0;;47199:4;47127:255;;;16395:34:1;16445:18;;;16438:34;;;47245:1:0;16488:18:1;;;16481:34;;;16531:18;;;16524:34;-1:-1:-1;;;;;47331:10:0;;;16574:19:1;;;16567:44;47356:15:0;16627:19:1;;;16620:35;47127:15:0;:31;;;;;;47166:9;;16329:19:1;;47127:255:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46874:516;;:::o;222:597:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;660:6;657:1;654:13;651:91;;;730:1;725:2;716:6;705:9;701:22;697:31;690:42;651:91;-1:-1:-1;803:2:1;782:15;-1:-1:-1;;778:29:1;763:45;;;;810:2;759:54;;222:597;-1:-1:-1;;;222:597:1:o;824:131::-;-1:-1:-1;;;;;899:31:1;;889:42;;879:70;;945:1;942;935:12;960:315;1028:6;1036;1089:2;1077:9;1068:7;1064:23;1060:32;1057:52;;;1105:1;1102;1095:12;1057:52;1144:9;1131:23;1163:31;1188:5;1163:31;:::i;:::-;1213:5;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;960:315:1:o;1472:247::-;1531:6;1584:2;1572:9;1563:7;1559:23;1555:32;1552:52;;;1600:1;1597;1590:12;1552:52;1639:9;1626:23;1658:31;1683:5;1658:31;:::i;2141:180::-;2200:6;2253:2;2241:9;2232:7;2228:23;2224:32;2221:52;;;2269:1;2266;2259:12;2221:52;-1:-1:-1;2292:23:1;;2141:180;-1:-1:-1;2141:180:1:o;2326:456::-;2403:6;2411;2419;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2527:9;2514:23;2546:31;2571:5;2546:31;:::i;:::-;2596:5;-1:-1:-1;2653:2:1;2638:18;;2625:32;2666:33;2625:32;2666:33;:::i;:::-;2326:456;;2718:7;;-1:-1:-1;;;2772:2:1;2757:18;;;;2744:32;;2326:456::o;2787:385::-;2873:6;2881;2889;2897;2950:3;2938:9;2929:7;2925:23;2921:33;2918:53;;;2967:1;2964;2957:12;2918:53;-1:-1:-1;;2990:23:1;;;3060:2;3045:18;;3032:32;;-1:-1:-1;3111:2:1;3096:18;;3083:32;;3162:2;3147:18;3134:32;;-1:-1:-1;2787:385:1;-1:-1:-1;2787:385:1:o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:168;5347:7;5413:1;5409;5405:6;5401:14;5398:1;5395:21;5390:1;5383:9;5376:17;5372:45;5369:71;;;5420:18;;:::i;:::-;-1:-1:-1;5460:9:1;;5307:168::o;5480:217::-;5520:1;5546;5536:132;;5590:10;5585:3;5581:20;5578:1;5571:31;5625:4;5622:1;5615:15;5653:4;5650:1;5643:15;5536:132;-1:-1:-1;5682:9:1;;5480:217::o;6527:128::-;6567:3;6598:1;6594:6;6591:1;6588:13;6585:39;;;6604:18;;:::i;:::-;-1:-1:-1;6640:9:1;;6527:128::o;10642:401::-;10844:2;10826:21;;;10883:2;10863:18;;;10856:30;10922:34;10917:2;10902:18;;10895:62;-1:-1:-1;;;10988:2:1;10973:18;;10966:35;11033:3;11018:19;;10642:401::o;11048:399::-;11250:2;11232:21;;;11289:2;11269:18;;;11262:30;11328:34;11323:2;11308:18;;11301:62;-1:-1:-1;;;11394:2:1;11379:18;;11372:33;11437:3;11422:19;;11048:399::o;13478:125::-;13518:4;13546:1;13543;13540:8;13537:34;;;13551:18;;:::i;:::-;-1:-1:-1;13588:9:1;;13478:125::o;14681:127::-;14742:10;14737:3;14733:20;14730:1;14723:31;14773:4;14770:1;14763:15;14797:4;14794:1;14787:15;14813:251;14883:6;14936:2;14924:9;14915:7;14911:23;14907:32;14904:52;;;14952:1;14949;14942:12;14904:52;14984:9;14978:16;15003:31;15028:5;15003:31;:::i;15069:980::-;15331:4;15379:3;15368:9;15364:19;15410:6;15399:9;15392:25;15436:2;15474:6;15469:2;15458:9;15454:18;15447:34;15517:3;15512:2;15501:9;15497:18;15490:31;15541:6;15576;15570:13;15607:6;15599;15592:22;15645:3;15634:9;15630:19;15623:26;;15684:2;15676:6;15672:15;15658:29;;15705:1;15715:195;15729:6;15726:1;15723:13;15715:195;;;15794:13;;-1:-1:-1;;;;;15790:39:1;15778:52;;15885:15;;;;15850:12;;;;15826:1;15744:9;15715:195;;;-1:-1:-1;;;;;;;15966:32:1;;;;15961:2;15946:18;;15939:60;-1:-1:-1;;;16030:3:1;16015:19;16008:35;15927:3;15069:980;-1:-1:-1;;;15069:980:1:o;16666:306::-;16754:6;16762;16770;16823:2;16811:9;16802:7;16798:23;16794:32;16791:52;;;16839:1;16836;16829:12;16791:52;16868:9;16862:16;16852:26;;16918:2;16907:9;16903:18;16897:25;16887:35;;16962:2;16951:9;16947:18;16941:25;16931:35;;16666:306;;;;;:::o

Swarm Source

ipfs://4eb6487822a496db94dcb1b634b9c6c1adf768571b38b307ab7cc3b82b604a9d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.