ETH Price: $3,462.13 (-6.72%)
 

Overview

Max Total Supply

100,000,000 SEBAS

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
449,581.986040964527108916 SEBAS

Value
$0.00
0xe01067dd036b6ae4ede9b85fbdfdd840d5a99bf2
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:
SEBAS

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-03-16
*/

/**

Telegram: https://t.me/SebasProtocolPortal
Website: https://sebas-protocol.xyz

*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

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

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyMarketingFee;
    uint256 public buyDevFee;
    bool public initialBuyFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellMarketingFee;
    uint256 public sellDevFee;
    bool public initialSellFee;

    uint256 public tokensForLiquidity;
    uint256 public tokensForMarketing;
    uint256 public tokensForDev;

    // block number of opened trading
    uint256 launchedAt;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Sebas Protocol", unicode"SEBAS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyLiquidityFee = 0;
        uint256 _buyMarketingFee = 5;
        uint256 _buyDevFee = 5;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellMarketingFee = 30;
        uint256 _sellDevFee = 25;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 5) / 1000; // 0.5% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 10) / 1000; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 50) / 100000; // 0.05% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyMarketingFee = _buyMarketingFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellMarketingFee = _sellMarketingFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee + sellDevFee;

        initialBuyFee = true;
        initialSellFee = true;

        marketingWallet = address(0xF7a86d173455a80eAa31a7b3e00808c83d64ca55); // set as marketing wallet
        devWallet = address(0x010C914e3437fC82D7624bB4a417B018D8576aCb); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        uint256 _newTotalFees = _liquidityFee + _marketingFee + _devFee;
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _marketingFee;
        buyDevFee = _devFee;
        buyTotalFees = _newTotalFees;
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        uint256 _newTotalFees = _liquidityFee + _marketingFee + _devFee;
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
        sellTotalFees = _newTotalFees;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        tokensForLiquidity = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing + tokensForDev;
        bool success;

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

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

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance - ethForMarketing;

        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        (success, ) = address(marketingWallet).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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialBuyFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSellFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166001908117909155600d805460ff191690911790553480156200003057600080fd5b506040518060400160405280600e81526020016d14d958985cc8141c9bdd1bd8dbdb60921b81525060405180604001604052806005815260200164534542415360d81b8152508160039081620000879190620007d8565b506004620000968282620007d8565b505050620000b3620000ad6200047c60201b60201c565b62000480565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d5816001620004d2565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001469190620008a4565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba9190620008a4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e9190620008a4565b6001600160a01b031660a081905262000249906001620004d2565b60a051620002599060016200054c565b600060058082601e60196a52b7d2dcc80cd2e40000006103e86200027e8287620008ec565b6200028a91906200090c565b6008556103e86200029d82600a620008ec565b620002a991906200090c565b600a55620186a0620002bd826032620008ec565b620002c991906200090c565b600955600f8790556010869055601185905584620002e887896200092f565b620002f491906200092f565b600e55601484905560158390556016829055816200031384866200092f565b6200031f91906200092f565b6013556012805460ff199081166001908117909255601780549091169091179055600680546001600160a01b031990811673f7a86d173455a80eaa31a7b3e00808c83d64ca55179091556007805490911673010c914e3437fc82d7624bb4a417b018d8576acb179055620003a76200039f6005546001600160a01b031690565b6001620005a0565b600654620003c0906001600160a01b03166001620005a0565b600754620003d9906001600160a01b03166001620005a0565b620003e6306001620005a0565b620003f561dead6001620005a0565b620004146200040c6005546001600160a01b031690565b6001620004d2565b6006546200042d906001600160a01b03166001620004d2565b60075462000446906001600160a01b03166001620004d2565b62000453306001620004d2565b6200046261dead6001620004d2565b6200046e33826200064a565b505050505050505062000945565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620005215760405162461bcd60e51b815260206004820181905260248201526000805160206200318183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005eb5760405162461bcd60e51b8152602060048201819052602482015260008051602062003181833981519152604482015260640162000518565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006a25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000518565b8060026000828254620006b691906200092f565b90915550506001600160a01b03821660009081526020819052604081208054839290620006e59084906200092f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200075f57607f821691505b6020821081036200078057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200072f57600081815260208120601f850160051c81016020861015620007af5750805b601f850160051c820191505b81811015620007d057828155600101620007bb565b505050505050565b81516001600160401b03811115620007f457620007f462000734565b6200080c816200080584546200074a565b8462000786565b602080601f8311600181146200084457600084156200082b5750858301515b600019600386901b1c1916600185901b178555620007d0565b600085815260208120601f198616915b82811015620008755788860151825594840194600190910190840162000854565b5085821015620008945787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008b757600080fd5b81516001600160a01b0381168114620008cf57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009065762000906620008d6565b92915050565b6000826200092a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009065762000906620008d6565b60805160a0516127e56200099c6000396000818161059701528181610f3c015281816117f80152611e42015260008181610418015281816117ba0152818161225f01528181612318015261235401526127e56000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109fe578063f2fde38b14610a14578063f637434214610a34578063f8b45b0514610a4a57600080fd5b8063dd62ed3e1461098d578063e2f45605146109d3578063e884f260146109e957600080fd5b8063c876d0b9116100d1578063c876d0b914610927578063c8c8ebe414610941578063d257b34f14610957578063d85ba0631461097757600080fd5b8063c0246668146108c7578063c17b5b8c146108e7578063c18bc1951461090757600080fd5b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610838578063aacebbe314610858578063b62496f514610878578063bbc0c742146108a857600080fd5b80639fccce32146107ec578063a0d82dc514610802578063a457c2d71461081857600080fd5b8063924de9b7116101a0578063924de9b71461078157806395d89b41146107a15780639a7a23d6146107b65780639c3b4fdc146107d657600080fd5b80638da5cb5b1461072d5780638ea5220f1461074b578063921369131461076b57600080fd5b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106c25780637bce5a04146106e25780638095d564146106f85780638a8c523c1461071857600080fd5b8063715018a614610678578063751039fc1461068d5780637571336a146106a257600080fd5b80634fbee1931161027a5780634fbee193146105d35780636a486a8e1461060c5780636ddd17131461062257806370a082311461064257600080fd5b8063395093511461056557806349bd5a5e146105855780634a62bb65146105b957600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104ff5780632b36a6d214610515578063313ce5671461052f57806331e02e0b1461054b57600080fd5b80631f3fed8f146104a9578063203e727e146104bf57806323b872dd146104df57600080fd5b80631694505e116103495780631694505e1461040657806318160ddd146104525780631816467f146104715780631a8145bb1461049357600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a60565b60405161039d91906123d4565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612437565b610af2565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612463565b601d6020526000908152604090205460ff1681565b34801561041257600080fd5b5061043a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561045e57600080fd5b506002545b60405190815260200161039d565b34801561047d57600080fd5b5061049161048c366004612463565b610b09565b005b34801561049f57600080fd5b5061046360185481565b3480156104b557600080fd5b5061046360195481565b3480156104cb57600080fd5b506104916104da366004612480565b610b99565b3480156104eb57600080fd5b506103c66104fa366004612499565b610c76565b34801561050b57600080fd5b5061043a61dead81565b34801561052157600080fd5b506017546103c69060ff1681565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506012546103c69060ff1681565b34801561057157600080fd5b506103c6610580366004612437565b610d20565b34801561059157600080fd5b5061043a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c557600080fd5b50600b546103c69060ff1681565b3480156105df57600080fd5b506103c66105ee366004612463565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561061857600080fd5b5061046360135481565b34801561062e57600080fd5b50600b546103c69062010000900460ff1681565b34801561064e57600080fd5b5061046361065d366004612463565b6001600160a01b031660009081526020819052604090205490565b34801561068457600080fd5b50610491610d5c565b34801561069957600080fd5b506103c6610d92565b3480156106ae57600080fd5b506104916106bd3660046124ea565b610dcf565b3480156106ce57600080fd5b5060065461043a906001600160a01b031681565b3480156106ee57600080fd5b5061046360105481565b34801561070457600080fd5b5061049161071336600461251f565b610e24565b34801561072457600080fd5b50610491610e7a565b34801561073957600080fd5b506005546001600160a01b031661043a565b34801561075757600080fd5b5060075461043a906001600160a01b031681565b34801561077757600080fd5b5061046360155481565b34801561078d57600080fd5b5061049161079c36600461254b565b610ebb565b3480156107ad57600080fd5b50610390610f01565b3480156107c257600080fd5b506104916107d13660046124ea565b610f10565b3480156107e257600080fd5b5061046360115481565b3480156107f857600080fd5b50610463601a5481565b34801561080e57600080fd5b5061046360165481565b34801561082457600080fd5b506103c6610833366004612437565b610fef565b34801561084457600080fd5b506103c6610853366004612437565b611088565b34801561086457600080fd5b50610491610873366004612463565b611095565b34801561088457600080fd5b506103c6610893366004612463565b601e6020526000908152604090205460ff1681565b3480156108b457600080fd5b50600b546103c690610100900460ff1681565b3480156108d357600080fd5b506104916108e23660046124ea565b61111c565b3480156108f357600080fd5b5061049161090236600461251f565b6111a5565b34801561091357600080fd5b50610491610922366004612480565b6111fb565b34801561093357600080fd5b50600d546103c69060ff1681565b34801561094d57600080fd5b5061046360085481565b34801561096357600080fd5b506103c6610972366004612480565b6112cc565b34801561098357600080fd5b50610463600e5481565b34801561099957600080fd5b506104636109a8366004612566565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109df57600080fd5b5061046360095481565b3480156109f557600080fd5b506103c6611423565b348015610a0a57600080fd5b50610463600f5481565b348015610a2057600080fd5b50610491610a2f366004612463565b611460565b348015610a4057600080fd5b5061046360145481565b348015610a5657600080fd5b50610463600a5481565b606060038054610a6f9061259f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9b9061259f565b8015610ae85780601f10610abd57610100808354040283529160200191610ae8565b820191906000526020600020905b815481529060010190602001808311610acb57829003601f168201915b5050505050905090565b6000610aff3384846114fb565b5060015b92915050565b6005546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610b33906125d9565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bc35760405162461bcd60e51b8152600401610b33906125d9565b670de0b6b3a76400006103e8610bd860025490565b610be3906001612624565b610bed919061263b565b610bf7919061263b565b811015610c5e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b33565b610c7081670de0b6b3a7640000612624565b60085550565b6000610c8384848461161f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d085760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b33565b610d1585338584036114fb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610aff918590610d5790869061265d565b6114fb565b6005546001600160a01b03163314610d865760405162461bcd60e51b8152600401610b33906125d9565b610d906000611e8a565b565b6005546000906001600160a01b03163314610dbf5760405162461bcd60e51b8152600401610b33906125d9565b50600b805460ff19169055600190565b6005546001600160a01b03163314610df95760405162461bcd60e51b8152600401610b33906125d9565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e4e5760405162461bcd60e51b8152600401610b33906125d9565b600082610e5b858461265d565b610e65919061265d565b600f9290925550601092909255601155600e55565b6005546001600160a01b03163314610ea45760405162461bcd60e51b8152600401610b33906125d9565b600b805462ffff0019166201010017905543601b55565b6005546001600160a01b03163314610ee55760405162461bcd60e51b8152600401610b33906125d9565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a6f9061259f565b6005546001600160a01b03163314610f3a5760405162461bcd60e51b8152600401610b33906125d9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610fe15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b33565b610feb8282611edc565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b33565b61107e33858584036114fb565b5060019392505050565b6000610aff33848461161f565b6005546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610b33906125d9565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111465760405162461bcd60e51b8152600401610b33906125d9565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111cf5760405162461bcd60e51b8152600401610b33906125d9565b6000826111dc858461265d565b6111e6919061265d565b60149290925550601592909255601655601355565b6005546001600160a01b031633146112255760405162461bcd60e51b8152600401610b33906125d9565b670de0b6b3a76400006103e861123a60025490565b611245906005612624565b61124f919061263b565b611259919061263b565b8110156112b45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b33565b6112c681670de0b6b3a7640000612624565b600a5550565b6005546000906001600160a01b031633146112f95760405162461bcd60e51b8152600401610b33906125d9565b620186a061130660025490565b611311906001612624565b61131b919061263b565b8210156113885760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b33565b6103e861139460025490565b61139f906005612624565b6113a9919061263b565b8211156114155760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b33565b50600981905560015b919050565b6005546000906001600160a01b031633146114505760405162461bcd60e51b8152600401610b33906125d9565b50600d805460ff19169055600190565b6005546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610b33906125d9565b6001600160a01b0381166114ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b33565b6114f881611e8a565b50565b6001600160a01b03831661155d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b33565b6001600160a01b0382166115be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116455760405162461bcd60e51b8152600401610b3390612670565b6001600160a01b03821661166b5760405162461bcd60e51b8152600401610b33906126b5565b806000036116845761167f83836000611f30565b505050565b600b5460ff1615611b41576005546001600160a01b038481169116148015906116bb57506005546001600160a01b03838116911614155b80156116cf57506001600160a01b03821615155b80156116e657506001600160a01b03821661dead14155b80156116fc5750600554600160a01b900460ff16155b15611b4157600b54610100900460ff16611794576001600160a01b0383166000908152601c602052604090205460ff168061174f57506001600160a01b0382166000908152601c602052604090205460ff165b6117945760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b33565b600d5460ff16156118db576005546001600160a01b038381169116148015906117ef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561182d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156118db57326000908152600c602052604090205443116118c85760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b33565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601e602052604090205460ff16801561191c57506001600160a01b0382166000908152601d602052604090205460ff16155b15611a00576008548111156119915760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b33565b600a546001600160a01b0383166000908152602081905260409020546119b7908361265d565b11156119fb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b33565b611b41565b6001600160a01b0382166000908152601e602052604090205460ff168015611a4157506001600160a01b0383166000908152601d602052604090205460ff16155b15611ab7576008548111156119fb5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b33565b6001600160a01b0382166000908152601d602052604090205460ff16611b4157600a546001600160a01b038316600090815260208190526040902054611afd908361265d565b1115611b415760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b33565b3060009081526020819052604090205460095481108015908190611b6d5750600b5462010000900460ff165b8015611b835750600554600160a01b900460ff16155b8015611ba857506001600160a01b0385166000908152601e602052604090205460ff16155b8015611bcd57506001600160a01b0385166000908152601c602052604090205460ff16155b8015611bf257506001600160a01b0384166000908152601c602052604090205460ff16155b15611c20576005805460ff60a01b1916600160a01b179055611c12612085565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680611c6e57506001600160a01b0385166000908152601c602052604090205460ff165b15611c77575060005b600060188190558115611e76576001600160a01b0386166000908152601e602052604090205460ff168015611cae57506000601354115b15611d5957611cd36064611ccd601354886121e990919063ffffffff16565b906121fc565b905060135460145482611ce69190612624565b611cf0919061263b565b601855601354601654611d039083612624565b611d0d919061263b565b601a6000828254611d1e919061265d565b9091555050601354601554611d339083612624565b611d3d919061263b565b60196000828254611d4e919061265d565b90915550611e239050565b6001600160a01b0387166000908152601e602052604090205460ff168015611d8357506000600e54115b15611e2357611da26064611ccd600e54886121e990919063ffffffff16565b9050600e54600f5482611db59190612624565b611dbf919061263b565b601855600e54601154611dd29083612624565b611ddc919061263b565b601a6000828254611ded919061265d565b9091555050600e54601054611e029083612624565b611e0c919061263b565b60196000828254611e1d919061265d565b90915550505b8015611e3457611e34873083611f30565b60185415611e6957611e69307f0000000000000000000000000000000000000000000000000000000000000000601854611f30565b611e7381866126f8565b94505b611e81878787611f30565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f565760405162461bcd60e51b8152600401610b3390612670565b6001600160a01b038216611f7c5760405162461bcd60e51b8152600401610b33906126b5565b6001600160a01b03831660009081526020819052604090205481811015611ff45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b33565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061202b90849061265d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161207791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601a546019546120a9919061265d565b905060008215806120b8575081155b156120c257505050565b6009546120d0906014612624565b8311156120e8576009546120e5906014612624565b92505b82476120f382612208565b60006120ff47836123c8565b9050600061211c86611ccd601954856121e990919063ffffffff16565b9050600061212a82846126f8565b60006019819055601a8190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114612182576040519150601f19603f3d011682016040523d82523d6000602084013e612187565b606091505b50506006546040519197506001600160a01b0316904790600081818185875af1925050503d80600081146121d7576040519150601f19603f3d011682016040523d82523d6000602084013e6121dc565b606091505b5050505050505050505050565b60006121f58284612624565b9392505050565b60006121f5828461263b565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061223d5761223d61270b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122df9190612721565b816001815181106122f2576122f261270b565b60200260200101906001600160a01b031690816001600160a01b03168152505061233d307f0000000000000000000000000000000000000000000000000000000000000000846114fb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061239290859060009086903090429060040161273e565b600060405180830381600087803b1580156123ac57600080fd5b505af11580156123c0573d6000803e3d6000fd5b505050505050565b60006121f582846126f8565b600060208083528351808285015260005b81811015612401578581018301518582016040015282016123e5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114f857600080fd5b6000806040838503121561244a57600080fd5b823561245581612422565b946020939093013593505050565b60006020828403121561247557600080fd5b81356121f581612422565b60006020828403121561249257600080fd5b5035919050565b6000806000606084860312156124ae57600080fd5b83356124b981612422565b925060208401356124c981612422565b929592945050506040919091013590565b8035801515811461141e57600080fd5b600080604083850312156124fd57600080fd5b823561250881612422565b9150612516602084016124da565b90509250929050565b60008060006060848603121561253457600080fd5b505081359360208301359350604090920135919050565b60006020828403121561255d57600080fd5b6121f5826124da565b6000806040838503121561257957600080fd5b823561258481612422565b9150602083013561259481612422565b809150509250929050565b600181811c908216806125b357607f821691505b6020821081036125d357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0357610b0361260e565b60008261265857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b0357610b0361260e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b0357610b0361260e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561273357600080fd5b81516121f581612422565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561278e5784516001600160a01b031683529383019391830191600101612769565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ed0d1ea51985a3dafb2c3507bdccf3aa8065b6d3d13d99f7db449e9578bd9d5664736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109fe578063f2fde38b14610a14578063f637434214610a34578063f8b45b0514610a4a57600080fd5b8063dd62ed3e1461098d578063e2f45605146109d3578063e884f260146109e957600080fd5b8063c876d0b9116100d1578063c876d0b914610927578063c8c8ebe414610941578063d257b34f14610957578063d85ba0631461097757600080fd5b8063c0246668146108c7578063c17b5b8c146108e7578063c18bc1951461090757600080fd5b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610838578063aacebbe314610858578063b62496f514610878578063bbc0c742146108a857600080fd5b80639fccce32146107ec578063a0d82dc514610802578063a457c2d71461081857600080fd5b8063924de9b7116101a0578063924de9b71461078157806395d89b41146107a15780639a7a23d6146107b65780639c3b4fdc146107d657600080fd5b80638da5cb5b1461072d5780638ea5220f1461074b578063921369131461076b57600080fd5b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106c25780637bce5a04146106e25780638095d564146106f85780638a8c523c1461071857600080fd5b8063715018a614610678578063751039fc1461068d5780637571336a146106a257600080fd5b80634fbee1931161027a5780634fbee193146105d35780636a486a8e1461060c5780636ddd17131461062257806370a082311461064257600080fd5b8063395093511461056557806349bd5a5e146105855780634a62bb65146105b957600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104ff5780632b36a6d214610515578063313ce5671461052f57806331e02e0b1461054b57600080fd5b80631f3fed8f146104a9578063203e727e146104bf57806323b872dd146104df57600080fd5b80631694505e116103495780631694505e1461040657806318160ddd146104525780631816467f146104715780631a8145bb1461049357600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a60565b60405161039d91906123d4565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612437565b610af2565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612463565b601d6020526000908152604090205460ff1681565b34801561041257600080fd5b5061043a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561045e57600080fd5b506002545b60405190815260200161039d565b34801561047d57600080fd5b5061049161048c366004612463565b610b09565b005b34801561049f57600080fd5b5061046360185481565b3480156104b557600080fd5b5061046360195481565b3480156104cb57600080fd5b506104916104da366004612480565b610b99565b3480156104eb57600080fd5b506103c66104fa366004612499565b610c76565b34801561050b57600080fd5b5061043a61dead81565b34801561052157600080fd5b506017546103c69060ff1681565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506012546103c69060ff1681565b34801561057157600080fd5b506103c6610580366004612437565b610d20565b34801561059157600080fd5b5061043a7f000000000000000000000000f8f60b1770fb64c82ad4b8a5260ddf081c48953481565b3480156105c557600080fd5b50600b546103c69060ff1681565b3480156105df57600080fd5b506103c66105ee366004612463565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561061857600080fd5b5061046360135481565b34801561062e57600080fd5b50600b546103c69062010000900460ff1681565b34801561064e57600080fd5b5061046361065d366004612463565b6001600160a01b031660009081526020819052604090205490565b34801561068457600080fd5b50610491610d5c565b34801561069957600080fd5b506103c6610d92565b3480156106ae57600080fd5b506104916106bd3660046124ea565b610dcf565b3480156106ce57600080fd5b5060065461043a906001600160a01b031681565b3480156106ee57600080fd5b5061046360105481565b34801561070457600080fd5b5061049161071336600461251f565b610e24565b34801561072457600080fd5b50610491610e7a565b34801561073957600080fd5b506005546001600160a01b031661043a565b34801561075757600080fd5b5060075461043a906001600160a01b031681565b34801561077757600080fd5b5061046360155481565b34801561078d57600080fd5b5061049161079c36600461254b565b610ebb565b3480156107ad57600080fd5b50610390610f01565b3480156107c257600080fd5b506104916107d13660046124ea565b610f10565b3480156107e257600080fd5b5061046360115481565b3480156107f857600080fd5b50610463601a5481565b34801561080e57600080fd5b5061046360165481565b34801561082457600080fd5b506103c6610833366004612437565b610fef565b34801561084457600080fd5b506103c6610853366004612437565b611088565b34801561086457600080fd5b50610491610873366004612463565b611095565b34801561088457600080fd5b506103c6610893366004612463565b601e6020526000908152604090205460ff1681565b3480156108b457600080fd5b50600b546103c690610100900460ff1681565b3480156108d357600080fd5b506104916108e23660046124ea565b61111c565b3480156108f357600080fd5b5061049161090236600461251f565b6111a5565b34801561091357600080fd5b50610491610922366004612480565b6111fb565b34801561093357600080fd5b50600d546103c69060ff1681565b34801561094d57600080fd5b5061046360085481565b34801561096357600080fd5b506103c6610972366004612480565b6112cc565b34801561098357600080fd5b50610463600e5481565b34801561099957600080fd5b506104636109a8366004612566565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109df57600080fd5b5061046360095481565b3480156109f557600080fd5b506103c6611423565b348015610a0a57600080fd5b50610463600f5481565b348015610a2057600080fd5b50610491610a2f366004612463565b611460565b348015610a4057600080fd5b5061046360145481565b348015610a5657600080fd5b50610463600a5481565b606060038054610a6f9061259f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9b9061259f565b8015610ae85780601f10610abd57610100808354040283529160200191610ae8565b820191906000526020600020905b815481529060010190602001808311610acb57829003601f168201915b5050505050905090565b6000610aff3384846114fb565b5060015b92915050565b6005546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610b33906125d9565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bc35760405162461bcd60e51b8152600401610b33906125d9565b670de0b6b3a76400006103e8610bd860025490565b610be3906001612624565b610bed919061263b565b610bf7919061263b565b811015610c5e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b33565b610c7081670de0b6b3a7640000612624565b60085550565b6000610c8384848461161f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d085760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b33565b610d1585338584036114fb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610aff918590610d5790869061265d565b6114fb565b6005546001600160a01b03163314610d865760405162461bcd60e51b8152600401610b33906125d9565b610d906000611e8a565b565b6005546000906001600160a01b03163314610dbf5760405162461bcd60e51b8152600401610b33906125d9565b50600b805460ff19169055600190565b6005546001600160a01b03163314610df95760405162461bcd60e51b8152600401610b33906125d9565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e4e5760405162461bcd60e51b8152600401610b33906125d9565b600082610e5b858461265d565b610e65919061265d565b600f9290925550601092909255601155600e55565b6005546001600160a01b03163314610ea45760405162461bcd60e51b8152600401610b33906125d9565b600b805462ffff0019166201010017905543601b55565b6005546001600160a01b03163314610ee55760405162461bcd60e51b8152600401610b33906125d9565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a6f9061259f565b6005546001600160a01b03163314610f3a5760405162461bcd60e51b8152600401610b33906125d9565b7f000000000000000000000000f8f60b1770fb64c82ad4b8a5260ddf081c4895346001600160a01b0316826001600160a01b031603610fe15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b33565b610feb8282611edc565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b33565b61107e33858584036114fb565b5060019392505050565b6000610aff33848461161f565b6005546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610b33906125d9565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111465760405162461bcd60e51b8152600401610b33906125d9565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111cf5760405162461bcd60e51b8152600401610b33906125d9565b6000826111dc858461265d565b6111e6919061265d565b60149290925550601592909255601655601355565b6005546001600160a01b031633146112255760405162461bcd60e51b8152600401610b33906125d9565b670de0b6b3a76400006103e861123a60025490565b611245906005612624565b61124f919061263b565b611259919061263b565b8110156112b45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b33565b6112c681670de0b6b3a7640000612624565b600a5550565b6005546000906001600160a01b031633146112f95760405162461bcd60e51b8152600401610b33906125d9565b620186a061130660025490565b611311906001612624565b61131b919061263b565b8210156113885760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b33565b6103e861139460025490565b61139f906005612624565b6113a9919061263b565b8211156114155760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b33565b50600981905560015b919050565b6005546000906001600160a01b031633146114505760405162461bcd60e51b8152600401610b33906125d9565b50600d805460ff19169055600190565b6005546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610b33906125d9565b6001600160a01b0381166114ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b33565b6114f881611e8a565b50565b6001600160a01b03831661155d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b33565b6001600160a01b0382166115be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116455760405162461bcd60e51b8152600401610b3390612670565b6001600160a01b03821661166b5760405162461bcd60e51b8152600401610b33906126b5565b806000036116845761167f83836000611f30565b505050565b600b5460ff1615611b41576005546001600160a01b038481169116148015906116bb57506005546001600160a01b03838116911614155b80156116cf57506001600160a01b03821615155b80156116e657506001600160a01b03821661dead14155b80156116fc5750600554600160a01b900460ff16155b15611b4157600b54610100900460ff16611794576001600160a01b0383166000908152601c602052604090205460ff168061174f57506001600160a01b0382166000908152601c602052604090205460ff165b6117945760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b33565b600d5460ff16156118db576005546001600160a01b038381169116148015906117ef57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561182d57507f000000000000000000000000f8f60b1770fb64c82ad4b8a5260ddf081c4895346001600160a01b0316826001600160a01b031614155b156118db57326000908152600c602052604090205443116118c85760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b33565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601e602052604090205460ff16801561191c57506001600160a01b0382166000908152601d602052604090205460ff16155b15611a00576008548111156119915760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b33565b600a546001600160a01b0383166000908152602081905260409020546119b7908361265d565b11156119fb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b33565b611b41565b6001600160a01b0382166000908152601e602052604090205460ff168015611a4157506001600160a01b0383166000908152601d602052604090205460ff16155b15611ab7576008548111156119fb5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b33565b6001600160a01b0382166000908152601d602052604090205460ff16611b4157600a546001600160a01b038316600090815260208190526040902054611afd908361265d565b1115611b415760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b33565b3060009081526020819052604090205460095481108015908190611b6d5750600b5462010000900460ff165b8015611b835750600554600160a01b900460ff16155b8015611ba857506001600160a01b0385166000908152601e602052604090205460ff16155b8015611bcd57506001600160a01b0385166000908152601c602052604090205460ff16155b8015611bf257506001600160a01b0384166000908152601c602052604090205460ff16155b15611c20576005805460ff60a01b1916600160a01b179055611c12612085565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680611c6e57506001600160a01b0385166000908152601c602052604090205460ff165b15611c77575060005b600060188190558115611e76576001600160a01b0386166000908152601e602052604090205460ff168015611cae57506000601354115b15611d5957611cd36064611ccd601354886121e990919063ffffffff16565b906121fc565b905060135460145482611ce69190612624565b611cf0919061263b565b601855601354601654611d039083612624565b611d0d919061263b565b601a6000828254611d1e919061265d565b9091555050601354601554611d339083612624565b611d3d919061263b565b60196000828254611d4e919061265d565b90915550611e239050565b6001600160a01b0387166000908152601e602052604090205460ff168015611d8357506000600e54115b15611e2357611da26064611ccd600e54886121e990919063ffffffff16565b9050600e54600f5482611db59190612624565b611dbf919061263b565b601855600e54601154611dd29083612624565b611ddc919061263b565b601a6000828254611ded919061265d565b9091555050600e54601054611e029083612624565b611e0c919061263b565b60196000828254611e1d919061265d565b90915550505b8015611e3457611e34873083611f30565b60185415611e6957611e69307f000000000000000000000000f8f60b1770fb64c82ad4b8a5260ddf081c489534601854611f30565b611e7381866126f8565b94505b611e81878787611f30565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f565760405162461bcd60e51b8152600401610b3390612670565b6001600160a01b038216611f7c5760405162461bcd60e51b8152600401610b33906126b5565b6001600160a01b03831660009081526020819052604090205481811015611ff45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b33565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061202b90849061265d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161207791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601a546019546120a9919061265d565b905060008215806120b8575081155b156120c257505050565b6009546120d0906014612624565b8311156120e8576009546120e5906014612624565b92505b82476120f382612208565b60006120ff47836123c8565b9050600061211c86611ccd601954856121e990919063ffffffff16565b9050600061212a82846126f8565b60006019819055601a8190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114612182576040519150601f19603f3d011682016040523d82523d6000602084013e612187565b606091505b50506006546040519197506001600160a01b0316904790600081818185875af1925050503d80600081146121d7576040519150601f19603f3d011682016040523d82523d6000602084013e6121dc565b606091505b5050505050505050505050565b60006121f58284612624565b9392505050565b60006121f5828461263b565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061223d5761223d61270b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122df9190612721565b816001815181106122f2576122f261270b565b60200260200101906001600160a01b031690816001600160a01b03168152505061233d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114fb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061239290859060009086903090429060040161273e565b600060405180830381600087803b1580156123ac57600080fd5b505af11580156123c0573d6000803e3d6000fd5b505050505050565b60006121f582846126f8565b600060208083528351808285015260005b81811015612401578581018301518582016040015282016123e5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114f857600080fd5b6000806040838503121561244a57600080fd5b823561245581612422565b946020939093013593505050565b60006020828403121561247557600080fd5b81356121f581612422565b60006020828403121561249257600080fd5b5035919050565b6000806000606084860312156124ae57600080fd5b83356124b981612422565b925060208401356124c981612422565b929592945050506040919091013590565b8035801515811461141e57600080fd5b600080604083850312156124fd57600080fd5b823561250881612422565b9150612516602084016124da565b90509250929050565b60008060006060848603121561253457600080fd5b505081359360208301359350604090920135919050565b60006020828403121561255d57600080fd5b6121f5826124da565b6000806040838503121561257957600080fd5b823561258481612422565b9150602083013561259481612422565b809150509250929050565b600181811c908216806125b357607f821691505b6020821081036125d357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0357610b0361260e565b60008261265857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b0357610b0361260e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b0357610b0361260e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561273357600080fd5b81516121f581612422565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561278e5784516001600160a01b031683529383019391830191600101612769565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ed0d1ea51985a3dafb2c3507bdccf3aa8065b6d3d13d99f7db449e9578bd9d5664736f6c63430008130033

Deployed Bytecode Sourcemap

32913:15526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9767:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12075:210;;;;;;;;;;-1:-1:-1;12075:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12075:210:0;1023:187:1;34387:63:0;;;;;;;;;;-1:-1:-1;34387:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32988:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32988:51:0;1467:230:1;10887:108:0;;;;;;;;;;-1:-1:-1;10975:12:0;;10887:108;;;1848:25:1;;;1836:2;1821:18;10887:108:0;1702:177:1;41578:157:0;;;;;;;;;;-1:-1:-1;41578:157:0;;;;;:::i;:::-;;:::i;:::-;;34065:33;;;;;;;;;;;;;;;;34105;;;;;;;;;;;;;;;;38954:275;;;;;;;;;;-1:-1:-1;38954:275:0;;;;;:::i;:::-;;:::i;12767:529::-;;;;;;;;;;-1:-1:-1;12767:529:0;;;;;:::i;:::-;;:::i;33091:53::-;;;;;;;;;;;;33137:6;33091:53;;34030:26;;;;;;;;;;-1:-1:-1;34030:26:0;;;;;;;;10729:93;;;;;;;;;;-1:-1:-1;10729:93:0;;10812:2;2880:36:1;;2868:2;2853:18;10729:93:0;2738:184:1;33853:25:0;;;;;;;;;;-1:-1:-1;33853:25:0;;;;;;;;13705:297;;;;;;;;;;-1:-1:-1;13705:297:0;;;;;:::i;:::-;;:::i;33046:38::-;;;;;;;;;;;;;;;33368:33;;;;;;;;;;-1:-1:-1;33368:33:0;;;;;;;;41743:126;;;;;;;;;;-1:-1:-1;41743:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41833:28:0;41809:4;41833:28;;;:19;:28;;;;;;;;;41743:126;33887:28;;;;;;;;;;;;;;;;33448:31;;;;;;;;;;-1:-1:-1;33448:31:0;;;;;;;;;;;11058:177;;;;;;;;;;-1:-1:-1;11058:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11209:18:0;11177:7;11209:18;;;;;;;;;;;;11058:177;2886:103;;;;;;;;;;;;;:::i;38062:121::-;;;;;;;;;;;;;:::i;39501:167::-;;;;;;;;;;-1:-1:-1;39501:167:0;;;;;:::i;:::-;;:::i;33183:30::-;;;;;;;;;;-1:-1:-1;33183:30:0;;;;-1:-1:-1;;;;;33183:30:0;;;33785;;;;;;;;;;;;;;;;39872:374;;;;;;;;;;-1:-1:-1;39872:374:0;;;;;:::i;:::-;;:::i;37862:148::-;;;;;;;;;;;;;:::i;2235:87::-;;;;;;;;;;-1:-1:-1;2308:6:0;;-1:-1:-1;;;;;2308:6:0;2235:87;;33220:24;;;;;;;;;;-1:-1:-1;33220:24:0;;;;-1:-1:-1;;;;;33220:24:0;;;33960:31;;;;;;;;;;;;;;;;39764:100;;;;;;;;;;-1:-1:-1;39764:100:0;;;;;:::i;:::-;;:::i;9986:104::-;;;;;;;;;;;;;:::i;40831:304::-;;;;;;;;;;-1:-1:-1;40831:304:0;;;;;:::i;:::-;;:::i;33822:24::-;;;;;;;;;;;;;;;;34145:27;;;;;;;;;;;;;;;;33998:25;;;;;;;;;;;;;;;;14505:482;;;;;;;;;;-1:-1:-1;14505:482:0;;;;;:::i;:::-;;:::i;11448:216::-;;;;;;;;;;-1:-1:-1;11448:216:0;;;;;:::i;:::-;;:::i;41339:231::-;;;;;;;;;;-1:-1:-1;41339:231:0;;;;;:::i;:::-;;:::i;34608:57::-;;;;;;;;;;-1:-1:-1;34608:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33408:33;;;;;;;;;;-1:-1:-1;33408:33:0;;;;;;;;;;;40641:182;;;;;;;;;;-1:-1:-1;40641:182:0;;;;;:::i;:::-;;:::i;40254:379::-;;;;;;;;;;-1:-1:-1;40254:379:0;;;;;:::i;:::-;;:::i;39237:256::-;;;;;;;;;;-1:-1:-1;39237:256:0;;;;;:::i;:::-;;:::i;33666:39::-;;;;;;;;;;-1:-1:-1;33666:39:0;;;;;;;;33253:35;;;;;;;;;;;;;;;;38449:497;;;;;;;;;;-1:-1:-1;38449:497:0;;;;;:::i;:::-;;:::i;33714:27::-;;;;;;;;;;;;;;;;11727:201;;;;;;;;;;-1:-1:-1;11727:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11893:18:0;;;11861:7;11893:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11727:201;33295:33;;;;;;;;;;;;;;;;38244:135;;;;;;;;;;;;;:::i;33748:30::-;;;;;;;;;;;;;;;;3144:238;;;;;;;;;;-1:-1:-1;3144:238:0;;;;;:::i;:::-;;:::i;33922:31::-;;;;;;;;;;;;;;;;33335:24;;;;;;;;;;;;;;;;9767:100;9821:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9767:100;:::o;12075:210::-;12194:4;12216:39;963:10;12239:7;12248:6;12216:8;:39::i;:::-;-1:-1:-1;12273:4:0;12075:210;;;;;:::o;41578:157::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;;;;;;;;;41685:9:::1;::::0;41657:38:::1;::::0;-1:-1:-1;;;;;41685:9:0;;::::1;::::0;41657:38;::::1;::::0;::::1;::::0;41685:9:::1;::::0;41657:38:::1;41706:9;:21:::0;;-1:-1:-1;;;;;;41706:21:0::1;-1:-1:-1::0;;;;;41706:21:0;;;::::1;::::0;;;::::1;::::0;;41578:157::o;38954:275::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;39091:4:::1;39083;39062:13;10975:12:::0;;;10887:108;39062:13:::1;:17;::::0;39078:1:::1;39062:17;:::i;:::-;39061:26;;;;:::i;:::-;39060:35;;;;:::i;:::-;39050:6;:45;;39028:142;;;::::0;-1:-1:-1;;;39028:142:0;;5786:2:1;39028:142:0::1;::::0;::::1;5768:21:1::0;5825:2;5805:18;;;5798:30;5864:34;5844:18;;;5837:62;-1:-1:-1;;;5915:18:1;;;5908:45;5970:19;;39028:142:0::1;5584:411:1::0;39028:142:0::1;39204:17;:6:::0;39214::::1;39204:17;:::i;:::-;39181:20;:40:::0;-1:-1:-1;38954:275:0:o;12767:529::-;12907:4;12924:36;12934:6;12942:9;12953:6;12924:9;:36::i;:::-;-1:-1:-1;;;;;13000:19:0;;12973:24;13000:19;;;:11;:19;;;;;;;;963:10;13000:33;;;;;;;;13066:26;;;;13044:116;;;;-1:-1:-1;;;13044:116:0;;6202:2:1;13044:116:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;-1:-1:-1;;;6331:18:1;;;6324:38;6379:19;;13044:116:0;6000:404:1;13044:116:0;13196:57;13205:6;963:10;13246:6;13227:16;:25;13196:8;:57::i;:::-;-1:-1:-1;13284:4:0;;12767:529;-1:-1:-1;;;;12767:529:0:o;13705:297::-;963:10;13820:4;13914:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13914:34:0;;;;;;;;;;13820:4;;13842:130;;13892:7;;13914:47;;13951:10;;13914:47;:::i;:::-;13842:8;:130::i;2886:103::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;2951:30:::1;2978:1;2951:18;:30::i;:::-;2886:103::o:0;38062:121::-;2308:6;;38114:4;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;-1:-1:-1;38131:14:0::1;:22:::0;;-1:-1:-1;;38131:22:0::1;::::0;;;38062:121;:::o;39501:167::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39614:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39614:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39501:167::o;39872:374::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;40022:21:::1;40078:7:::0;40046:29:::1;40062:13:::0;40046;:29:::1;:::i;:::-;:39;;;;:::i;:::-;40096:15;:31:::0;;;;-1:-1:-1;40138:15:0::1;:31:::0;;;;40180:9:::1;:19:::0;40210:12:::1;:28:::0;39872:374::o;37862:148::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;37917:13:::1;:20:::0;;-1:-1:-1;;37948:18:0;;;;;37990:12:::1;37977:10;:25:::0;37862:148::o;39764:100::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;39835:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39835:21:0;;::::1;::::0;;;::::1;::::0;;39764:100::o;9986:104::-;10042:13;10075:7;10068:14;;;;;:::i;40831:304::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;40975:13:::1;-1:-1:-1::0;;;;;40967:21:0::1;:4;-1:-1:-1::0;;;;;40967:21:0::1;::::0;40945:128:::1;;;::::0;-1:-1:-1;;;40945:128:0;;6741:2:1;40945:128:0::1;::::0;::::1;6723:21:1::0;6780:2;6760:18;;;6753:30;6819:34;6799:18;;;6792:62;6890:27;6870:18;;;6863:55;6935:19;;40945:128:0::1;6539:421:1::0;40945:128:0::1;41086:41;41115:4;41121:5;41086:28;:41::i;:::-;40831:304:::0;;:::o;14505:482::-;963:10;14625:4;14674:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14674:34:0;;;;;;;;;;14741:35;;;;14719:122;;;;-1:-1:-1;;;14719:122:0;;7167:2:1;14719:122:0;;;7149:21:1;7206:2;7186:18;;;7179:30;7245:34;7225:18;;;7218:62;-1:-1:-1;;;7296:18:1;;;7289:35;7341:19;;14719:122:0;6965:401:1;14719:122:0;14877:67;963:10;14900:7;14928:15;14909:16;:34;14877:8;:67::i;:::-;-1:-1:-1;14975:4:0;;14505:482;-1:-1:-1;;;14505:482:0:o;11448:216::-;11570:4;11592:42;963:10;11616:9;11627:6;11592:9;:42::i;41339:231::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;41499:15:::1;::::0;41456:59:::1;::::0;-1:-1:-1;;;;;41499:15:0;;::::1;::::0;41456:59;::::1;::::0;::::1;::::0;41499:15:::1;::::0;41456:59:::1;41526:15;:36:::0;;-1:-1:-1;;;;;;41526:36:0::1;-1:-1:-1::0;;;;;41526:36:0;;;::::1;::::0;;;::::1;::::0;;41339:231::o;40641:182::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40726:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40726:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40781:34;;1163:41:1;;;40781:34:0::1;::::0;1136:18:1;40781:34:0::1;;;;;;;40641:182:::0;;:::o;40254:379::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;40405:21:::1;40461:7:::0;40429:29:::1;40445:13:::0;40429;:29:::1;:::i;:::-;:39;;;;:::i;:::-;40479:16;:32:::0;;;;-1:-1:-1;40522:16:0::1;:32:::0;;;;40565:10:::1;:20:::0;40596:13:::1;:29:::0;40254:379::o;39237:256::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;39377:4:::1;39369;39348:13;10975:12:::0;;;10887:108;39348:13:::1;:17;::::0;39364:1:::1;39348:17;:::i;:::-;39347:26;;;;:::i;:::-;39346:35;;;;:::i;:::-;39336:6;:45;;39314:131;;;::::0;-1:-1:-1;;;39314:131:0;;7573:2:1;39314:131:0::1;::::0;::::1;7555:21:1::0;7612:2;7592:18;;;7585:30;7651:34;7631:18;;;7624:62;-1:-1:-1;;;7702:18:1;;;7695:34;7746:19;;39314:131:0::1;7371:400:1::0;39314:131:0::1;39468:17;:6:::0;39478::::1;39468:17;:::i;:::-;39456:9;:29:::0;-1:-1:-1;39237:256:0:o;38449:497::-;2308:6;;38557:4;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;38636:6:::1;38615:13;10975:12:::0;;;10887:108;38615:13:::1;:17;::::0;38631:1:::1;38615:17;:::i;:::-;38614:28;;;;:::i;:::-;38601:9;:41;;38579:144;;;::::0;-1:-1:-1;;;38579:144:0;;7978:2:1;38579:144:0::1;::::0;::::1;7960:21:1::0;8017:2;7997:18;;;7990:30;8056:34;8036:18;;;8029:62;-1:-1:-1;;;8107:18:1;;;8100:51;8168:19;;38579:144:0::1;7776:417:1::0;38579:144:0::1;38791:4;38770:13;10975:12:::0;;;10887:108;38770:13:::1;:17;::::0;38786:1:::1;38770:17;:::i;:::-;38769:26;;;;:::i;:::-;38756:9;:39;;38734:141;;;::::0;-1:-1:-1;;;38734:141:0;;8400:2:1;38734:141:0::1;::::0;::::1;8382:21:1::0;8439:2;8419:18;;;8412:30;8478:34;8458:18;;;8451:62;-1:-1:-1;;;8529:18:1;;;8522:50;8589:19;;38734:141:0::1;8198:416:1::0;38734:141:0::1;-1:-1:-1::0;38886:18:0::1;:30:::0;;;38934:4:::1;2526:1;38449:497:::0;;;:::o;38244:135::-;2308:6;;38304:4;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;-1:-1:-1;38321:20:0::1;:28:::0;;-1:-1:-1;;38321:28:0::1;::::0;;;38244:135;:::o;3144:238::-;2308:6;;-1:-1:-1;;;;;2308:6:0;963:10;2455:23;2447:68;;;;-1:-1:-1;;;2447:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3247:22:0;::::1;3225:110;;;::::0;-1:-1:-1;;;3225:110:0;;8821:2:1;3225:110:0::1;::::0;::::1;8803:21:1::0;8860:2;8840:18;;;8833:30;8899:34;8879:18;;;8872:62;-1:-1:-1;;;8950:18:1;;;8943:36;8996:19;;3225:110:0::1;8619:402:1::0;3225:110:0::1;3346:28;3365:8;3346:18;:28::i;:::-;3144:238:::0;:::o;18295:380::-;-1:-1:-1;;;;;18431:19:0;;18423:68;;;;-1:-1:-1;;;18423:68:0;;9228:2:1;18423:68:0;;;9210:21:1;9267:2;9247:18;;;9240:30;9306:34;9286:18;;;9279:62;-1:-1:-1;;;9357:18:1;;;9350:34;9401:19;;18423:68:0;9026:400:1;18423:68:0;-1:-1:-1;;;;;18510:21:0;;18502:68;;;;-1:-1:-1;;;18502:68:0;;9633:2:1;18502:68:0;;;9615:21:1;9672:2;9652:18;;;9645:30;9711:34;9691:18;;;9684:62;-1:-1:-1;;;9762:18:1;;;9755:32;9804:19;;18502:68:0;9431:398:1;18502:68:0;-1:-1:-1;;;;;18583:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18635:32;;1848:25:1;;;18635:32:0;;1821:18:1;18635:32:0;;;;;;;18295:380;;;:::o;41877:4891::-;-1:-1:-1;;;;;42009:18:0;;42001:68;;;;-1:-1:-1;;;42001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42088:16:0;;42080:64;;;;-1:-1:-1;;;42080:64:0;;;;;;;:::i;:::-;42161:6;42171:1;42161:11;42157:93;;42189:28;42205:4;42211:2;42215:1;42189:15;:28::i;:::-;41877:4891;;;:::o;42157:93::-;42266:14;;;;42262:2487;;;2308:6;;-1:-1:-1;;;;;42319:15:0;;;2308:6;;42319:15;;;;:49;;-1:-1:-1;2308:6:0;;-1:-1:-1;;;;;42355:13:0;;;2308:6;;42355:13;;42319:49;:86;;;;-1:-1:-1;;;;;;42389:16:0;;;;42319:86;:128;;;;-1:-1:-1;;;;;;42426:21:0;;42440:6;42426:21;;42319:128;:158;;;;-1:-1:-1;42469:8:0;;-1:-1:-1;;;42469:8:0;;;;42468:9;42319:158;42297:2441;;;42517:13;;;;;;;42512:223;;-1:-1:-1;;;;;42589:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42618:23:0;;;;;;:19;:23;;;;;;;;42589:52;42555:160;;;;-1:-1:-1;;;42555:160:0;;10846:2:1;42555:160:0;;;10828:21:1;10885:2;10865:18;;;10858:30;-1:-1:-1;;;10904:18:1;;;10897:52;10966:18;;42555:160:0;10644:346:1;42555:160:0;42891:20;;;;42887:641;;;2308:6;;-1:-1:-1;;;;;42966:13:0;;;2308:6;;42966:13;;;;:72;;;43022:15;-1:-1:-1;;;;;43008:30:0;:2;-1:-1:-1;;;;;43008:30:0;;;42966:72;:129;;;;;43081:13;-1:-1:-1;;;;;43067:28:0;:2;-1:-1:-1;;;;;43067:28:0;;;42966:129;42936:573;;;43213:9;43184:39;;;;:28;:39;;;;;;43259:12;-1:-1:-1;43146:258:0;;;;-1:-1:-1;;;43146:258:0;;11197:2:1;43146:258:0;;;11179:21:1;11236:2;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;11346:34;11326:18;;;11319:62;-1:-1:-1;;;11397:19:1;;;11390:40;11447:19;;43146:258:0;10995:477:1;43146:258:0;43460:9;43431:39;;;;:28;:39;;;;;43473:12;43431:54;;42936:573;-1:-1:-1;;;;;43602:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43659:35:0;;;;;;:31;:35;;;;;;;;43658:36;43602:92;43576:1147;;;43781:20;;43771:6;:30;;43737:169;;;;-1:-1:-1;;;43737:169:0;;11679:2:1;43737:169:0;;;11661:21:1;11718:2;11698:18;;;11691:30;11757:34;11737:18;;;11730:62;-1:-1:-1;;;11808:18:1;;;11801:51;11869:19;;43737:169:0;11477:417:1;43737:169:0;43989:9;;-1:-1:-1;;;;;11209:18:0;;11177:7;11209:18;;;;;;;;;;;43963:22;;:6;:22;:::i;:::-;:35;;43929:140;;;;-1:-1:-1;;;43929:140:0;;12101:2:1;43929:140:0;;;12083:21:1;12140:2;12120:18;;;12113:30;-1:-1:-1;;;12159:18:1;;;12152:49;12218:18;;43929:140:0;11899:343:1;43929:140:0;43576:1147;;;-1:-1:-1;;;;;44167:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44222:37:0;;;;;;:31;:37;;;;;;;;44221:38;44167:92;44141:582;;;44346:20;;44336:6;:30;;44302:170;;;;-1:-1:-1;;;44302:170:0;;12449:2:1;44302:170:0;;;12431:21:1;12488:2;12468:18;;;12461:30;12527:34;12507:18;;;12500:62;-1:-1:-1;;;12578:18:1;;;12571:52;12640:19;;44302:170:0;12247:418:1;44141:582:0;-1:-1:-1;;;;;44503:35:0;;;;;;:31;:35;;;;;;;;44498:225;;44623:9;;-1:-1:-1;;;;;11209:18:0;;11177:7;11209:18;;;;;;;;;;;44597:22;;:6;:22;:::i;:::-;:35;;44563:140;;;;-1:-1:-1;;;44563:140:0;;12101:2:1;44563:140:0;;;12083:21:1;12140:2;12120:18;;;12113:30;-1:-1:-1;;;12159:18:1;;;12152:49;12218:18;;44563:140:0;11899:343:1;44563:140:0;44810:4;44761:28;11209:18;;;;;;;;;;;44868;;44844:42;;;;;;;44917:35;;-1:-1:-1;44941:11:0;;;;;;;44917:35;:61;;;;-1:-1:-1;44970:8:0;;-1:-1:-1;;;44970:8:0;;;;44969:9;44917:61;:110;;;;-1:-1:-1;;;;;;44996:31:0;;;;;;:25;:31;;;;;;;;44995:32;44917:110;:153;;;;-1:-1:-1;;;;;;45045:25:0;;;;;;:19;:25;;;;;;;;45044:26;44917:153;:194;;;;-1:-1:-1;;;;;;45088:23:0;;;;;;:19;:23;;;;;;;;45087:24;44917:194;44899:326;;;45138:8;:15;;-1:-1:-1;;;;45138:15:0;-1:-1:-1;;;45138:15:0;;;45170:10;:8;:10::i;:::-;45197:8;:16;;-1:-1:-1;;;;45197:16:0;;;44899:326;45253:8;;-1:-1:-1;;;;;45363:25:0;;45237:12;45363:25;;;:19;:25;;;;;;45253:8;-1:-1:-1;;;45253:8:0;;;;;45252:9;;45363:25;;:52;;-1:-1:-1;;;;;;45392:23:0;;;;;;:19;:23;;;;;;;;45363:52;45359:100;;;-1:-1:-1;45442:5:0;45359:100;45471:12;45498:18;:22;;;45605:1110;;;;-1:-1:-1;;;;;45661:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45710:1;45694:13;;:17;45661:50;45657:767;;;45739:34;45769:3;45739:25;45750:13;;45739:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45732:41;;45841:13;;45821:16;;45814:4;:23;;;;:::i;:::-;45813:41;;;;:::i;:::-;45792:18;:62;45911:13;;45897:10;;45890:17;;:4;:17;:::i;:::-;45889:35;;;;:::i;:::-;45873:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45993:13:0;;45973:16;;45966:23;;:4;:23;:::i;:::-;45965:41;;;;:::i;:::-;45943:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45657:767:0;;-1:-1:-1;45657:767:0;;-1:-1:-1;;;;;46068:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46118:1;46103:12;;:16;46068:51;46064:360;;;46147:33;46176:3;46147:24;46158:12;;46147:6;:10;;:24;;;;:::i;:33::-;46140:40;;46247:12;;46228:15;;46221:4;:22;;;;:::i;:::-;46220:39;;;;:::i;:::-;46199:18;:60;46316:12;;46303:9;;46296:16;;:4;:16;:::i;:::-;46295:33;;;;:::i;:::-;46279:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46396:12:0;;46377:15;;46370:22;;:4;:22;:::i;:::-;46369:39;;;;:::i;:::-;46347:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46064:360:0;46444:8;;46440:91;;46473:42;46489:4;46503;46510;46473:15;:42::i;:::-;46549:18;;:22;46545:128;;46592:65;46616:4;46623:13;46638:18;;46592:15;:65::i;:::-;46689:14;46699:4;46689:14;;:::i;:::-;;;45605:1110;46727:33;46743:4;46749:2;46753:6;46727:15;:33::i;:::-;41990:4778;;;;41877:4891;;;:::o;3542:191::-;3635:6;;;-1:-1:-1;;;;;3652:17:0;;;-1:-1:-1;;;;;;3652:17:0;;;;;;;3685:40;;3635:6;;;3652:17;3635:6;;3685:40;;3616:16;;3685:40;3605:128;3542:191;:::o;41143:188::-;-1:-1:-1;;;;;41226:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41226:39:0;;;;;;;;;;41283:40;;41226:39;;:31;41283:40;;;41143:188;;:::o;15477:770::-;-1:-1:-1;;;;;15617:20:0;;15609:70;;;;-1:-1:-1;;;15609:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15698:23:0;;15690:71;;;;-1:-1:-1;;;15690:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15858:17:0;;15834:21;15858:17;;;;;;;;;;;15908:23;;;;15886:111;;;;-1:-1:-1;;;15886:111:0;;13005:2:1;15886:111:0;;;12987:21:1;13044:2;13024:18;;;13017:30;13083:34;13063:18;;;13056:62;-1:-1:-1;;;13134:18:1;;;13127:36;13180:19;;15886:111:0;12803:402:1;15886:111:0;-1:-1:-1;;;;;16033:17:0;;;:9;:17;;;;;;;;;;;16053:22;;;16033:42;;16097:20;;;;;;;;:30;;16069:6;;16033:9;16097:30;;16069:6;;16097:30;:::i;:::-;;;;;;;;16162:9;-1:-1:-1;;;;;16145:35:0;16154:6;-1:-1:-1;;;;;16145:35:0;;16173:6;16145:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;16145:35:0;;;;;;;;15598:649;15477:770;;;:::o;47373:1063::-;47456:4;47412:23;11209:18;;;;;;;;;;;47412:50;;47473:25;47522:12;;47501:18;;:33;;;;:::i;:::-;47473:61;-1:-1:-1;47545:12:0;47574:20;;;:46;;-1:-1:-1;47598:22:0;;47574:46;47570:85;;;47637:7;;;47373:1063::o;47570:85::-;47689:18;;:23;;47710:2;47689:23;:::i;:::-;47671:15;:41;47667:115;;;47747:18;;:23;;47768:2;47747:23;:::i;:::-;47729:41;;47667:115;47823:15;47879:21;47913:36;47823:15;47913:16;:36::i;:::-;47962:18;47983:44;:21;48009:17;47983:25;:44::i;:::-;47962:65;;48038:23;48064:57;48103:17;48064:34;48079:18;;48064:10;:14;;:34;;;;:::i;:57::-;48038:83;-1:-1:-1;48132:17:0;48152:28;48038:83;48152:10;:28;:::i;:::-;48214:1;48193:18;:22;;;48226:12;:16;;;48277:9;;48269:45;;48132:48;;-1:-1:-1;;;;;;48277:9:0;;48132:48;;48269:45;48214:1;48269:45;48132:48;48277:9;48269:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48349:15:0;;48341:87;;48255:59;;-1:-1:-1;;;;;;48349:15:0;;48392:21;;48341:87;;;;48392:21;48349:15;48341:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;47373:1063:0:o;23908:98::-;23966:7;23993:5;23997:1;23993;:5;:::i;:::-;23986:12;23908:98;-1:-1:-1;;;23908:98:0:o;24307:::-;24365:7;24392:5;24396:1;24392;:5;:::i;46776:589::-;46926:16;;;46940:1;46926:16;;;;;;;;46902:21;;46926:16;;;;;;;;;;-1:-1:-1;46926:16:0;46902:40;;46971:4;46953;46958:1;46953:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46953:23:0;;;-1:-1:-1;;;;;46953:23:0;;;;;46997:15;-1:-1:-1;;;;;46997:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46987:4;46992:1;46987:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46987:32:0;;;-1:-1:-1;;;;;46987:32:0;;;;;47032:62;47049:4;47064:15;47082:11;47032:8;:62::i;:::-;47133:224;;-1:-1:-1;;;47133:224:0;;-1:-1:-1;;;;;47133:15:0;:66;;;;:224;;47214:11;;47240:1;;47284:4;;47311;;47331:15;;47133:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46831:534;46776:589;:::o;23551:98::-;23609:7;23636:5;23640:1;23636;:5;:::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:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:315;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:52;;;3234:1;3231;3224:12;3186:52;3273:9;3260:23;3292:31;3317:5;3292:31;:::i;:::-;3342:5;-1:-1:-1;3366:35:1;3397:2;3382:18;;3366:35;:::i;:::-;3356:45;;3092:315;;;;;:::o;3412:316::-;3489:6;3497;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:52;;;3574:1;3571;3564:12;3526:52;-1:-1:-1;;3597:23:1;;;3667:2;3652:18;;3639:32;;-1:-1:-1;3718:2:1;3703:18;;;3690:32;;3412:316;-1:-1:-1;3412:316:1:o;3733:180::-;3789:6;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3881:26;3897:9;3881:26;:::i;3918:388::-;3986:6;3994;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4102:9;4089:23;4121:31;4146:5;4121:31;:::i;:::-;4171:5;-1:-1:-1;4228:2:1;4213:18;;4200:32;4241:33;4200:32;4241:33;:::i;:::-;4293:7;4283:17;;;3918:388;;;;;:::o;4311:380::-;4390:1;4386:12;;;;4433;;;4454:61;;4508:4;4500:6;4496:17;4486:27;;4454:61;4561:2;4553:6;4550:14;4530:18;4527:38;4524:161;;4607:10;4602:3;4598:20;4595:1;4588:31;4642:4;4639:1;4632:15;4670:4;4667:1;4660:15;4524:161;;4311:380;;;:::o;4696:356::-;4898:2;4880:21;;;4917:18;;;4910:30;4976:34;4971:2;4956:18;;4949:62;5043:2;5028:18;;4696:356::o;5057:127::-;5118:10;5113:3;5109:20;5106:1;5099:31;5149:4;5146:1;5139:15;5173:4;5170:1;5163:15;5189:168;5262:9;;;5293;;5310:15;;;5304:22;;5290:37;5280:71;;5331:18;;:::i;5362:217::-;5402:1;5428;5418:132;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5418:132;-1:-1:-1;5564:9:1;;5362:217::o;6409:125::-;6474:9;;;6495:10;;;6492:36;;;6508:18;;:::i;9834:401::-;10036:2;10018:21;;;10075:2;10055:18;;;10048:30;10114:34;10109:2;10094:18;;10087:62;-1:-1:-1;;;10180:2:1;10165:18;;10158:35;10225:3;10210:19;;9834:401::o;10240:399::-;10442:2;10424:21;;;10481:2;10461:18;;;10454:30;10520:34;10515:2;10500:18;;10493:62;-1:-1:-1;;;10586:2:1;10571:18;;10564:33;10629:3;10614:19;;10240:399::o;12670:128::-;12737:9;;;12758:11;;;12755:37;;;12772:18;;:::i;13552:127::-;13613:10;13608:3;13604:20;13601:1;13594:31;13644:4;13641:1;13634:15;13668:4;13665:1;13658:15;13684:251;13754:6;13807:2;13795:9;13786:7;13782:23;13778:32;13775:52;;;13823:1;13820;13813:12;13775:52;13855:9;13849:16;13874:31;13899:5;13874:31;:::i;13940:980::-;14202:4;14250:3;14239:9;14235:19;14281:6;14270:9;14263:25;14307:2;14345:6;14340:2;14329:9;14325:18;14318:34;14388:3;14383:2;14372:9;14368:18;14361:31;14412:6;14447;14441:13;14478:6;14470;14463:22;14516:3;14505:9;14501:19;14494:26;;14555:2;14547:6;14543:15;14529:29;;14576:1;14586:195;14600:6;14597:1;14594:13;14586:195;;;14665:13;;-1:-1:-1;;;;;14661:39:1;14649:52;;14756:15;;;;14721:12;;;;14697:1;14615:9;14586:195;;;-1:-1:-1;;;;;;;14837:32:1;;;;14832:2;14817:18;;14810:60;-1:-1:-1;;;14901:3:1;14886:19;14879:35;14798:3;13940:980;-1:-1:-1;;;13940:980:1:o

Swarm Source

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