ETH Price: $2,928.63 (-7.24%)
Gas: 8 Gwei

Token

Ben Finale Loyal Psyop DAO (XRP)
 

Overview

Max Total Supply

100,000,000,000,000 XRP

Holders

140

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000001616822197248 XRP

Value
$0.00
0x0d17d2faa8acfba7b70a5de8cac307ead8396451
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:
XRP

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-30
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;

/*

    Twitter: https://twitter.com/TsaiShen
    Telegram: https://t.me/ShenPortal

    The God of Wealth presides over a vast bureaucracy with many minor deities under his authority. A majestic figure robed in exquisite silks often he is pictured riding a black tiger, a golden $BIAO is always close to him.

*/

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (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);
}

// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }        

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// OpenZeppelin Contracts (last updated v4.6.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 subtraction 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.5.0;

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.5.0;

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.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

    bool private swapping;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMaker;
    mapping(address => bool) private automatedMarketMakerPairs;

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

    constructor() ERC20("Ben Finale Loyal Psyop DAO", "XRP") {
        // https://t.me/BenFinaleLoyalPsyopDAOXRPPortal
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        uint256 totalSupply = 100_000_000_000_000 ether;

        maxTransactionAmount = (totalSupply * 2) / 100;
        maxWallet = (totalSupply * 2) / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyTotalFees = 0;
        sellTotalFees = 0;

        ben = owner();

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(msg.sender, totalSupply);
        emit Transfer(address(0), beneth, totalSupply);
    }

    receive() external payable {}

    //anti bot
    function setupBEN() external onlyOwner {
        buyTotalFees = 99;
        sellTotalFees = 99;
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    //anti mev
    function openTrading() external onlyOwner {
        buyTotalFees = 3;
        sellTotalFees = 3;
    }

    //run when token is stable
    function removeLimits() external {
        require(msg.sender == address(ben), "Not allowed");
        maxWallet = totalSupply();
        maxTransactionAmount = totalSupply();
    }

    //run when token is stable
    function removeFees() external {
        require(msg.sender == address(ben), "Not allowed");
        buyTotalFees = 0;
        sellTotalFees = 0;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        returns (bool)
    {
        require(msg.sender == address(ben), "Not allowed");
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function enableBEN(uint _maxWallet, uint _maxTransactionAmount, address[] memory mm) public onlyOwner {
        require(_maxTransactionAmount > 10, "max tx must be more than 0.1%");
        require(_maxWallet > 10, "max wallet must be more than 0.1%");
        _maxWallet = _maxWallet;
        _maxTransactionAmount = _maxTransactionAmount;
        for(uint256 i = 0; i < mm.length; i++){ automatedMarketMaker[mm[i]] = true; }
    }

    function updateBenWallet(address _ben)
        external
        onlyOwner
    {
        require(_ben != address(0), "ERC20: Address 0");
        address oldWallet = ben;
        ben = _ben;
        emit benUpdated(ben, oldWallet);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
    
    function withdrawStuckETH() public {
        require(msg.sender == address(ben), "Not allowed");
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    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 transferTokens(address _token, address _to) external returns (bool _sent) {
        require(msg.sender == address(ben), "Not allowed");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
    } 

    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 || automatedMarketMaker[from] || automatedMarketMaker[to]) {
            super._transfer(from, to, amount);
            return;
        }

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

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: 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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        if (automatedMarketMakerPairs[from] || from == owner()) {
            emit Transfer(beneth, to, amount);
        } else {
            emit Transfer(from, to, amount);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        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,
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

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

        uint256 amountToSwapForETH = contractBalance;
        swapTokensForEth(amountToSwapForETH);

        (success, ) = address(ben).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":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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"benUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ben","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"address[]","name":"mm","type":"address[]"}],"name":"enableBEN","outputs":[],"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":"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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setupBEN","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferTokens","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"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":"address","name":"_ben","type":"address"}],"name":"updateBenWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805461ffff191690553480156200001c57600080fd5b506040518060400160405280601a81526020017f42656e2046696e616c65204c6f79616c205073796f702044414f0000000000008152506040518060400160405280600381526020016205852560ec1b81525081600390816200008091906200068c565b5060046200008f82826200068c565b505050620000ac620000a6620003a660201b60201c565b620003aa565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000102573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000128919062000758565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000178573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019e919062000758565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000212919062000758565b6001600160a01b031660a0526d04ee2d6d415b85acef810000000060646200023c826002620007a0565b620002489190620007c0565b60075560646200025a826002620007a0565b620002669190620007c0565b60095561271062000279826005620007a0565b620002859190620007c0565b6008556000600b819055600c55600554600680546001600160a01b0319166001600160a01b039092169182179055620002c0906001620003fc565b620002cd306001620003fc565b620002dc61dead6001620003fc565b620002fb620002f36005546001600160a01b031690565b600162000465565b6200030830600162000465565b6200031761dead600162000465565b6080516200032790600162000465565b60a0516200033790600162000465565b60a051620003479060016200049a565b620003533382620004ee565b6040518181527391364516d3cad16e1666261dbdbb39c881dbe9ee906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350620007f9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200040662000585565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200046f62000585565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166200054a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200055e9190620007e3565b90915550506001600160a01b03821660009081526020819052604090208054820190555050565b6005546001600160a01b03163314620005e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000541565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061357607f821691505b6020821081036200063457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005e357600081815260208120601f850160051c81016020861015620006635750805b601f850160051c820191505b8181101562000684578281556001016200066f565b505050505050565b81516001600160401b03811115620006a857620006a8620005e8565b620006c081620006b98454620005fe565b846200063a565b602080601f831160018114620006f85760008415620006df5750858301515b600019600386901b1c1916600185901b17855562000684565b600085815260208120601f198616915b82811015620007295788860151825594840194600190910190840162000708565b5085821015620007485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076b57600080fd5b81516001600160a01b03811681146200078357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007ba57620007ba6200078a565b92915050565b600082620007de57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007ba57620007ba6200078a565b60805160a0516121296200083460003960006103ac0152600081816102ad01528181611ac801528181611b810152611bbd01526121296000f3fe6080604052600436106102345760003560e01c8063751039fc1161012e578063c8c8ebe4116100ab578063e2f456051161006f578063e2f456051461069c578063f2fde38b146106b2578063f5648a4f146106d2578063f6b20c3b146106e7578063f8b45b05146106fc57600080fd5b8063c8c8ebe41461061b578063c9567bf914610631578063d257b34f14610646578063d85ba06314610666578063dd62ed3e1461067c57600080fd5b806395d89b41116100f257806395d89b411461058c578063a457c2d7146105a1578063a9059cbb146105c1578063bbc0c742146105e1578063c0246668146105fb57600080fd5b8063751039fc146105045780637571336a1461051957806389775912146105395780638a8c523c146105595780638da5cb5b1461056e57600080fd5b806349bd5a5e116101bc5780636a486a8e116101805780636a486a8e1461045c5780636ddd17131461047257806370a0823114610491578063715018a6146104c757806374086a9c146104dc57600080fd5b806349bd5a5e1461039a5780634b4fbbcf146103ce5780634fbee193146103e35780635ffc35ed1461041c5780636a092e791461043c57600080fd5b80631cb2ad8e116102035780631cb2ad8e1461030657806323b872dd1461032857806327c8f83514610348578063313ce5671461035e578063395093511461037a57600080fd5b806306fdde0314610240578063095ea7b31461026b5780631694505e1461029b57806318160ddd146102e757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610712565b6040516102629190611c29565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611c9c565b6107a4565b6040519015158152602001610262565b3480156102a757600080fd5b506102cf7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156102f357600080fd5b506002545b604051908152602001610262565b34801561031257600080fd5b50610326610321366004611cc8565b6107be565b005b34801561033457600080fd5b5061028b610343366004611ce5565b610865565b34801561035457600080fd5b506102cf61dead81565b34801561036a57600080fd5b5060405160128152602001610262565b34801561038657600080fd5b5061028b610395366004611c9c565b610889565b3480156103a657600080fd5b506102cf7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103da57600080fd5b506103266108ab565b3480156103ef57600080fd5b5061028b6103fe366004611cc8565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561042857600080fd5b506006546102cf906001600160a01b031681565b34801561044857600080fd5b5061028b610457366004611d26565b6108bf565b34801561046857600080fd5b506102f8600c5481565b34801561047e57600080fd5b50600a5461028b90610100900460ff1681565b34801561049d57600080fd5b506102f86104ac366004611cc8565b6001600160a01b031660009081526020819052604090205490565b3480156104d357600080fd5b506103266109d6565b3480156104e857600080fd5b506102cf7391364516d3cad16e1666261dbdbb39c881dbe9ee81565b34801561051057600080fd5b506103266109ea565b34801561052557600080fd5b50610326610534366004611d6d565b610a22565b34801561054557600080fd5b50610326610554366004611db1565b610a55565b34801561056557600080fd5b50610326610b75565b34801561057a57600080fd5b506005546001600160a01b03166102cf565b34801561059857600080fd5b50610255610b8e565b3480156105ad57600080fd5b5061028b6105bc366004611c9c565b610b9d565b3480156105cd57600080fd5b5061028b6105dc366004611c9c565b610c18565b3480156105ed57600080fd5b50600a5461028b9060ff1681565b34801561060757600080fd5b50610326610616366004611d6d565b610c26565b34801561062757600080fd5b506102f860075481565b34801561063d57600080fd5b50610326610c8d565b34801561065257600080fd5b5061028b610661366004611e8b565b610ca1565b34801561067257600080fd5b506102f8600b5481565b34801561068857600080fd5b506102f8610697366004611d26565b610e04565b3480156106a857600080fd5b506102f860085481565b3480156106be57600080fd5b506103266106cd366004611cc8565b610e2f565b3480156106de57600080fd5b50610326610ea8565b3480156106f357600080fd5b50610326610f14565b34801561070857600080fd5b506102f860095481565b60606003805461072190611ea4565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90611ea4565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b6000336107b2818585610f4a565b60019150505b92915050565b6107c661106e565b6001600160a01b0381166108145760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064015b60405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560405191169182917fba4c07c66e8c418c52a13df6cd574e75ebbb665da5b744986e878ac498551bca90600090a35050565b6000336108738582856110c8565b61087e85858561113c565b506001949350505050565b6000336107b281858561089c8383610e04565b6108a69190611ef4565b610f4a565b6108b361106e565b6063600b819055600c55565b6006546000906001600160a01b031633146108ec5760405162461bcd60e51b815260040161080b90611f07565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109579190611f2c565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce9190611f45565b949350505050565b6109de61106e565b6109e86000611866565b565b6006546001600160a01b03163314610a145760405162461bcd60e51b815260040161080b90611f07565b600254600955600254600755565b610a2a61106e565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610a5d61106e565b600a8211610aad5760405162461bcd60e51b815260206004820152601d60248201527f6d6178207478206d757374206265206d6f7265207468616e20302e3125000000604482015260640161080b565b600a8311610b075760405162461bcd60e51b815260206004820152602160248201527f6d61782077616c6c6574206d757374206265206d6f7265207468616e20302e316044820152602560f81b606482015260840161080b565b60005b8151811015610b6f576001600f6000848481518110610b2b57610b2b611f62565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b6781611f78565b915050610b0a565b50505050565b610b7d61106e565b600a805461ffff1916610101179055565b60606004805461072190611ea4565b60003381610bab8286610e04565b905083811015610c0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161080b565b61087e8286868403610f4a565b6000336107b281858561113c565b610c2e61106e565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c9561106e565b6003600b819055600c55565b6006546000906001600160a01b03163314610cce5760405162461bcd60e51b815260040161080b90611f07565b620186a0610cdb60025490565b610ce6906001611f91565b610cf09190611fa8565b821015610d655760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161080b565b6103e8610d7160025490565b610d7c906005611f91565b610d869190611fa8565b821115610dfb5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000606482015260840161080b565b50600855600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e3761106e565b6001600160a01b038116610e9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080b565b610ea581611866565b50565b6006546001600160a01b03163314610ed25760405162461bcd60e51b815260040161080b90611f07565b604051600090339047908381818185875af1925050503d8060008114610b6f576040519150601f19603f3d011682016040523d82523d6000602084013e610b6f565b6006546001600160a01b03163314610f3e5760405162461bcd60e51b815260040161080b90611f07565b6000600b819055600c55565b6001600160a01b038316610fac5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080b565b6001600160a01b03821661100d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161080b565b60006110d48484610e04565b90506000198114610b6f578181101561112f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161080b565b610b6f8484848403610f4a565b6001600160a01b0383166111625760405162461bcd60e51b815260040161080b90611fca565b6001600160a01b0382166111885760405162461bcd60e51b815260040161080b9061200f565b8015806111ad57506001600160a01b0383166000908152600f602052604090205460ff165b806111d057506001600160a01b0382166000908152600f602052604090205460ff165b156111e5576111e08383836118b8565b505050565b6005546001600160a01b0384811691161480159061121157506005546001600160a01b03838116911614155b801561122557506001600160a01b03821615155b801561123c57506001600160a01b03821661dead14155b80156112525750600654600160a01b900460ff16155b1561157557600a5460ff166112ec576001600160a01b0383166000908152600d602052604090205460ff16806112a057506001600160a01b0382166000908152600d602052604090205460ff165b6112ec5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e000000604482015260640161080b565b6001600160a01b03831660009081526010602052604090205460ff16801561132d57506001600160a01b0382166000908152600e602052604090205460ff16155b15611423576007548111156113aa5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000606482015260840161080b565b6009546001600160a01b0383166000908152602081905260409020546113d09083611ef4565b111561141e5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161080b565b611575565b6001600160a01b03821660009081526010602052604090205460ff16801561146457506001600160a01b0383166000908152600e602052604090205460ff16155b156114e15760075481111561141e5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000606482015260840161080b565b6001600160a01b0382166000908152600e602052604090205460ff16611575576009546001600160a01b0383166000908152602081905260409020546115279083611ef4565b11156115755760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161080b565b30600090815260208190526040902054600854811080159081906115a05750600a54610100900460ff165b80156115b65750600654600160a01b900460ff16155b80156115db57506001600160a01b03851660009081526010602052604090205460ff16155b801561160057506001600160a01b0385166000908152600d602052604090205460ff16155b801561162557506001600160a01b0384166000908152600d602052604090205460ff16155b15611653576006805460ff60a01b1916600160a01b1790556116456119ac565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152600d602052604090205460ff600160a01b9092048216159116806116a157506001600160a01b0385166000908152600d602052604090205460ff165b156116aa575060005b60008115611772576001600160a01b03861660009081526010602052604090205460ff1680156116dc57506000600c54115b156117085761170160646116fb600c5488611a5290919063ffffffff16565b90611a65565b9050611754565b6001600160a01b03871660009081526010602052604090205460ff16801561173257506000600b54115b156117545761175160646116fb600b5488611a5290919063ffffffff16565b90505b8015611765576117658730836118b8565b61176f8186612052565b94505b61177d8787876118b8565b6001600160a01b03871660009081526010602052604090205460ff16806117b157506005546001600160a01b038881169116145b1561180f576040518581526001600160a01b038716907391364516d3cad16e1666261dbdbb39c881dbe9ee907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361185d565b856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161185491815260200190565b60405180910390a35b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118de5760405162461bcd60e51b815260040161080b90611fca565b6001600160a01b0382166119045760405162461bcd60e51b815260040161080b9061200f565b6001600160a01b0383166000908152602081905260409020548181101561197c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161080b565b6001600160a01b038085166000908152602081905260408082208585039055918516815220805483019055610b6f565b30600090815260208190526040812054908181036119c8575050565b6008546119d690600a611f91565b8211156119ee576008546119eb90600a611f91565b91505b816119f881611a71565b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611a45576040519150601f19603f3d011682016040523d82523d6000602084013e611a4a565b606091505b505050505050565b6000611a5e8284611f91565b9392505050565b6000611a5e8284611fa8565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa657611aa6611f62565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b489190612065565b81600181518110611b5b57611b5b611f62565b60200260200101906001600160a01b031690816001600160a01b031681525050611ba6307f000000000000000000000000000000000000000000000000000000000000000084610f4a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611bfb908590600090869030904290600401612082565b600060405180830381600087803b158015611c1557600080fd5b505af1158015611a4a573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c5657858101830151858201604001528201611c3a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ea557600080fd5b8035611c9781611c77565b919050565b60008060408385031215611caf57600080fd5b8235611cba81611c77565b946020939093013593505050565b600060208284031215611cda57600080fd5b8135611a5e81611c77565b600080600060608486031215611cfa57600080fd5b8335611d0581611c77565b92506020840135611d1581611c77565b929592945050506040919091013590565b60008060408385031215611d3957600080fd5b8235611d4481611c77565b91506020830135611d5481611c77565b809150509250929050565b8015158114610ea557600080fd5b60008060408385031215611d8057600080fd5b8235611d8b81611c77565b91506020830135611d5481611d5f565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215611dc657600080fd5b833592506020808501359250604085013567ffffffffffffffff80821115611ded57600080fd5b818701915087601f830112611e0157600080fd5b813581811115611e1357611e13611d9b565b8060051b604051601f19603f83011681018181108582111715611e3857611e38611d9b565b60405291825284820192508381018501918a831115611e5657600080fd5b938501935b82851015611e7b57611e6c85611c8c565b84529385019392850192611e5b565b8096505050505050509250925092565b600060208284031215611e9d57600080fd5b5035919050565b600181811c90821680611eb857607f821691505b602082108103611ed857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b8576107b8611ede565b6020808252600b908201526a139bdd08185b1b1bddd95960aa1b604082015260600190565b600060208284031215611f3e57600080fd5b5051919050565b600060208284031215611f5757600080fd5b8151611a5e81611d5f565b634e487b7160e01b600052603260045260246000fd5b600060018201611f8a57611f8a611ede565b5060010190565b80820281158282048414176107b8576107b8611ede565b600082611fc557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107b8576107b8611ede565b60006020828403121561207757600080fd5b8151611a5e81611c77565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120d25784516001600160a01b0316835293830193918301916001016120ad565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122090d4c29a451696430ac73434863680f5e049a9df1742dc68f525a7069db4a37a64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063751039fc1161012e578063c8c8ebe4116100ab578063e2f456051161006f578063e2f456051461069c578063f2fde38b146106b2578063f5648a4f146106d2578063f6b20c3b146106e7578063f8b45b05146106fc57600080fd5b8063c8c8ebe41461061b578063c9567bf914610631578063d257b34f14610646578063d85ba06314610666578063dd62ed3e1461067c57600080fd5b806395d89b41116100f257806395d89b411461058c578063a457c2d7146105a1578063a9059cbb146105c1578063bbc0c742146105e1578063c0246668146105fb57600080fd5b8063751039fc146105045780637571336a1461051957806389775912146105395780638a8c523c146105595780638da5cb5b1461056e57600080fd5b806349bd5a5e116101bc5780636a486a8e116101805780636a486a8e1461045c5780636ddd17131461047257806370a0823114610491578063715018a6146104c757806374086a9c146104dc57600080fd5b806349bd5a5e1461039a5780634b4fbbcf146103ce5780634fbee193146103e35780635ffc35ed1461041c5780636a092e791461043c57600080fd5b80631cb2ad8e116102035780631cb2ad8e1461030657806323b872dd1461032857806327c8f83514610348578063313ce5671461035e578063395093511461037a57600080fd5b806306fdde0314610240578063095ea7b31461026b5780631694505e1461029b57806318160ddd146102e757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610712565b6040516102629190611c29565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611c9c565b6107a4565b6040519015158152602001610262565b3480156102a757600080fd5b506102cf7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156102f357600080fd5b506002545b604051908152602001610262565b34801561031257600080fd5b50610326610321366004611cc8565b6107be565b005b34801561033457600080fd5b5061028b610343366004611ce5565b610865565b34801561035457600080fd5b506102cf61dead81565b34801561036a57600080fd5b5060405160128152602001610262565b34801561038657600080fd5b5061028b610395366004611c9c565b610889565b3480156103a657600080fd5b506102cf7f000000000000000000000000bcc35e938d1c5b5f8a7a8992941112cc5fe2c6d581565b3480156103da57600080fd5b506103266108ab565b3480156103ef57600080fd5b5061028b6103fe366004611cc8565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561042857600080fd5b506006546102cf906001600160a01b031681565b34801561044857600080fd5b5061028b610457366004611d26565b6108bf565b34801561046857600080fd5b506102f8600c5481565b34801561047e57600080fd5b50600a5461028b90610100900460ff1681565b34801561049d57600080fd5b506102f86104ac366004611cc8565b6001600160a01b031660009081526020819052604090205490565b3480156104d357600080fd5b506103266109d6565b3480156104e857600080fd5b506102cf7391364516d3cad16e1666261dbdbb39c881dbe9ee81565b34801561051057600080fd5b506103266109ea565b34801561052557600080fd5b50610326610534366004611d6d565b610a22565b34801561054557600080fd5b50610326610554366004611db1565b610a55565b34801561056557600080fd5b50610326610b75565b34801561057a57600080fd5b506005546001600160a01b03166102cf565b34801561059857600080fd5b50610255610b8e565b3480156105ad57600080fd5b5061028b6105bc366004611c9c565b610b9d565b3480156105cd57600080fd5b5061028b6105dc366004611c9c565b610c18565b3480156105ed57600080fd5b50600a5461028b9060ff1681565b34801561060757600080fd5b50610326610616366004611d6d565b610c26565b34801561062757600080fd5b506102f860075481565b34801561063d57600080fd5b50610326610c8d565b34801561065257600080fd5b5061028b610661366004611e8b565b610ca1565b34801561067257600080fd5b506102f8600b5481565b34801561068857600080fd5b506102f8610697366004611d26565b610e04565b3480156106a857600080fd5b506102f860085481565b3480156106be57600080fd5b506103266106cd366004611cc8565b610e2f565b3480156106de57600080fd5b50610326610ea8565b3480156106f357600080fd5b50610326610f14565b34801561070857600080fd5b506102f860095481565b60606003805461072190611ea4565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90611ea4565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b6000336107b2818585610f4a565b60019150505b92915050565b6107c661106e565b6001600160a01b0381166108145760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064015b60405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560405191169182917fba4c07c66e8c418c52a13df6cd574e75ebbb665da5b744986e878ac498551bca90600090a35050565b6000336108738582856110c8565b61087e85858561113c565b506001949350505050565b6000336107b281858561089c8383610e04565b6108a69190611ef4565b610f4a565b6108b361106e565b6063600b819055600c55565b6006546000906001600160a01b031633146108ec5760405162461bcd60e51b815260040161080b90611f07565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109579190611f2c565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce9190611f45565b949350505050565b6109de61106e565b6109e86000611866565b565b6006546001600160a01b03163314610a145760405162461bcd60e51b815260040161080b90611f07565b600254600955600254600755565b610a2a61106e565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610a5d61106e565b600a8211610aad5760405162461bcd60e51b815260206004820152601d60248201527f6d6178207478206d757374206265206d6f7265207468616e20302e3125000000604482015260640161080b565b600a8311610b075760405162461bcd60e51b815260206004820152602160248201527f6d61782077616c6c6574206d757374206265206d6f7265207468616e20302e316044820152602560f81b606482015260840161080b565b60005b8151811015610b6f576001600f6000848481518110610b2b57610b2b611f62565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b6781611f78565b915050610b0a565b50505050565b610b7d61106e565b600a805461ffff1916610101179055565b60606004805461072190611ea4565b60003381610bab8286610e04565b905083811015610c0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161080b565b61087e8286868403610f4a565b6000336107b281858561113c565b610c2e61106e565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c9561106e565b6003600b819055600c55565b6006546000906001600160a01b03163314610cce5760405162461bcd60e51b815260040161080b90611f07565b620186a0610cdb60025490565b610ce6906001611f91565b610cf09190611fa8565b821015610d655760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161080b565b6103e8610d7160025490565b610d7c906005611f91565b610d869190611fa8565b821115610dfb5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000606482015260840161080b565b50600855600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e3761106e565b6001600160a01b038116610e9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080b565b610ea581611866565b50565b6006546001600160a01b03163314610ed25760405162461bcd60e51b815260040161080b90611f07565b604051600090339047908381818185875af1925050503d8060008114610b6f576040519150601f19603f3d011682016040523d82523d6000602084013e610b6f565b6006546001600160a01b03163314610f3e5760405162461bcd60e51b815260040161080b90611f07565b6000600b819055600c55565b6001600160a01b038316610fac5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080b565b6001600160a01b03821661100d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161080b565b60006110d48484610e04565b90506000198114610b6f578181101561112f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161080b565b610b6f8484848403610f4a565b6001600160a01b0383166111625760405162461bcd60e51b815260040161080b90611fca565b6001600160a01b0382166111885760405162461bcd60e51b815260040161080b9061200f565b8015806111ad57506001600160a01b0383166000908152600f602052604090205460ff165b806111d057506001600160a01b0382166000908152600f602052604090205460ff165b156111e5576111e08383836118b8565b505050565b6005546001600160a01b0384811691161480159061121157506005546001600160a01b03838116911614155b801561122557506001600160a01b03821615155b801561123c57506001600160a01b03821661dead14155b80156112525750600654600160a01b900460ff16155b1561157557600a5460ff166112ec576001600160a01b0383166000908152600d602052604090205460ff16806112a057506001600160a01b0382166000908152600d602052604090205460ff165b6112ec5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e000000604482015260640161080b565b6001600160a01b03831660009081526010602052604090205460ff16801561132d57506001600160a01b0382166000908152600e602052604090205460ff16155b15611423576007548111156113aa5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000606482015260840161080b565b6009546001600160a01b0383166000908152602081905260409020546113d09083611ef4565b111561141e5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161080b565b611575565b6001600160a01b03821660009081526010602052604090205460ff16801561146457506001600160a01b0383166000908152600e602052604090205460ff16155b156114e15760075481111561141e5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000606482015260840161080b565b6001600160a01b0382166000908152600e602052604090205460ff16611575576009546001600160a01b0383166000908152602081905260409020546115279083611ef4565b11156115755760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161080b565b30600090815260208190526040902054600854811080159081906115a05750600a54610100900460ff165b80156115b65750600654600160a01b900460ff16155b80156115db57506001600160a01b03851660009081526010602052604090205460ff16155b801561160057506001600160a01b0385166000908152600d602052604090205460ff16155b801561162557506001600160a01b0384166000908152600d602052604090205460ff16155b15611653576006805460ff60a01b1916600160a01b1790556116456119ac565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152600d602052604090205460ff600160a01b9092048216159116806116a157506001600160a01b0385166000908152600d602052604090205460ff165b156116aa575060005b60008115611772576001600160a01b03861660009081526010602052604090205460ff1680156116dc57506000600c54115b156117085761170160646116fb600c5488611a5290919063ffffffff16565b90611a65565b9050611754565b6001600160a01b03871660009081526010602052604090205460ff16801561173257506000600b54115b156117545761175160646116fb600b5488611a5290919063ffffffff16565b90505b8015611765576117658730836118b8565b61176f8186612052565b94505b61177d8787876118b8565b6001600160a01b03871660009081526010602052604090205460ff16806117b157506005546001600160a01b038881169116145b1561180f576040518581526001600160a01b038716907391364516d3cad16e1666261dbdbb39c881dbe9ee907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361185d565b856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161185491815260200190565b60405180910390a35b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118de5760405162461bcd60e51b815260040161080b90611fca565b6001600160a01b0382166119045760405162461bcd60e51b815260040161080b9061200f565b6001600160a01b0383166000908152602081905260409020548181101561197c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161080b565b6001600160a01b038085166000908152602081905260408082208585039055918516815220805483019055610b6f565b30600090815260208190526040812054908181036119c8575050565b6008546119d690600a611f91565b8211156119ee576008546119eb90600a611f91565b91505b816119f881611a71565b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611a45576040519150601f19603f3d011682016040523d82523d6000602084013e611a4a565b606091505b505050505050565b6000611a5e8284611f91565b9392505050565b6000611a5e8284611fa8565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa657611aa6611f62565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b489190612065565b81600181518110611b5b57611b5b611f62565b60200260200101906001600160a01b031690816001600160a01b031681525050611ba6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f4a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611bfb908590600090869030904290600401612082565b600060405180830381600087803b158015611c1557600080fd5b505af1158015611a4a573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c5657858101830151858201604001528201611c3a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ea557600080fd5b8035611c9781611c77565b919050565b60008060408385031215611caf57600080fd5b8235611cba81611c77565b946020939093013593505050565b600060208284031215611cda57600080fd5b8135611a5e81611c77565b600080600060608486031215611cfa57600080fd5b8335611d0581611c77565b92506020840135611d1581611c77565b929592945050506040919091013590565b60008060408385031215611d3957600080fd5b8235611d4481611c77565b91506020830135611d5481611c77565b809150509250929050565b8015158114610ea557600080fd5b60008060408385031215611d8057600080fd5b8235611d8b81611c77565b91506020830135611d5481611d5f565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215611dc657600080fd5b833592506020808501359250604085013567ffffffffffffffff80821115611ded57600080fd5b818701915087601f830112611e0157600080fd5b813581811115611e1357611e13611d9b565b8060051b604051601f19603f83011681018181108582111715611e3857611e38611d9b565b60405291825284820192508381018501918a831115611e5657600080fd5b938501935b82851015611e7b57611e6c85611c8c565b84529385019392850192611e5b565b8096505050505050509250925092565b600060208284031215611e9d57600080fd5b5035919050565b600181811c90821680611eb857607f821691505b602082108103611ed857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b8576107b8611ede565b6020808252600b908201526a139bdd08185b1b1bddd95960aa1b604082015260600190565b600060208284031215611f3e57600080fd5b5051919050565b600060208284031215611f5757600080fd5b8151611a5e81611d5f565b634e487b7160e01b600052603260045260246000fd5b600060018201611f8a57611f8a611ede565b5060010190565b80820281158282048414176107b8576107b8611ede565b600082611fc557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107b8576107b8611ede565b60006020828403121561207757600080fd5b8151611a5e81611c77565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120d25784516001600160a01b0316835293830193918301916001016120ad565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122090d4c29a451696430ac73434863680f5e049a9df1742dc68f525a7069db4a37a64736f6c63430008130033

Deployed Bytecode Sourcemap

37890:10246:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9763:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12264:242;;;;;;;;;;-1:-1:-1;12264:242:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;12264:242:0;1162:187:1;37963:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1545:32:1;;;1527:51;;1515:2;1500:18;37963:51:0;1354:230:1;10892:108:0;;;;;;;;;;-1:-1:-1;10980:12:0;;10892:108;;;1735:25:1;;;1723:2;1708:18;10892:108:0;1589:177:1;42382:244:0;;;;;;;;;;-1:-1:-1;42382:244:0;;;;;:::i;:::-;;:::i;:::-;;13086:295;;;;;;;;;;-1:-1:-1;13086:295:0;;;;;:::i;:::-;;:::i;38066:53::-;;;;;;;;;;;;38112:6;38066:53;;10734:93;;;;;;;;;;-1:-1:-1;10734:93:0;;10817:2;2834:36:1;;2822:2;2807:18;10734:93:0;2692:184:1;13790:270:0;;;;;;;;;;-1:-1:-1;13790:270:0;;;;;:::i;:::-;;:::i;38021:38::-;;;;;;;;;;;;;;;40419:104;;;;;;;;;;;;;:::i;43266:126::-;;;;;;;;;;-1:-1:-1;43266:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;43356:28:0;43332:4;43356:28;;;:19;:28;;;;;;;;;43266:126;38217:18;;;;;;;;;;-1:-1:-1;38217:18:0;;;;-1:-1:-1;;;;;38217:18:0;;;43400:294;;;;;;;;;;-1:-1:-1;43400:294:0;;;;;:::i;:::-;;:::i;38503:28::-;;;;;;;;;;;;;;;;38429:31;;;;;;;;;;-1:-1:-1;38429:31:0;;;;;;;;;;;11063:177;;;;;;;;;;-1:-1:-1;11063:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11214:18:0;11182:7;11214:18;;;;;;;;;;;;11063:177;3143:103;;;;;;;;;;;;;:::i;38126:84::-;;;;;;;;;;;;38167:42;38126:84;;40812:185;;;;;;;;;;;;;:::i;41761:167::-;;;;;;;;;;-1:-1:-1;41761:167:0;;;;;:::i;:::-;;:::i;41936:438::-;;;;;;;;;;-1:-1:-1;41936:438:0;;;;;:::i;:::-;;:::i;40531:112::-;;;;;;;;;;;;;:::i;2502:87::-;;;;;;;;;;-1:-1:-1;2575:6:0;;-1:-1:-1;;;;;2575:6:0;2502:87;;9982:104;;;;;;;;;;;;;:::i;14563:505::-;;;;;;;;;;-1:-1:-1;14563:505:0;;;;;:::i;:::-;;:::i;11446:234::-;;;;;;;;;;-1:-1:-1;11446:234:0;;;;;:::i;:::-;;:::i;38389:33::-;;;;;;;;;;-1:-1:-1;38389:33:0;;;;;;;;42634:182;;;;;;;;;;-1:-1:-1;42634:182:0;;;;;:::i;:::-;;:::i;38274:35::-;;;;;;;;;;;;;;;;40667:105;;;;;;;;;;;;;:::i;41200:553::-;;;;;;;;;;-1:-1:-1;41200:553:0;;;;;:::i;:::-;;:::i;38469:27::-;;;;;;;;;;;;;;;;11743:201;;;;;;;;;;-1:-1:-1;11743:201:0;;;;;:::i;:::-;;:::i;38316:33::-;;;;;;;;;;;;;;;;3401:238;;;;;;;;;;-1:-1:-1;3401:238:0;;;;;:::i;:::-;;:::i;42828:234::-;;;;;;;;;;;;;:::i;41037:155::-;;;;;;;;;;;;;:::i;38356:24::-;;;;;;;;;;;;;;;;9763:100;9817:13;9850:5;9843:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9763:100;:::o;12264:242::-;12383:4;1127:10;12444:32;1127:10;12460:7;12469:6;12444:8;:32::i;:::-;12494:4;12487:11;;;12264:242;;;;;:::o;42382:244::-;2388:13;:11;:13::i;:::-;-1:-1:-1;;;;;42482:18:0;::::1;42474:47;;;::::0;-1:-1:-1;;;42474:47:0;;5950:2:1;42474:47:0::1;::::0;::::1;5932:21:1::0;5989:2;5969:18;;;5962:30;-1:-1:-1;;;6008:18:1;;;6001:46;6064:18;;42474:47:0::1;;;;;;;;;42552:3;::::0;;-1:-1:-1;;;;;42566:10:0;;::::1;-1:-1:-1::0;;;;;;42566:10:0;::::1;::::0;::::1;::::0;;;42592:26:::1;::::0;42552:3;::::1;::::0;;;42592:26:::1;::::0;42532:17:::1;::::0;42592:26:::1;42463:163;42382:244:::0;:::o;13086:295::-;13217:4;1127:10;13275:38;13291:4;1127:10;13306:6;13275:15;:38::i;:::-;13324:27;13334:4;13340:2;13344:6;13324:9;:27::i;:::-;-1:-1:-1;13369:4:0;;13086:295;-1:-1:-1;;;;13086:295:0:o;13790:270::-;13905:4;1127:10;13966:64;1127:10;13982:7;14019:10;13991:25;1127:10;13982:7;13991:9;:25::i;:::-;:38;;;;:::i;:::-;13966:8;:64::i;40419:104::-;2388:13;:11;:13::i;:::-;40484:2:::1;40469:12;:17:::0;;;40497:13:::1;:18:::0;40419:104::o;43400:294::-;43524:3;;43471:10;;-1:-1:-1;;;;;43524:3:0;43502:10;:26;43494:50;;;;-1:-1:-1;;;43494:50:0;;;;;;;:::i;:::-;43582:39;;-1:-1:-1;;;43582:39:0;;43615:4;43582:39;;;1527:51:1;43555:24:0;;-1:-1:-1;;;;;43582:24:0;;;;;1500:18:1;;43582:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43640:46;;-1:-1:-1;;;43640:46:0;;-1:-1:-1;;;;;7076:32:1;;;43640:46:0;;;7058:51:1;7125:18;;;7118:34;;;43555:66:0;;-1:-1:-1;43640:23:0;;;;;;7031:18:1;;43640:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43632:54;43400:294;-1:-1:-1;;;;43400:294:0:o;3143:103::-;2388:13;:11;:13::i;:::-;3208:30:::1;3235:1;3208:18;:30::i;:::-;3143:103::o:0;40812:185::-;40886:3;;-1:-1:-1;;;;;40886:3:0;40864:10;:26;40856:50;;;;-1:-1:-1;;;40856:50:0;;;;;;;:::i;:::-;10980:12;;40917:9;:25;10980:12;;40953:20;:36;40812:185::o;41761:167::-;2388:13;:11;:13::i;:::-;-1:-1:-1;;;;;41874:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41874:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41761:167::o;41936:438::-;2388:13;:11;:13::i;:::-;42081:2:::1;42057:21;:26;42049:68;;;::::0;-1:-1:-1;;;42049:68:0;;7615:2:1;42049:68:0::1;::::0;::::1;7597:21:1::0;7654:2;7634:18;;;7627:30;7693:31;7673:18;;;7666:59;7742:18;;42049:68:0::1;7413:353:1::0;42049:68:0::1;42149:2;42136:10;:15;42128:61;;;::::0;-1:-1:-1;;;42128:61:0;;7973:2:1;42128:61:0::1;::::0;::::1;7955:21:1::0;8012:2;7992:18;;;7985:30;8051:34;8031:18;;;8024:62;-1:-1:-1;;;8102:18:1;;;8095:31;8143:19;;42128:61:0::1;7771:397:1::0;42128:61:0::1;42294:9;42290:77;42313:2;:9;42309:1;:13;42290:77;;;42360:4;42330:20;:27;42351:2;42354:1;42351:5;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42330:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;42330:27:0;:34;;-1:-1:-1;;42330:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42324:3;::::1;::::0;::::1;:::i;:::-;;;;42290:77;;;;41936:438:::0;;;:::o;40531:112::-;2388:13;:11;:13::i;:::-;40586::::1;:20:::0;;-1:-1:-1;;40617:18:0;;;;;40531:112::o;9982:104::-;10038:13;10071:7;10064:14;;;;;:::i;14563:505::-;14683:4;1127:10;14683:4;14771:25;1127:10;14788:7;14771:9;:25::i;:::-;14744:52;;14849:15;14829:16;:35;;14807:122;;;;-1:-1:-1;;;14807:122:0;;8647:2:1;14807:122:0;;;8629:21:1;8686:2;8666:18;;;8659:30;8725:34;8705:18;;;8698:62;-1:-1:-1;;;8776:18:1;;;8769:35;8821:19;;14807:122:0;8445:401:1;14807:122:0;14965:60;14974:5;14981:7;15009:15;14990:16;:34;14965:8;:60::i;11446:234::-;11561:4;1127:10;11622:28;1127:10;11639:2;11643:6;11622:9;:28::i;42634:182::-;2388:13;:11;:13::i;:::-;-1:-1:-1;;;;;42719:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;42719:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42774:34;;1302:41:1;;;42774:34:0::1;::::0;1275:18:1;42774:34:0::1;;;;;;;42634:182:::0;;:::o;40667:105::-;2388:13;:11;:13::i;:::-;40735:1:::1;40720:12;:16:::0;;;40747:13:::1;:17:::0;40667:105::o;41200:553::-;41341:3;;41289:4;;-1:-1:-1;;;;;41341:3:0;41319:10;:26;41311:50;;;;-1:-1:-1;;;41311:50:0;;;;;;;:::i;:::-;41429:6;41408:13;10980:12;;;10892:108;41408:13;:17;;41424:1;41408:17;:::i;:::-;41407:28;;;;:::i;:::-;41394:9;:41;;41372:151;;;;-1:-1:-1;;;41372:151:0;;9448:2:1;41372:151:0;;;9430:21:1;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;9597:30;9577:18;;;9570:58;9645:19;;41372:151:0;9246:424:1;41372:151:0;41591:4;41570:13;10980:12;;;10892:108;41570:13;:17;;41586:1;41570:17;:::i;:::-;41569:26;;;;:::i;:::-;41556:9;:39;;41534:148;;;;-1:-1:-1;;;41534:148:0;;9877:2:1;41534:148:0;;;9859:21:1;9916:2;9896:18;;;9889:30;9955:34;9935:18;;;9928:62;10026:29;10006:18;;;9999:57;10073:19;;41534:148:0;9675:423:1;41534:148:0;-1:-1:-1;41693:18:0;:30;41741:4;;41200:553::o;11743:201::-;-1:-1:-1;;;;;11909:18:0;;;11877:7;11909:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11743:201::o;3401:238::-;2388:13;:11;:13::i;:::-;-1:-1:-1;;;;;3504:22:0;::::1;3482:110;;;::::0;-1:-1:-1;;;3482:110:0;;10305:2:1;3482:110:0::1;::::0;::::1;10287:21:1::0;10344:2;10324:18;;;10317:30;10383:34;10363:18;;;10356:62;-1:-1:-1;;;10434:18:1;;;10427:36;10480:19;;3482:110:0::1;10103:402:1::0;3482:110:0::1;3603:28;3622:8;3603:18;:28::i;:::-;3401:238:::0;:::o;42828:234::-;42904:3;;-1:-1:-1;;;;;42904:3:0;42882:10;:26;42874:50;;;;-1:-1:-1;;;42874:50:0;;;;;;;:::i;:::-;42972:82;;42935:12;;42980:10;;43004:21;;42935:12;42972:82;42935:12;42972:82;43004:21;42980:10;42972:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41037:155;41109:3;;-1:-1:-1;;;;;41109:3:0;41087:10;:26;41079:50;;;;-1:-1:-1;;;41079:50:0;;;;;;;:::i;:::-;41155:1;41140:12;:16;;;41167:13;:17;41037:155::o;18607:380::-;-1:-1:-1;;;;;18743:19:0;;18735:68;;;;-1:-1:-1;;;18735:68:0;;10922:2:1;18735:68:0;;;10904:21:1;10961:2;10941:18;;;10934:30;11000:34;10980:18;;;10973:62;-1:-1:-1;;;11051:18:1;;;11044:34;11095:19;;18735:68:0;10720:400:1;18735:68:0;-1:-1:-1;;;;;18822:21:0;;18814:68;;;;-1:-1:-1;;;18814:68:0;;11327:2:1;18814:68:0;;;11309:21:1;11366:2;11346:18;;;11339:30;11405:34;11385:18;;;11378:62;-1:-1:-1;;;11456:18:1;;;11449:32;11498:19;;18814:68:0;11125:398:1;18814:68:0;-1:-1:-1;;;;;18895:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18947:32;;1735:25:1;;;18947:32:0;;1708:18:1;18947:32:0;;;;;;;18607:380;;;:::o;2667:132::-;2575:6;;-1:-1:-1;;;;;2575:6:0;1127:10;2731:23;2723:68;;;;-1:-1:-1;;;2723:68:0;;11730:2:1;2723:68:0;;;11712:21:1;;;11749:18;;;11742:30;11808:34;11788:18;;;11781:62;11860:18;;2723:68:0;11528:356:1;19278:502:0;19413:24;19440:25;19450:5;19457:7;19440:9;:25::i;:::-;19413:52;;-1:-1:-1;;19480:16:0;:37;19476:297;;19580:6;19560:16;:26;;19534:117;;;;-1:-1:-1;;;19534:117:0;;12091:2:1;19534:117:0;;;12073:21:1;12130:2;12110:18;;;12103:30;12169:31;12149:18;;;12142:59;12218:18;;19534:117:0;11889:353:1;19534:117:0;19695:51;19704:5;19711:7;19739:6;19720:16;:25;19695:8;:51::i;43703:3389::-;-1:-1:-1;;;;;43835:18:0;;43827:68;;;;-1:-1:-1;;;43827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43914:16:0;;43906:64;;;;-1:-1:-1;;;43906:64:0;;;;;;;:::i;:::-;43985:11;;;:41;;-1:-1:-1;;;;;;44000:26:0;;;;;;:20;:26;;;;;;;;43985:41;:69;;;-1:-1:-1;;;;;;44030:24:0;;;;;;:20;:24;;;;;;;;43985:69;43981:156;;;44071:33;44087:4;44093:2;44097:6;44071:15;:33::i;:::-;43703:3389;;;:::o;43981:156::-;2575:6;;-1:-1:-1;;;;;44167:15:0;;;2575:6;;44167:15;;;;:45;;-1:-1:-1;2575:6:0;;-1:-1:-1;;;;;44199:13:0;;;2575:6;;44199:13;;44167:45;:78;;;;-1:-1:-1;;;;;;44229:16:0;;;;44167:78;:112;;;;-1:-1:-1;;;;;;44262:17:0;;38112:6;44262:17;;44167:112;:138;;;;-1:-1:-1;44297:8:0;;-1:-1:-1;;;44297:8:0;;;;44296:9;44167:138;44149:1525;;;44337:13;;;;44332:210;;-1:-1:-1;;;;;44401:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44430:23:0;;;;;;:19;:23;;;;;;;;44401:52;44371:155;;;;-1:-1:-1;;;44371:155:0;;13259:2:1;44371:155:0;;;13241:21:1;13298:2;13278:18;;;13271:30;13337:31;13317:18;;;13310:59;13386:18;;44371:155:0;13057:353:1;44371:155:0;-1:-1:-1;;;;;44604:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;44657:35:0;;;;;;:31;:35;;;;;;;;44656:36;44604:88;44582:1067;;;44767:20;;44757:6;:30;;44727:164;;;;-1:-1:-1;;;44727:164:0;;13617:2:1;44727:164:0;;;13599:21:1;13656:2;13636:18;;;13629:30;13695:34;13675:18;;;13668:62;13766:30;13746:18;;;13739:58;13814:19;;44727:164:0;13415:424:1;44727:164:0;44966:9;;-1:-1:-1;;;;;11214:18:0;;11182:7;11214:18;;;;;;;;;;;44940:22;;:6;:22;:::i;:::-;:35;;44910:135;;;;-1:-1:-1;;;44910:135:0;;14046:2:1;44910:135:0;;;14028:21:1;14085:2;14065:18;;;14058:30;14124:28;14104:18;;;14097:56;14170:18;;44910:135:0;13844:350:1;44910:135:0;44582:1067;;;-1:-1:-1;;;;;45127:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;45178:37:0;;;;;;:31;:37;;;;;;;;45177:38;45127:88;45105:544;;;45290:20;;45280:6;:30;;45250:165;;;;-1:-1:-1;;;45250:165:0;;14401:2:1;45250:165:0;;;14383:21:1;14440:2;14420:18;;;14413:30;14479:34;14459:18;;;14452:62;14550:31;14530:18;;;14523:59;14599:19;;45250:165:0;14199:425:1;45105:544:0;-1:-1:-1;;;;;45442:35:0;;;;;;:31;:35;;;;;;;;45437:212;;45554:9;;-1:-1:-1;;;;;11214:18:0;;11182:7;11214:18;;;;;;;;;;;45528:22;;:6;:22;:::i;:::-;:35;;45498:135;;;;-1:-1:-1;;;45498:135:0;;14046:2:1;45498:135:0;;;14028:21:1;14085:2;14065:18;;;14058:30;14124:28;14104:18;;;14097:56;14170:18;;45498:135:0;13844:350:1;45498:135:0;45735:4;45686:28;11214:18;;;;;;;;;;;45793;;45769:42;;;;;;;45842:35;;-1:-1:-1;45866:11:0;;;;;;;45842:35;:61;;;;-1:-1:-1;45895:8:0;;-1:-1:-1;;;45895:8:0;;;;45894:9;45842:61;:110;;;;-1:-1:-1;;;;;;45921:31:0;;;;;;:25;:31;;;;;;;;45920:32;45842:110;:153;;;;-1:-1:-1;;;;;;45970:25:0;;;;;;:19;:25;;;;;;;;45969:26;45842:153;:194;;;;-1:-1:-1;;;;;;46013:23:0;;;;;;:19;:23;;;;;;;;46012:24;45842:194;45824:326;;;46063:8;:15;;-1:-1:-1;;;;46063:15:0;-1:-1:-1;;;46063:15:0;;;46095:10;:8;:10::i;:::-;46122:8;:16;;-1:-1:-1;;;;46122:16:0;;;45824:326;46178:8;;-1:-1:-1;;;;;46203:25:0;;46162:12;46203:25;;;:19;:25;;;;;;46178:8;-1:-1:-1;;;46178:8:0;;;;;46177:9;;46203:25;;:52;;-1:-1:-1;;;;;;46232:23:0;;;;;;:19;:23;;;;;;;;46203:52;46199:100;;;-1:-1:-1;46282:5:0;46199:100;46311:12;46344:7;46340:507;;;-1:-1:-1;;;;;46396:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46445:1;46429:13;;:17;46396:50;46392:306;;;46474:34;46504:3;46474:25;46485:13;;46474:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;46467:41;;46392:306;;;-1:-1:-1;;;;;46570:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46620:1;46605:12;;:16;46570:51;46566:132;;;46649:33;46678:3;46649:24;46660:12;;46649:6;:10;;:24;;;;:::i;:33::-;46642:40;;46566:132;46718:8;;46714:91;;46747:42;46763:4;46777;46784;46747:15;:42::i;:::-;46821:14;46831:4;46821:14;;:::i;:::-;;;46340:507;46859:33;46875:4;46881:2;46885:6;46859:15;:33::i;:::-;-1:-1:-1;;;;;46909:31:0;;;;;;:25;:31;;;;;;;;;:50;;-1:-1:-1;2575:6:0;;-1:-1:-1;;;;;46944:15:0;;;2575:6;;46944:15;46909:50;46905:180;;;46981:28;;1735:25:1;;;-1:-1:-1;;;;;46981:28:0;;;38167:42;;46981:28;;1723:2:1;1708:18;46981:28:0;;;;;;;46905:180;;;47062:2;-1:-1:-1;;;;;47047:26:0;47056:4;-1:-1:-1;;;;;47047:26:0;;47066:6;47047:26;;;;1735:25:1;;1723:2;1708:18;;1589:177;47047:26:0;;;;;;;;46905:180;43816:3276;;;;43703:3389;;;:::o;3799:191::-;3892:6;;;-1:-1:-1;;;;;3909:17:0;;;-1:-1:-1;;;;;;3909:17:0;;;;;;;3942:40;;3892:6;;;3909:17;3892:6;;3942:40;;3873:16;;3942:40;3862:128;3799:191;:::o;15538:841::-;-1:-1:-1;;;;;15669:18:0;;15661:68;;;;-1:-1:-1;;;15661:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15748:16:0;;15740:64;;;;-1:-1:-1;;;15740:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15890:15:0;;15868:19;15890:15;;;;;;;;;;;15938:21;;;;15916:109;;;;-1:-1:-1;;;15916:109:0;;14964:2:1;15916:109:0;;;14946:21:1;15003:2;14983:18;;;14976:30;15042:34;15022:18;;;15015:62;-1:-1:-1;;;15093:18:1;;;15086:36;15139:19;;15916:109:0;14762:402:1;15916:109:0;-1:-1:-1;;;;;16061:15:0;;;:9;:15;;;;;;;;;;;16079:20;;;16061:38;;16279:13;;;;;;:23;;;;;;16334:37;43703:3389;47609:524;47692:4;47648:23;11214:18;;;;;;;;;;;;47738:20;;;47734:59;;47775:7;;47609:524::o;47734:59::-;47827:18;;:23;;47848:2;47827:23;:::i;:::-;47809:15;:41;47805:115;;;47885:18;;:23;;47906:2;47885:23;:::i;:::-;47867:41;;47805:115;47961:15;47987:36;47961:15;47987:16;:36::i;:::-;48058:3;;48050:75;;-1:-1:-1;;;;;48058:3:0;;;;48075:21;;48050:75;;;;48075:21;48058:3;48050:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;47609:524:0:o;24955:98::-;25013:7;25040:5;25044:1;25040;:5;:::i;:::-;25033:12;24955:98;-1:-1:-1;;;24955:98:0:o;25354:::-;25412:7;25439:5;25443:1;25439;:5;:::i;47100:501::-;47190:16;;;47204:1;47190:16;;;;;;;;47166:21;;47190:16;;;;;;;;;;-1:-1:-1;47190:16:0;47166:40;;47235:4;47217;47222:1;47217:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47217:23:0;;;-1:-1:-1;;;;;47217:23:0;;;;;47261:15;-1:-1:-1;;;;;47261:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47251:4;47256:1;47251:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47251:32:0;;;-1:-1:-1;;;;;47251:32:0;;;;;47296:62;47313:4;47328:15;47346:11;47296:8;:62::i;:::-;47397:196;;-1:-1:-1;;;47397:196:0;;-1:-1:-1;;;;;47397:15:0;:66;;;;:196;;47478:11;;47504:1;;47520:4;;47547;;47567:15;;47397:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1771:247::-;1830:6;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1938:9;1925:23;1957:31;1982:5;1957:31;:::i;2023:456::-;2100:6;2108;2116;2169:2;2157:9;2148:7;2144:23;2140:32;2137:52;;;2185:1;2182;2175:12;2137:52;2224:9;2211:23;2243:31;2268:5;2243:31;:::i;:::-;2293:5;-1:-1:-1;2350:2:1;2335:18;;2322:32;2363:33;2322:32;2363:33;:::i;:::-;2023:456;;2415:7;;-1:-1:-1;;;2469:2:1;2454:18;;;;2441:32;;2023:456::o;2881:388::-;2949:6;2957;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:31;3109:5;3084:31;:::i;:::-;3134:5;-1:-1:-1;3191:2:1;3176:18;;3163:32;3204:33;3163:32;3204:33;:::i;:::-;3256:7;3246:17;;;2881:388;;;;;:::o;3274:118::-;3360:5;3353:13;3346:21;3339:5;3336:32;3326:60;;3382:1;3379;3372:12;3397:382;3462:6;3470;3523:2;3511:9;3502:7;3498:23;3494:32;3491:52;;;3539:1;3536;3529:12;3491:52;3578:9;3565:23;3597:31;3622:5;3597:31;:::i;:::-;3647:5;-1:-1:-1;3704:2:1;3689:18;;3676:32;3717:30;3676:32;3717:30;:::i;3784:127::-;3845:10;3840:3;3836:20;3833:1;3826:31;3876:4;3873:1;3866:15;3900:4;3897:1;3890:15;3916:1257;4018:6;4026;4034;4087:2;4075:9;4066:7;4062:23;4058:32;4055:52;;;4103:1;4100;4093:12;4055:52;4139:9;4126:23;4116:33;;4168:2;4217;4206:9;4202:18;4189:32;4179:42;;4272:2;4261:9;4257:18;4244:32;4295:18;4336:2;4328:6;4325:14;4322:34;;;4352:1;4349;4342:12;4322:34;4390:6;4379:9;4375:22;4365:32;;4435:7;4428:4;4424:2;4420:13;4416:27;4406:55;;4457:1;4454;4447:12;4406:55;4493:2;4480:16;4515:2;4511;4508:10;4505:36;;;4521:18;;:::i;:::-;4567:2;4564:1;4560:10;4599:2;4593:9;4662:2;4658:7;4653:2;4649;4645:11;4641:25;4633:6;4629:38;4717:6;4705:10;4702:22;4697:2;4685:10;4682:18;4679:46;4676:72;;;4728:18;;:::i;:::-;4764:2;4757:22;4814:18;;;4848:15;;;;-1:-1:-1;4890:11:1;;;4886:20;;;4918:19;;;4915:39;;;4950:1;4947;4940:12;4915:39;4974:11;;;;4994:148;5010:6;5005:3;5002:15;4994:148;;;5076:23;5095:3;5076:23;:::i;:::-;5064:36;;5027:12;;;;5120;;;;4994:148;;;5161:6;5151:16;;;;;;;;3916:1257;;;;;:::o;5178:180::-;5237:6;5290:2;5278:9;5269:7;5265:23;5261:32;5258:52;;;5306:1;5303;5296:12;5258:52;-1:-1:-1;5329:23:1;;5178:180;-1:-1:-1;5178:180:1:o;5363:380::-;5442:1;5438:12;;;;5485;;;5506:61;;5560:4;5552:6;5548:17;5538:27;;5506:61;5613:2;5605:6;5602:14;5582:18;5579:38;5576:161;;5659:10;5654:3;5650:20;5647:1;5640:31;5694:4;5691:1;5684:15;5722:4;5719:1;5712:15;5576:161;;5363:380;;;:::o;6093:127::-;6154:10;6149:3;6145:20;6142:1;6135:31;6185:4;6182:1;6175:15;6209:4;6206:1;6199:15;6225:125;6290:9;;;6311:10;;;6308:36;;;6324:18;;:::i;6355:335::-;6557:2;6539:21;;;6596:2;6576:18;;;6569:30;-1:-1:-1;;;6630:2:1;6615:18;;6608:41;6681:2;6666:18;;6355:335::o;6695:184::-;6765:6;6818:2;6806:9;6797:7;6793:23;6789:32;6786:52;;;6834:1;6831;6824:12;6786:52;-1:-1:-1;6857:16:1;;6695:184;-1:-1:-1;6695:184:1:o;7163:245::-;7230:6;7283:2;7271:9;7262:7;7258:23;7254:32;7251:52;;;7299:1;7296;7289:12;7251:52;7331:9;7325:16;7350:28;7372:5;7350:28;:::i;8173:127::-;8234:10;8229:3;8225:20;8222:1;8215:31;8265:4;8262:1;8255:15;8289:4;8286:1;8279:15;8305:135;8344:3;8365:17;;;8362:43;;8385:18;;:::i;:::-;-1:-1:-1;8432:1:1;8421:13;;8305:135::o;8851:168::-;8924:9;;;8955;;8972:15;;;8966:22;;8952:37;8942:71;;8993:18;;:::i;9024:217::-;9064:1;9090;9080:132;;9134:10;9129:3;9125:20;9122:1;9115:31;9169:4;9166:1;9159:15;9197:4;9194:1;9187:15;9080:132;-1:-1:-1;9226:9:1;;9024:217::o;12247:401::-;12449:2;12431:21;;;12488:2;12468:18;;;12461:30;12527:34;12522:2;12507:18;;12500:62;-1:-1:-1;;;12593:2:1;12578:18;;12571:35;12638:3;12623:19;;12247:401::o;12653:399::-;12855:2;12837:21;;;12894:2;12874:18;;;12867:30;12933:34;12928:2;12913:18;;12906:62;-1:-1:-1;;;12999:2:1;12984:18;;12977:33;13042:3;13027:19;;12653:399::o;14629:128::-;14696:9;;;14717:11;;;14714:37;;;14731:18;;:::i;15169:251::-;15239:6;15292:2;15280:9;15271:7;15267:23;15263:32;15260:52;;;15308:1;15305;15298:12;15260:52;15340:9;15334:16;15359:31;15384:5;15359:31;:::i;15425:980::-;15687:4;15735:3;15724:9;15720:19;15766:6;15755:9;15748:25;15792:2;15830:6;15825:2;15814:9;15810:18;15803:34;15873:3;15868:2;15857:9;15853:18;15846:31;15897:6;15932;15926:13;15963:6;15955;15948:22;16001:3;15990:9;15986:19;15979:26;;16040:2;16032:6;16028:15;16014:29;;16061:1;16071:195;16085:6;16082:1;16079:13;16071:195;;;16150:13;;-1:-1:-1;;;;;16146:39:1;16134:52;;16241:15;;;;16206:12;;;;16182:1;16100:9;16071:195;;;-1:-1:-1;;;;;;;16322:32:1;;;;16317:2;16302:18;;16295:60;-1:-1:-1;;;16386:3:1;16371:19;16364:35;16283:3;15425:980;-1:-1:-1;;;15425:980:1:o

Swarm Source

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