ETH Price: $3,281.73 (-3.77%)
Gas: 17 Gwei

Token

FarmBot (FARM)
 

Overview

Max Total Supply

100,000,000 FARM

Holders

473

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,226 FARM

Value
$0.00
0xbba7946cfe12942e8b9c1dd371fbee86ffe42809
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:
FARMToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-20
*/

/**
    FarmBot
    Experience seamless and lightning-fast trading with our free-to-use bot.
    
    Website: farmbot.pro
    App: app.farmbot.pro
    Twitter: twitter.com/FarmBotPro
    Telegram: t.me/FarmBotPro
**/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public revShareWallet;

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

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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyRevShareFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellRevShareFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForRevShare;
    uint256 private previousFee;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() payable ERC20("FarmBot", "FARM") {
        uint256 totalSupply = 100_000_000 ether;
        address disperse = 0xD152f549545093347A162Dce210e7293f1452150;
        address stakingRewards = 0x04AfD736529E52790C15e81c0E5bB5Fc5731acC6;
        address marketing = 0x93AC8c5c57b8E5B592bC91238340ce894E9b76Fc;
        address advisory = 0x18bc844b71ab711047F547D9843C0786572bf9aD;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

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

        marketingWallet = address(0xe6EB93ad042f3DfC3004d1b124ff4Bd56e718EA7);
        revShareWallet = address(0xCd78FB0ef92AC2A393E57E08dD22Db22100d8669);

        buyMarketingFee = 5;
        buyRevShareFee = 0;
        buyTotalFees = buyMarketingFee + buyRevShareFee;

        sellMarketingFee = 5;
        sellRevShareFee = 0;
        sellTotalFees = sellMarketingFee + sellRevShareFee;

        previousFee = sellTotalFees;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(revShareWallet, true);
        excludeFromFees(disperse, true);
        excludeFromFees(stakingRewards, true);
        excludeFromFees(marketing, true);
        excludeFromFees(advisory, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(revShareWallet, true);
        excludeFromMaxTransaction(disperse, true);
        excludeFromMaxTransaction(stakingRewards, true);
        excludeFromMaxTransaction(marketing, true);
        excludeFromMaxTransaction(advisory, true);

        _mint(advisory, 3_000_000 ether);
        _mint(address(this), 6_455_909 ether);
        _mint(marketing, 10_000_000 ether);
        _mint(stakingRewards, 15_000_000 ether);
        _mint(owner(), 65_544_091 ether);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(
            address(this),
            uniswapV2Router.WETH()
        );
        if (uniswapV2Pair == address(0)) {
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
                .createPair(address(this), uniswapV2Router.WETH());
        }
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            3_269_377 ether,
            0,
            0,
            owner(),
            block.timestamp
        );

        maxTransactionAmount = (totalSupply() * 2) / 100;
        maxWallet = (totalSupply() * 2) / 100;

        tokensForMarketing = 3_186_532 ether;

        tradingActive = true;
        swapEnabled = true;
    }

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

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

    function updateBuyFees(uint256 _marketingFee, uint256 _revShareFee)
        external
        onlyOwner
    {
        buyMarketingFee = _marketingFee;
        buyRevShareFee = _revShareFee;
        buyTotalFees = buyMarketingFee + buyRevShareFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(uint256 _marketingFee, uint256 _revShareFee)
        external
        onlyOwner
    {
        sellMarketingFee = _marketingFee;
        sellRevShareFee = _revShareFee;
        sellTotalFees = sellMarketingFee + sellRevShareFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateRevShareWallet(address _revShareWallet) external onlyOwner {
        require(_revShareWallet != address(0), "ERC20: Address 0");
        address oldWallet = revShareWallet;
        revShareWallet = _revShareWallet;
        emit revShareWalletUpdated(revShareWallet, oldWallet);
    }

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

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

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

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

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(
            totalTokensToSwap
        );

        tokensForMarketing = 0;
        tokensForRevShare = 0;

        (success, ) = address(revShareWallet).call{value: ethForRevShare}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_revShareFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_revShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_revShareFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805461ffff19169055600760a09081526611985c9b509bdd60ca1b60c052610120604052600460e0908152634641524d60e01b6101005260036200004683826200077b565b5060046200005582826200077b565b505050620000726200006c6200039160201b60201c565b62000395565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526a52b7d2dcc80cd2e40000009073d152f549545093347a162dce210e7293f1452150907304afd736529e52790c15e81c0e5bb5fc5731acc6907393ac8c5c57b8e5b592bc91238340ce894e9b76fc907318bc844b71ab711047f547d9843c0786572bf9ad9062000101903090600019620003e7565b6009859055600b8590556127106200011b8660056200085d565b6200012791906200087d565b600a55600780546001600160a01b031990811673e6eb93ad042f3dfc3004d1b124ff4bd56e718ea7179091556008805490911673cd78fb0ef92ac2a393e57e08dd22db22100d86691790556005600e8190556000600f8190556200018b91620008a0565b600d556005601181905560006012819055620001a791620008a0565b6010819055601555620001ce620001c66005546001600160a01b031690565b600162000513565b620001db30600162000513565b620001ea61dead600162000513565b60075462000203906001600160a01b0316600162000513565b6008546200021c906001600160a01b0316600162000513565b6200022984600162000513565b6200023683600162000513565b6200024382600162000513565b6200025081600162000513565b6200026f620002676005546001600160a01b031690565b60016200057c565b6200027c3060016200057c565b6200028b61dead60016200057c565b6080516200029b9060016200057c565b600754620002b4906001600160a01b031660016200057c565b600854620002cd906001600160a01b031660016200057c565b620002da8460016200057c565b620002e78360016200057c565b620002f48260016200057c565b620003018160016200057c565b62000318816a027b46536c66c8e3000000620005b1565b6200032f306a05571787356429d2740000620005b1565b62000346826a084595161401484a000000620005b1565b6200035d836a0c685fa11e01ec6f000000620005b1565b62000386620003746005546001600160a01b031690565b6a3637804af43eab758c0000620005b1565b5050505050620008b6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166200044f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620004b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000446565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6200051d62000674565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200058662000674565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216620006095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000446565b80600260008282546200061d9190620008a0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000446565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200070257607f821691505b6020821081036200072357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006d257600081815260208120601f850160051c81016020861015620007525750805b601f850160051c820191505b8181101562000773578281556001016200075e565b505050505050565b81516001600160401b03811115620007975762000797620006d7565b620007af81620007a88454620006ed565b8462000729565b602080601f831160018114620007e75760008415620007ce5750858301515b600019600386901b1c1916600185901b17855562000773565b600085815260208120601f198616915b828110156200081857888601518255948401946001909101908401620007f7565b5085821015620008375787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000877576200087762000847565b92915050565b6000826200089b57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000877576200087762000847565b60805161292162000911600039600081816102cf01528181610959015281816109ea01528181610afe01528181610b8f01528181610cd501528181610d84015281816123620152818161241b015261245701526129216000f3fe6080604052600436106102345760003560e01c8063782c4e991161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e146106a1578063e2f45605146106c1578063f2fde38b146106d7578063f5648a4f146106f7578063f8b45b051461070c57600080fd5b8063c024666814610615578063c8c8ebe414610635578063cb9637281461064b578063d257b34f1461066b578063d85ba0631461068b57600080fd5b8063a457c2d7116100f2578063a457c2d71461057b578063a9059cbb1461059b578063aacebbe3146105bb578063adee28ff146105db578063bbc0c742146105fb57600080fd5b8063782c4e99146104f35780638a8c523c146105135780638da5cb5b1461052857806395d89b4114610546578063961883991461055b57600080fd5b806342966c68116101bc5780636ddd1713116101805780636ddd17131461044957806370a0823114610468578063715018a61461049e5780637571336a146104b357806375f0a874146104d357600080fd5b806342966c681461039a57806349bd5a5e146103ba5780634fbee193146103da57806366ca9b83146104135780636a486a8e1461043357600080fd5b806318160ddd1161020357806318160ddd1461030957806323b872dd1461032857806327c8f83514610348578063313ce5671461035e578063395093511461037a57600080fd5b806302dbd8f81461024057806306fdde0314610262578063095ea7b31461028d5780631694505e146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b3660046124cb565b610722565b005b34801561026e57600080fd5b50610277610775565b60405161028491906124ed565b60405180910390f35b34801561029957600080fd5b506102ad6102a8366004612550565b610807565b6040519015158152602001610284565b3480156102c957600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610284565b34801561031557600080fd5b506002545b604051908152602001610284565b34801561033457600080fd5b506102ad61034336600461257c565b610821565b34801561035457600080fd5b506102f161dead81565b34801561036a57600080fd5b5060405160128152602001610284565b34801561038657600080fd5b506102ad610395366004612550565b610845565b3480156103a657600080fd5b506102606103b53660046125bd565b610867565b3480156103c657600080fd5b506006546102f1906001600160a01b031681565b3480156103e657600080fd5b506102ad6103f53660046125d6565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561041f57600080fd5b5061026061042e3660046124cb565b610874565b34801561043f57600080fd5b5061031a60105481565b34801561045557600080fd5b50600c546102ad90610100900460ff1681565b34801561047457600080fd5b5061031a6104833660046125d6565b6001600160a01b031660009081526020819052604090205490565b3480156104aa57600080fd5b506102606108b5565b3480156104bf57600080fd5b506102606104ce366004612601565b6108c9565b3480156104df57600080fd5b506007546102f1906001600160a01b031681565b3480156104ff57600080fd5b506008546102f1906001600160a01b031681565b34801561051f57600080fd5b506102606108fc565b34801561053457600080fd5b506005546001600160a01b03166102f1565b34801561055257600080fd5b50610277610eca565b34801561056757600080fd5b506102606105763660046124cb565b610ed9565b34801561058757600080fd5b506102ad610596366004612550565b610fee565b3480156105a757600080fd5b506102ad6105b6366004612550565b611069565b3480156105c757600080fd5b506102606105d63660046125d6565b611077565b3480156105e757600080fd5b506102606105f63660046125d6565b611119565b34801561060757600080fd5b50600c546102ad9060ff1681565b34801561062157600080fd5b50610260610630366004612601565b6111bb565b34801561064157600080fd5b5061031a60095481565b34801561065757600080fd5b506102606106663660046125d6565b611222565b34801561067757600080fd5b506102ad6106863660046125bd565b6113b2565b34801561069757600080fd5b5061031a600d5481565b3480156106ad57600080fd5b5061031a6106bc36600461263a565b6114f2565b3480156106cd57600080fd5b5061031a600a5481565b3480156106e357600080fd5b506102606106f23660046125d6565b61151d565b34801561070357600080fd5b50610260611593565b34801561071857600080fd5b5061031a600b5481565b61072a6115e8565b6011829055601281905561073e818361267e565b60108190556015819055600a10156107715760405162461bcd60e51b815260040161076890612691565b60405180910390fd5b5050565b606060038054610784906126d5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b0906126d5565b80156107fd5780601f106107d2576101008083540402835291602001916107fd565b820191906000526020600020905b8154815290600101906020018083116107e057829003601f168201915b5050505050905090565b600033610815818585611642565b60019150505b92915050565b60003361082f858285611766565b61083a8585856117da565b506001949350505050565b60003361081581858561085883836114f2565b610862919061267e565b611642565b6108713382611ea4565b50565b61087c6115e8565b600e829055600f819055610890818361267e565b600d819055600a10156107715760405162461bcd60e51b815260040161076890612691565b6108bd6115e8565b6108c76000611fd6565b565b6108d16115e8565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6109046115e8565b600c5460ff16156109575760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610768565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d9919061270f565b6001600160a01b031663e6a43905307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6a919061270f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610ab5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad9919061270f565b600680546001600160a01b0319166001600160a01b03929092169182179055610ca1577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7e919061270f565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f919061270f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c80919061270f565b600680546001600160a01b0319166001600160a01b03929092169190911790555b600654610cbb9030906001600160a01b0316600019611642565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d53919061272c565b50600654610d6b906001600160a01b03166001612028565b600654610d82906001600160a01b031660016108c9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71947306a02b45148450e4553640000600080610dd46005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610e3c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e619190612749565b5050506064610e6f60025490565b610e7a906002612777565b610e84919061278e565b6009556064610e9260025490565b610e9d906002612777565b610ea7919061278e565b600b556a02a2c63ef055e47f100000601355600c805461ffff1916610101179055565b606060048054610784906126d5565b610ee16115e8565b6103e8610eed60025490565b610ef8906005612777565b610f02919061278e565b821015610f625760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610768565b6103e8610f6e60025490565b610f79906005612777565b610f83919061278e565b811015610fe65760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610768565b600b55600955565b60003381610ffc82866114f2565b90508381101561105c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610768565b61083a8286868403611642565b6000336108158185856117da565b61107f6115e8565b6001600160a01b0381166110c85760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610768565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b6111216115e8565b6001600160a01b03811661116a5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610768565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6111c36115e8565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61122a6115e8565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611271573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129591906127b0565b116112ce5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610768565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611315573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133991906127b0565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ad919061272c565b505050565b60006113bc6115e8565b620186a06113c960025490565b6113d4906001612777565b6113de919061278e565b8210156114535760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610768565b6103e861145f60025490565b61146a906005612777565b611474919061278e565b8211156114e95760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610768565b50600a55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6115256115e8565b6001600160a01b03811661158a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610768565b61087181611fd6565b61159b6115e8565b604051600090339047908381818185875af1925050503d80600081146115dd576040519150601f19603f3d011682016040523d82523d6000602084013e6115e2565b606091505b50505050565b6005546001600160a01b031633146108c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610768565b6001600160a01b0383166116a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610768565b6001600160a01b0382166117055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610768565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061177284846114f2565b905060001981146115e257818110156117cd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610768565b6115e28484848403611642565b6001600160a01b0383166118005760405162461bcd60e51b8152600401610768906127c9565b6001600160a01b0382166118265760405162461bcd60e51b81526004016107689061280e565b8060000361183a576113ad8383600061207c565b6005546001600160a01b0384811691161480159061186657506005546001600160a01b03838116911614155b801561187a57506001600160a01b03821615155b801561189157506001600160a01b03821661dead14155b80156118a75750600654600160a01b900460ff16155b15611bca57600c5460ff16611941576001600160a01b03831660009081526016602052604090205460ff16806118f557506001600160a01b03821660009081526016602052604090205460ff165b6119415760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610768565b6001600160a01b03831660009081526018602052604090205460ff16801561198257506001600160a01b03821660009081526017602052604090205460ff16155b15611a78576009548111156119ff5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610768565b600b546001600160a01b038316600090815260208190526040902054611a25908361267e565b1115611a735760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610768565b611bca565b6001600160a01b03821660009081526018602052604090205460ff168015611ab957506001600160a01b03831660009081526017602052604090205460ff16155b15611b3657600954811115611a735760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610768565b6001600160a01b03821660009081526017602052604090205460ff16611bca57600b546001600160a01b038316600090815260208190526040902054611b7c908361267e565b1115611bca5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610768565b30600090815260208190526040902054600a5481108015908190611bf55750600c54610100900460ff165b8015611c0b5750600654600160a01b900460ff16155b8015611c3057506001600160a01b03851660009081526018602052604090205460ff16155b8015611c5557506001600160a01b03851660009081526016602052604090205460ff16155b8015611c7a57506001600160a01b03841660009081526016602052604090205460ff16155b15611ca8576006805460ff60a01b1916600160a01b179055611c9a6121a6565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611cf657506001600160a01b03851660009081526016602052604090205460ff165b15611cff575060005b60008115611e8a576001600160a01b03861660009081526018602052604090205460ff168015611d3157506000601054115b15611dbf57611d566064611d50601054886122ec90919063ffffffff16565b906122ff565b905060105460115482611d699190612777565b611d73919061278e565b60136000828254611d84919061267e565b9091555050601054601254611d999083612777565b611da3919061278e565b60146000828254611db4919061267e565b90915550611e6c9050565b6001600160a01b03871660009081526018602052604090205460ff168015611de957506000600d54115b15611e6c57611e086064611d50600d54886122ec90919063ffffffff16565b9050600d54600e5482611e1b9190612777565b611e25919061278e565b60136000828254611e36919061267e565b9091555050600d54600f54611e4b9083612777565b611e55919061278e565b60146000828254611e66919061267e565b90915550505b8015611e7d57611e7d87308361207c565b611e878186612851565b94505b611e9587878761207c565b50506015546010555050505050565b6001600160a01b038216611f045760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610768565b6001600160a01b03821660009081526020819052604090205481811015611f785760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610768565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120a25760405162461bcd60e51b8152600401610768906127c9565b6001600160a01b0382166120c85760405162461bcd60e51b81526004016107689061280e565b6001600160a01b038316600090815260208190526040902054818110156121405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610768565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115e2565b30600090815260208190526040812054905060006014546013546121ca919061267e565b905060008215806121d9575081155b156121e357505050565b600a80546121f091612777565b83111561220757600a805461220491612777565b92505b6122108361230b565b6000479050600061223084611d50601454856122ec90919063ffffffff16565b6000601381905560148190556008546040519293506001600160a01b031691839181818185875af1925050503d8060008114612288576040519150601f19603f3d011682016040523d82523d6000602084013e61228d565b606091505b50506007546040519194506001600160a01b0316904790600081818185875af1925050503d80600081146122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b5050505050505050565b60006122f88284612777565b9392505050565b60006122f8828461278e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061234057612340612864565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e2919061270f565b816001815181106123f5576123f5612864565b60200260200101906001600160a01b031690816001600160a01b031681525050612440307f000000000000000000000000000000000000000000000000000000000000000084611642565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061249590859060009086903090429060040161287a565b600060405180830381600087803b1580156124af57600080fd5b505af11580156124c3573d6000803e3d6000fd5b505050505050565b600080604083850312156124de57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561251a578581018301518582016040015282016124fe565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461087157600080fd5b6000806040838503121561256357600080fd5b823561256e8161253b565b946020939093013593505050565b60008060006060848603121561259157600080fd5b833561259c8161253b565b925060208401356125ac8161253b565b929592945050506040919091013590565b6000602082840312156125cf57600080fd5b5035919050565b6000602082840312156125e857600080fd5b81356122f88161253b565b801515811461087157600080fd5b6000806040838503121561261457600080fd5b823561261f8161253b565b9150602083013561262f816125f3565b809150509250929050565b6000806040838503121561264d57600080fd5b82356126588161253b565b9150602083013561262f8161253b565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081b5761081b612668565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600181811c908216806126e957607f821691505b60208210810361270957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561272157600080fd5b81516122f88161253b565b60006020828403121561273e57600080fd5b81516122f8816125f3565b60008060006060848603121561275e57600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761081b5761081b612668565b6000826127ab57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156127c257600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561081b5761081b612668565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128ca5784516001600160a01b0316835293830193918301916001016128a5565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122028a377ca947cc24cf56fba63b2dc6dbc49f8e03698d20db8193ad6d08c3c733864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063782c4e991161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e146106a1578063e2f45605146106c1578063f2fde38b146106d7578063f5648a4f146106f7578063f8b45b051461070c57600080fd5b8063c024666814610615578063c8c8ebe414610635578063cb9637281461064b578063d257b34f1461066b578063d85ba0631461068b57600080fd5b8063a457c2d7116100f2578063a457c2d71461057b578063a9059cbb1461059b578063aacebbe3146105bb578063adee28ff146105db578063bbc0c742146105fb57600080fd5b8063782c4e99146104f35780638a8c523c146105135780638da5cb5b1461052857806395d89b4114610546578063961883991461055b57600080fd5b806342966c68116101bc5780636ddd1713116101805780636ddd17131461044957806370a0823114610468578063715018a61461049e5780637571336a146104b357806375f0a874146104d357600080fd5b806342966c681461039a57806349bd5a5e146103ba5780634fbee193146103da57806366ca9b83146104135780636a486a8e1461043357600080fd5b806318160ddd1161020357806318160ddd1461030957806323b872dd1461032857806327c8f83514610348578063313ce5671461035e578063395093511461037a57600080fd5b806302dbd8f81461024057806306fdde0314610262578063095ea7b31461028d5780631694505e146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b3660046124cb565b610722565b005b34801561026e57600080fd5b50610277610775565b60405161028491906124ed565b60405180910390f35b34801561029957600080fd5b506102ad6102a8366004612550565b610807565b6040519015158152602001610284565b3480156102c957600080fd5b506102f17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610284565b34801561031557600080fd5b506002545b604051908152602001610284565b34801561033457600080fd5b506102ad61034336600461257c565b610821565b34801561035457600080fd5b506102f161dead81565b34801561036a57600080fd5b5060405160128152602001610284565b34801561038657600080fd5b506102ad610395366004612550565b610845565b3480156103a657600080fd5b506102606103b53660046125bd565b610867565b3480156103c657600080fd5b506006546102f1906001600160a01b031681565b3480156103e657600080fd5b506102ad6103f53660046125d6565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561041f57600080fd5b5061026061042e3660046124cb565b610874565b34801561043f57600080fd5b5061031a60105481565b34801561045557600080fd5b50600c546102ad90610100900460ff1681565b34801561047457600080fd5b5061031a6104833660046125d6565b6001600160a01b031660009081526020819052604090205490565b3480156104aa57600080fd5b506102606108b5565b3480156104bf57600080fd5b506102606104ce366004612601565b6108c9565b3480156104df57600080fd5b506007546102f1906001600160a01b031681565b3480156104ff57600080fd5b506008546102f1906001600160a01b031681565b34801561051f57600080fd5b506102606108fc565b34801561053457600080fd5b506005546001600160a01b03166102f1565b34801561055257600080fd5b50610277610eca565b34801561056757600080fd5b506102606105763660046124cb565b610ed9565b34801561058757600080fd5b506102ad610596366004612550565b610fee565b3480156105a757600080fd5b506102ad6105b6366004612550565b611069565b3480156105c757600080fd5b506102606105d63660046125d6565b611077565b3480156105e757600080fd5b506102606105f63660046125d6565b611119565b34801561060757600080fd5b50600c546102ad9060ff1681565b34801561062157600080fd5b50610260610630366004612601565b6111bb565b34801561064157600080fd5b5061031a60095481565b34801561065757600080fd5b506102606106663660046125d6565b611222565b34801561067757600080fd5b506102ad6106863660046125bd565b6113b2565b34801561069757600080fd5b5061031a600d5481565b3480156106ad57600080fd5b5061031a6106bc36600461263a565b6114f2565b3480156106cd57600080fd5b5061031a600a5481565b3480156106e357600080fd5b506102606106f23660046125d6565b61151d565b34801561070357600080fd5b50610260611593565b34801561071857600080fd5b5061031a600b5481565b61072a6115e8565b6011829055601281905561073e818361267e565b60108190556015819055600a10156107715760405162461bcd60e51b815260040161076890612691565b60405180910390fd5b5050565b606060038054610784906126d5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b0906126d5565b80156107fd5780601f106107d2576101008083540402835291602001916107fd565b820191906000526020600020905b8154815290600101906020018083116107e057829003601f168201915b5050505050905090565b600033610815818585611642565b60019150505b92915050565b60003361082f858285611766565b61083a8585856117da565b506001949350505050565b60003361081581858561085883836114f2565b610862919061267e565b611642565b6108713382611ea4565b50565b61087c6115e8565b600e829055600f819055610890818361267e565b600d819055600a10156107715760405162461bcd60e51b815260040161076890612691565b6108bd6115e8565b6108c76000611fd6565b565b6108d16115e8565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6109046115e8565b600c5460ff16156109575760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610768565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d9919061270f565b6001600160a01b031663e6a43905307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6a919061270f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610ab5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad9919061270f565b600680546001600160a01b0319166001600160a01b03929092169182179055610ca1577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7e919061270f565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f919061270f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c80919061270f565b600680546001600160a01b0319166001600160a01b03929092169190911790555b600654610cbb9030906001600160a01b0316600019611642565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d53919061272c565b50600654610d6b906001600160a01b03166001612028565b600654610d82906001600160a01b031660016108c9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71947306a02b45148450e4553640000600080610dd46005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610e3c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e619190612749565b5050506064610e6f60025490565b610e7a906002612777565b610e84919061278e565b6009556064610e9260025490565b610e9d906002612777565b610ea7919061278e565b600b556a02a2c63ef055e47f100000601355600c805461ffff1916610101179055565b606060048054610784906126d5565b610ee16115e8565b6103e8610eed60025490565b610ef8906005612777565b610f02919061278e565b821015610f625760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610768565b6103e8610f6e60025490565b610f79906005612777565b610f83919061278e565b811015610fe65760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610768565b600b55600955565b60003381610ffc82866114f2565b90508381101561105c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610768565b61083a8286868403611642565b6000336108158185856117da565b61107f6115e8565b6001600160a01b0381166110c85760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610768565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b6111216115e8565b6001600160a01b03811661116a5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610768565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6111c36115e8565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61122a6115e8565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611271573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129591906127b0565b116112ce5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610768565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611315573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133991906127b0565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ad919061272c565b505050565b60006113bc6115e8565b620186a06113c960025490565b6113d4906001612777565b6113de919061278e565b8210156114535760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610768565b6103e861145f60025490565b61146a906005612777565b611474919061278e565b8211156114e95760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610768565b50600a55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6115256115e8565b6001600160a01b03811661158a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610768565b61087181611fd6565b61159b6115e8565b604051600090339047908381818185875af1925050503d80600081146115dd576040519150601f19603f3d011682016040523d82523d6000602084013e6115e2565b606091505b50505050565b6005546001600160a01b031633146108c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610768565b6001600160a01b0383166116a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610768565b6001600160a01b0382166117055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610768565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061177284846114f2565b905060001981146115e257818110156117cd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610768565b6115e28484848403611642565b6001600160a01b0383166118005760405162461bcd60e51b8152600401610768906127c9565b6001600160a01b0382166118265760405162461bcd60e51b81526004016107689061280e565b8060000361183a576113ad8383600061207c565b6005546001600160a01b0384811691161480159061186657506005546001600160a01b03838116911614155b801561187a57506001600160a01b03821615155b801561189157506001600160a01b03821661dead14155b80156118a75750600654600160a01b900460ff16155b15611bca57600c5460ff16611941576001600160a01b03831660009081526016602052604090205460ff16806118f557506001600160a01b03821660009081526016602052604090205460ff165b6119415760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610768565b6001600160a01b03831660009081526018602052604090205460ff16801561198257506001600160a01b03821660009081526017602052604090205460ff16155b15611a78576009548111156119ff5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610768565b600b546001600160a01b038316600090815260208190526040902054611a25908361267e565b1115611a735760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610768565b611bca565b6001600160a01b03821660009081526018602052604090205460ff168015611ab957506001600160a01b03831660009081526017602052604090205460ff16155b15611b3657600954811115611a735760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610768565b6001600160a01b03821660009081526017602052604090205460ff16611bca57600b546001600160a01b038316600090815260208190526040902054611b7c908361267e565b1115611bca5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610768565b30600090815260208190526040902054600a5481108015908190611bf55750600c54610100900460ff165b8015611c0b5750600654600160a01b900460ff16155b8015611c3057506001600160a01b03851660009081526018602052604090205460ff16155b8015611c5557506001600160a01b03851660009081526016602052604090205460ff16155b8015611c7a57506001600160a01b03841660009081526016602052604090205460ff16155b15611ca8576006805460ff60a01b1916600160a01b179055611c9a6121a6565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611cf657506001600160a01b03851660009081526016602052604090205460ff165b15611cff575060005b60008115611e8a576001600160a01b03861660009081526018602052604090205460ff168015611d3157506000601054115b15611dbf57611d566064611d50601054886122ec90919063ffffffff16565b906122ff565b905060105460115482611d699190612777565b611d73919061278e565b60136000828254611d84919061267e565b9091555050601054601254611d999083612777565b611da3919061278e565b60146000828254611db4919061267e565b90915550611e6c9050565b6001600160a01b03871660009081526018602052604090205460ff168015611de957506000600d54115b15611e6c57611e086064611d50600d54886122ec90919063ffffffff16565b9050600d54600e5482611e1b9190612777565b611e25919061278e565b60136000828254611e36919061267e565b9091555050600d54600f54611e4b9083612777565b611e55919061278e565b60146000828254611e66919061267e565b90915550505b8015611e7d57611e7d87308361207c565b611e878186612851565b94505b611e9587878761207c565b50506015546010555050505050565b6001600160a01b038216611f045760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610768565b6001600160a01b03821660009081526020819052604090205481811015611f785760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610768565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120a25760405162461bcd60e51b8152600401610768906127c9565b6001600160a01b0382166120c85760405162461bcd60e51b81526004016107689061280e565b6001600160a01b038316600090815260208190526040902054818110156121405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610768565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115e2565b30600090815260208190526040812054905060006014546013546121ca919061267e565b905060008215806121d9575081155b156121e357505050565b600a80546121f091612777565b83111561220757600a805461220491612777565b92505b6122108361230b565b6000479050600061223084611d50601454856122ec90919063ffffffff16565b6000601381905560148190556008546040519293506001600160a01b031691839181818185875af1925050503d8060008114612288576040519150601f19603f3d011682016040523d82523d6000602084013e61228d565b606091505b50506007546040519194506001600160a01b0316904790600081818185875af1925050503d80600081146122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b5050505050505050565b60006122f88284612777565b9392505050565b60006122f8828461278e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061234057612340612864565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e2919061270f565b816001815181106123f5576123f5612864565b60200260200101906001600160a01b031690816001600160a01b031681525050612440307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611642565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061249590859060009086903090429060040161287a565b600060405180830381600087803b1580156124af57600080fd5b505af11580156124c3573d6000803e3d6000fd5b505050505050565b600080604083850312156124de57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561251a578581018301518582016040015282016124fe565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461087157600080fd5b6000806040838503121561256357600080fd5b823561256e8161253b565b946020939093013593505050565b60008060006060848603121561259157600080fd5b833561259c8161253b565b925060208401356125ac8161253b565b929592945050506040919091013590565b6000602082840312156125cf57600080fd5b5035919050565b6000602082840312156125e857600080fd5b81356122f88161253b565b801515811461087157600080fd5b6000806040838503121561261457600080fd5b823561261f8161253b565b9150602083013561262f816125f3565b809150509250929050565b6000806040838503121561264d57600080fd5b82356126588161253b565b9150602083013561262f8161253b565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081b5761081b612668565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600181811c908216806126e957607f821691505b60208210810361270957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561272157600080fd5b81516122f88161253b565b60006020828403121561273e57600080fd5b81516122f8816125f3565b60008060006060848603121561275e57600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761081b5761081b612668565b6000826127ab57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156127c257600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561081b5761081b612668565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128ca5784516001600160a01b0316835293830193918301916001016128a5565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122028a377ca947cc24cf56fba63b2dc6dbc49f8e03698d20db8193ad6d08c3c733864736f6c63430008110033

Deployed Bytecode Sourcemap

34933:13708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41722:381;;;;;;;;;;-1:-1:-1;41722:381:0;;;;;:::i;:::-;;:::i;:::-;;9668:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12169:242;;;;;;;;;;-1:-1:-1;12169:242:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;12169:242:0;1276:187:1;35012:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1659:32:1;;;1641:51;;1629:2;1614:18;35012:51:0;1468:230:1;10797:108:0;;;;;;;;;;-1:-1:-1;10885:12:0;;10797:108;;;1849:25:1;;;1837:2;1822:18;10797:108:0;1703:177:1;12991:295:0;;;;;;;;;;-1:-1:-1;12991:295:0;;;;;:::i;:::-;;:::i;35105:53::-;;;;;;;;;;;;35151:6;35105:53;;10639:93;;;;;;;;;;-1:-1:-1;10639:93:0;;10722:2;2696:36:1;;2684:2;2669:18;10639:93:0;2554:184:1;13695:270:0;;;;;;;;;;-1:-1:-1;13695:270:0;;;;;:::i;:::-;;:::i;38819:83::-;;;;;;;;;;-1:-1:-1;38819:83:0;;;;;:::i;:::-;;:::i;35070:28::-;;;;;;;;;;-1:-1:-1;35070:28:0;;;;-1:-1:-1;;;;;35070:28:0;;;43604:126;;;;;;;;;;-1:-1:-1;43604:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;43694:28:0;43670:4;43694:28;;;:19;:28;;;;;;;;;43604:126;41378:336;;;;;;;;;;-1:-1:-1;41378:336:0;;;;;:::i;:::-;;:::i;35578:28::-;;;;;;;;;;;;;;;;35427:31;;;;;;;;;;-1:-1:-1;35427:31:0;;;;;;;;;;;10968:177;;;;;;;;;;-1:-1:-1;10968:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11119:18:0;11087:7;11119:18;;;;;;;;;;;;10968:177;3048:103;;;;;;;;;;;;;:::i;41203:167::-;;;;;;;;;;-1:-1:-1;41203:167:0;;;;;:::i;:::-;;:::i;35197:30::-;;;;;;;;;;-1:-1:-1;35197:30:0;;;;-1:-1:-1;;;;;35197:30:0;;;35234:29;;;;;;;;;;-1:-1:-1;35234:29:0;;;;-1:-1:-1;;;;;35234:29:0;;;38910:1251;;;;;;;;;;;;;:::i;2407:87::-;;;;;;;;;;-1:-1:-1;2480:6:0;;-1:-1:-1;;;;;2480:6:0;2407:87;;9887:104;;;;;;;;;;;;;:::i;40688:507::-;;;;;;;;;;-1:-1:-1;40688:507:0;;;;;:::i;:::-;;:::i;14468:505::-;;;;;;;;;;-1:-1:-1;14468:505:0;;;;;:::i;:::-;;:::i;11351:234::-;;;;;;;;;;-1:-1:-1;11351:234:0;;;;;:::i;:::-;;:::i;42111:334::-;;;;;;;;;;-1:-1:-1;42111:334:0;;;;;:::i;:::-;;:::i;42453:303::-;;;;;;;;;;-1:-1:-1;42453:303:0;;;;;:::i;:::-;;:::i;35387:33::-;;;;;;;;;;-1:-1:-1;35387:33:0;;;;;;;;42764:182;;;;;;;;;;-1:-1:-1;42764:182:0;;;;;:::i;:::-;;:::i;35272:35::-;;;;;;;;;;;;;;;;43145:255;;;;;;;;;;-1:-1:-1;43145:255:0;;;;;:::i;:::-;;:::i;40169:511::-;;;;;;;;;;-1:-1:-1;40169:511:0;;;;;:::i;:::-;;:::i;35467:27::-;;;;;;;;;;;;;;;;11648:201;;;;;;;;;;-1:-1:-1;11648:201:0;;;;;:::i;:::-;;:::i;35314:33::-;;;;;;;;;;;;;;;;3306:238;;;;;;;;;;-1:-1:-1;3306:238:0;;;;;:::i;:::-;;:::i;42954:183::-;;;;;;;;;;;;;:::i;35354:24::-;;;;;;;;;;;;;;;;41722:381;2293:13;:11;:13::i;:::-;41844:16:::1;:32:::0;;;41887:15:::1;:30:::0;;;41944:34:::1;41905:12:::0;41863:13;41944:34:::1;:::i;:::-;41928:13;:50:::0;;;41989:11:::1;:27:::0;;;42052:2:::1;-1:-1:-1::0;42035:19:0::1;42027:68;;;;-1:-1:-1::0;;;42027:68:0::1;;;;;;;:::i;:::-;;;;;;;;;41722:381:::0;;:::o;9668:100::-;9722:13;9755:5;9748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9668:100;:::o;12169:242::-;12288:4;1032:10;12349:32;1032:10;12365:7;12374:6;12349:8;:32::i;:::-;12399:4;12392:11;;;12169:242;;;;;:::o;12991:295::-;13122:4;1032:10;13180:38;13196:4;1032:10;13211:6;13180:15;:38::i;:::-;13229:27;13239:4;13245:2;13249:6;13229:9;:27::i;:::-;-1:-1:-1;13274:4:0;;12991:295;-1:-1:-1;;;;12991:295:0:o;13695:270::-;13810:4;1032:10;13871:64;1032:10;13887:7;13924:10;13896:25;1032:10;13887:7;13896:9;:25::i;:::-;:38;;;;:::i;:::-;13871:8;:64::i;38819:83::-;38869:25;38875:10;38887:6;38869:5;:25::i;:::-;38819:83;:::o;41378:336::-;2293:13;:11;:13::i;:::-;41499:15:::1;:31:::0;;;41541:14:::1;:29:::0;;;41596:32:::1;41558:12:::0;41517:13;41596:32:::1;:::i;:::-;41581:12;:47:::0;;;41663:2:::1;-1:-1:-1::0;41647:18:0::1;41639:67;;;;-1:-1:-1::0;;;41639:67:0::1;;;;;;;:::i;3048:103::-:0;2293:13;:11;:13::i;:::-;3113:30:::1;3140:1;3113:18;:30::i;:::-;3048:103::o:0;41203:167::-;2293:13;:11;:13::i;:::-;-1:-1:-1;;;;;41316:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41316:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41203:167::o;38910:1251::-;2293:13;:11;:13::i;:::-;38974::::1;::::0;::::1;;38973:14;38965:50;;;::::0;-1:-1:-1;;;38965:50:0;;5337:2:1;38965:50:0::1;::::0;::::1;5319:21:1::0;5376:2;5356:18;;;5349:30;5415:25;5395:18;;;5388:53;5458:18;;38965:50:0::1;5135:347:1::0;38965:50:0::1;39062:15;-1:-1:-1::0;;;;;39062:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39044:52:0::1;;39119:4;39139:15;-1:-1:-1::0;;;;;39139:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39044:128;::::0;-1:-1:-1;;;;;;39044:128:0::1;::::0;;;;;;-1:-1:-1;;;;;5973:15:1;;;39044:128:0::1;::::0;::::1;5955:34:1::0;6025:15;;6005:18;;;5998:43;5890:18;;39044:128:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39028:13;:144:::0;;-1:-1:-1;;;;;;39028:144:0::1;-1:-1:-1::0;;;;;39028:144:0;;;::::1;::::0;;::::1;::::0;;39183:188:::1;;39265:15;-1:-1:-1::0;;;;;39265:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39247:73:0::1;;39329:4;39336:15;-1:-1:-1::0;;;;;39336:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39247:112;::::0;-1:-1:-1;;;;;;39247:112:0::1;::::0;;;;;;-1:-1:-1;;;;;5973:15:1;;;39247:112:0::1;::::0;::::1;5955:34:1::0;6025:15;;6005:18;;;5998:43;5890:18;;39247:112:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39231:13;:128:::0;;-1:-1:-1;;;;;;39231:128:0::1;-1:-1:-1::0;;;;;39231:128:0;;;::::1;::::0;;;::::1;::::0;;39183:188:::1;39413:13;::::0;39381:66:::1;::::0;39398:4:::1;::::0;-1:-1:-1;;;;;39413:13:0::1;-1:-1:-1::0;;39381:8:0::1;:66::i;:::-;39465:13;::::0;39458:111:::1;::::0;-1:-1:-1;;;39458:111:0;;-1:-1:-1;;;;;39510:15:0::1;6244:32:1::0;;39458:111:0::1;::::0;::::1;6226:51:1::0;-1:-1:-1;;6293:18:1;;;6286:34;39465:13:0;;::::1;::::0;39458:29:::1;::::0;6199:18:1;;39458:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;39619:13:0::1;::::0;39582:58:::1;::::0;-1:-1:-1;;;;;39619:13:0::1;::::0;39582:28:::1;:58::i;:::-;39685:13;::::0;39651:55:::1;::::0;-1:-1:-1;;;;;39685:13:0::1;::::0;39651:25:::1;:55::i;:::-;39719:15;-1:-1:-1::0;;;;;39719:31:0::1;;39758:21;39803:4;39823:15;39853:1;39869::::0;39885:7:::1;2480:6:::0;;-1:-1:-1;;;;;2480:6:0;;2407:87;39885:7:::1;39719:214;::::0;::::1;::::0;;;-1:-1:-1;;;;;;39719:214:0;;;-1:-1:-1;;;;;6972:15:1;;;39719:214:0::1;::::0;::::1;6954:34:1::0;7004:18;;;6997:34;;;;7047:18;;;7040:34;;;;7090:18;;;7083:34;7154:15;;;7133:19;;;7126:44;39907:15:0::1;7186:19:1::0;;;7179:35;6888:19;;39719:214:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39991:3;39970:13;10885:12:::0;;;10797:108;39970:13:::1;:17;::::0;39986:1:::1;39970:17;:::i;:::-;39969:25;;;;:::i;:::-;39946:20;:48:::0;40039:3:::1;40018:13;10885:12:::0;;;10797:108;40018:13:::1;:17;::::0;40034:1:::1;40018:17;:::i;:::-;40017:25;;;;:::i;:::-;40005:9;:37:::0;40076:15:::1;40055:18;:36:::0;40104:13:::1;:20:::0;;-1:-1:-1;;40135:18:0;;;;;38910:1251::o;9887:104::-;9943:13;9976:7;9969:14;;;;;:::i;40688:507::-;2293:13;:11;:13::i;:::-;40882:4:::1;40861:13;10885:12:::0;;;10797:108;40861:13:::1;:17;::::0;40877:1:::1;40861:17;:::i;:::-;40860:26;;;;:::i;:::-;40846:9;:41;;40824:131;;;::::0;-1:-1:-1;;;40824:131:0;;8133:2:1;40824:131:0::1;::::0;::::1;8115:21:1::0;8172:2;8152:18;;;8145:30;8211:34;8191:18;;;8184:62;-1:-1:-1;;;8262:18:1;;;8255:38;8310:19;;40824:131:0::1;7931:404:1::0;40824:131:0::1;41030:4;41009:13;10885:12:::0;;;10797:108;41009:13:::1;:17;::::0;41025:1:::1;41009:17;:::i;:::-;41008:26;;;;:::i;:::-;40988:15;:47;;40966:140;;;::::0;-1:-1:-1;;;40966:140:0;;8542:2:1;40966:140:0::1;::::0;::::1;8524:21:1::0;8581:2;8561:18;;;8554:30;8620:34;8600:18;;;8593:62;-1:-1:-1;;;8671:18:1;;;8664:41;8722:19;;40966:140:0::1;8340:407:1::0;40966:140:0::1;41117:9;:27:::0;41155:20:::1;:32:::0;40688:507::o;14468:505::-;14588:4;1032:10;14588:4;14676:25;1032:10;14693:7;14676:9;:25::i;:::-;14649:52;;14754:15;14734:16;:35;;14712:122;;;;-1:-1:-1;;;14712:122:0;;8954:2:1;14712:122:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;-1:-1:-1;;;9083:18:1;;;9076:35;9128:19;;14712:122:0;8752:401:1;14712:122:0;14870:60;14879:5;14886:7;14914:15;14895:16;:34;14870:8;:60::i;11351:234::-;11466:4;1032:10;11527:28;1032:10;11544:2;11548:6;11527:9;:28::i;42111:334::-;2293:13;:11;:13::i;:::-;-1:-1:-1;;;;;42229:30:0;::::1;42221:59;;;::::0;-1:-1:-1;;;42221:59:0;;9360:2:1;42221:59:0::1;::::0;::::1;9342:21:1::0;9399:2;9379:18;;;9372:30;-1:-1:-1;;;9418:18:1;;;9411:46;9474:18;;42221:59:0::1;9158:340:1::0;42221:59:0::1;42311:15;::::0;;-1:-1:-1;;;;;42337:34:0;;::::1;-1:-1:-1::0;;;;;;42337:34:0;::::1;::::0;::::1;::::0;;;42387:50:::1;::::0;42311:15;::::1;::::0;;;42387:50:::1;::::0;42291:17:::1;::::0;42387:50:::1;42210:235;42111:334:::0;:::o;42453:303::-;2293:13;:11;:13::i;:::-;-1:-1:-1;;;;;42546:29:0;::::1;42538:58;;;::::0;-1:-1:-1;;;42538:58:0;;9360:2:1;42538:58:0::1;::::0;::::1;9342:21:1::0;9399:2;9379:18;;;9372:30;-1:-1:-1;;;9418:18:1;;;9411:46;9474:18;;42538:58:0::1;9158:340:1::0;42538:58:0::1;42627:14;::::0;;-1:-1:-1;;;;;42652:32:0;;::::1;-1:-1:-1::0;;;;;;42652:32:0;::::1;::::0;::::1;::::0;;;42700:48:::1;::::0;42627:14;::::1;::::0;;;42700:48:::1;::::0;42607:17:::1;::::0;42700:48:::1;42527:229;42453:303:::0;:::o;42764:182::-;2293:13;:11;:13::i;:::-;-1:-1:-1;;;;;42849:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;42849:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42904:34;;1416:41:1;;;42904:34:0::1;::::0;1389:18:1;42904:34:0::1;;;;;;;42764:182:::0;;:::o;43145:255::-;2293:13;:11;:13::i;:::-;43223:36:::1;::::0;-1:-1:-1;;;43223:36:0;;43253:4:::1;43223:36;::::0;::::1;1641:51:1::0;43262:1:0::1;::::0;-1:-1:-1;;;;;43223:21:0;::::1;::::0;::::1;::::0;1614:18:1;;43223:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;43215:62;;;::::0;-1:-1:-1;;;43215:62:0;;9894:2:1;43215:62:0::1;::::0;::::1;9876:21:1::0;9933:1;9913:18;;;9906:29;-1:-1:-1;;;9951:18:1;;;9944:39;10000:18;;43215:62:0::1;9692:332:1::0;43215:62:0::1;43305:36;::::0;-1:-1:-1;;;43305:36:0;;43335:4:::1;43305:36;::::0;::::1;1641:51:1::0;43288:14:0::1;::::0;-1:-1:-1;;;;;43305:21:0;::::1;::::0;::::1;::::0;1614:18:1;;43305:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43352:40;::::0;-1:-1:-1;;;43352:40:0;;43373:10:::1;43352:40;::::0;::::1;6226:51:1::0;6293:18;;;6286:34;;;43288:53:0;;-1:-1:-1;;;;;;43352:20:0;::::1;::::0;::::1;::::0;6199:18:1;;43352:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43204:196;43145:255:::0;:::o;40169:511::-;40277:4;2293:13;:11;:13::i;:::-;40356:6:::1;40335:13;10885:12:::0;;;10797:108;40335:13:::1;:17;::::0;40351:1:::1;40335:17;:::i;:::-;40334:28;;;;:::i;:::-;40321:9;:41;;40299:151;;;::::0;-1:-1:-1;;;40299:151:0;;10231:2:1;40299:151:0::1;::::0;::::1;10213:21:1::0;10270:2;10250:18;;;10243:30;10309:34;10289:18;;;10282:62;10380:30;10360:18;;;10353:58;10428:19;;40299:151:0::1;10029:424:1::0;40299:151:0::1;40518:4;40497:13;10885:12:::0;;;10797:108;40497:13:::1;:17;::::0;40513:1:::1;40497:17;:::i;:::-;40496:26;;;;:::i;:::-;40483:9;:39;;40461:148;;;::::0;-1:-1:-1;;;40461:148:0;;10660:2:1;40461:148:0::1;::::0;::::1;10642:21:1::0;10699:2;10679:18;;;10672:30;10738:34;10718:18;;;10711:62;10809:29;10789:18;;;10782:57;10856:19;;40461:148:0::1;10458:423:1::0;40461:148:0::1;-1:-1:-1::0;40620:18:0::1;:30:::0;40668:4:::1;::::0;40169:511::o;11648:201::-;-1:-1:-1;;;;;11814:18:0;;;11782:7;11814:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11648:201::o;3306:238::-;2293:13;:11;:13::i;:::-;-1:-1:-1;;;;;3409:22:0;::::1;3387:110;;;::::0;-1:-1:-1;;;3387:110:0;;11088:2:1;3387:110:0::1;::::0;::::1;11070:21:1::0;11127:2;11107:18;;;11100:30;11166:34;11146:18;;;11139:62;-1:-1:-1;;;11217:18:1;;;11210:36;11263:19;;3387:110:0::1;10886:402:1::0;3387:110:0::1;3508:28;3527:8;3508:18;:28::i;42954:183::-:0;2293:13;:11;:13::i;:::-;43047:82:::1;::::0;43010:12:::1;::::0;43055:10:::1;::::0;43079:21:::1;::::0;43010:12;43047:82;43010:12;43047:82;43079:21;43055:10;43047:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;42954:183:0:o;2572:132::-;2480:6;;-1:-1:-1;;;;;2480:6:0;1032:10;2636:23;2628:68;;;;-1:-1:-1;;;2628:68:0;;11705:2:1;2628:68:0;;;11687:21:1;;;11724:18;;;11717:30;11783:34;11763:18;;;11756:62;11835:18;;2628:68:0;11503:356:1;18601:380:0;-1:-1:-1;;;;;18737:19:0;;18729:68;;;;-1:-1:-1;;;18729:68:0;;12066:2:1;18729:68:0;;;12048:21:1;12105:2;12085:18;;;12078:30;12144:34;12124:18;;;12117:62;-1:-1:-1;;;12195:18:1;;;12188:34;12239:19;;18729:68:0;11864:400:1;18729:68:0;-1:-1:-1;;;;;18816:21:0;;18808:68;;;;-1:-1:-1;;;18808:68:0;;12471:2:1;18808:68:0;;;12453:21:1;12510:2;12490:18;;;12483:30;12549:34;12529:18;;;12522:62;-1:-1:-1;;;12600:18:1;;;12593:32;12642:19;;18808:68:0;12269:398:1;18808:68:0;-1:-1:-1;;;;;18889:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18941:32;;1849:25:1;;;18941:32:0;;1822:18:1;18941:32:0;;;;;;;18601:380;;;:::o;19272:502::-;19407:24;19434:25;19444:5;19451:7;19434:9;:25::i;:::-;19407:52;;-1:-1:-1;;19474:16:0;:37;19470:297;;19574:6;19554:16;:26;;19528:117;;;;-1:-1:-1;;;19528:117:0;;12874:2:1;19528:117:0;;;12856:21:1;12913:2;12893:18;;;12886:30;12952:31;12932:18;;;12925:59;13001:18;;19528:117:0;12672:353:1;19528:117:0;19689:51;19698:5;19705:7;19733:6;19714:16;:25;19689:8;:51::i;43738:3480::-;-1:-1:-1;;;;;43870:18:0;;43862:68;;;;-1:-1:-1;;;43862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43949:16:0;;43941:64;;;;-1:-1:-1;;;43941:64:0;;;;;;;:::i;:::-;44022:6;44032:1;44022:11;44018:93;;44050:28;44066:4;44072:2;44076:1;44050:15;:28::i;44018:93::-;2480:6;;-1:-1:-1;;;;;44141:15:0;;;2480:6;;44141:15;;;;:45;;-1:-1:-1;2480:6:0;;-1:-1:-1;;;;;44173:13:0;;;2480:6;;44173:13;;44141:45;:78;;;;-1:-1:-1;;;;;;44203:16:0;;;;44141:78;:112;;;;-1:-1:-1;;;;;;44236:17:0;;35151:6;44236:17;;44141:112;:138;;;;-1:-1:-1;44271:8:0;;-1:-1:-1;;;44271:8:0;;;;44270:9;44141:138;44123:1511;;;44311:13;;;;44306:210;;-1:-1:-1;;;;;44375:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44404:23:0;;;;;;:19;:23;;;;;;;;44375:52;44345:155;;;;-1:-1:-1;;;44345:155:0;;14042:2:1;44345:155:0;;;14024:21:1;14081:2;14061:18;;;14054:30;14120:31;14100:18;;;14093:59;14169:18;;44345:155:0;13840:353:1;44345:155:0;-1:-1:-1;;;;;44578:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;44631:35:0;;;;;;:31;:35;;;;;;;;44630:36;44578:88;44556:1067;;;44741:20;;44731:6;:30;;44701:164;;;;-1:-1:-1;;;44701:164:0;;14400:2:1;44701:164:0;;;14382:21:1;14439:2;14419:18;;;14412:30;14478:34;14458:18;;;14451:62;14549:30;14529:18;;;14522:58;14597:19;;44701:164:0;14198:424:1;44701:164:0;44940:9;;-1:-1:-1;;;;;11119:18:0;;11087:7;11119:18;;;;;;;;;;;44914:22;;:6;:22;:::i;:::-;:35;;44884:135;;;;-1:-1:-1;;;44884:135:0;;14829:2:1;44884:135:0;;;14811:21:1;14868:2;14848:18;;;14841:30;14907:28;14887:18;;;14880:56;14953:18;;44884:135:0;14627:350:1;44884:135:0;44556:1067;;;-1:-1:-1;;;;;45101:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;45152:37:0;;;;;;:31;:37;;;;;;;;45151:38;45101:88;45079:544;;;45264:20;;45254:6;:30;;45224:165;;;;-1:-1:-1;;;45224:165:0;;15184:2:1;45224:165:0;;;15166:21:1;15223:2;15203:18;;;15196:30;15262:34;15242:18;;;15235:62;15333:31;15313:18;;;15306:59;15382:19;;45224:165:0;14982:425:1;45079:544:0;-1:-1:-1;;;;;45416:35:0;;;;;;:31;:35;;;;;;;;45411:212;;45528:9;;-1:-1:-1;;;;;11119:18:0;;11087:7;11119:18;;;;;;;;;;;45502:22;;:6;:22;:::i;:::-;:35;;45472:135;;;;-1:-1:-1;;;45472:135:0;;14829:2:1;45472:135:0;;;14811:21:1;14868:2;14848:18;;;14841:30;14907:28;14887:18;;;14880:56;14953:18;;45472:135:0;14627:350:1;45472:135:0;45695:4;45646:28;11119:18;;;;;;;;;;;45753;;45729:42;;;;;;;45802:35;;-1:-1:-1;45826:11:0;;;;;;;45802:35;:61;;;;-1:-1:-1;45855:8:0;;-1:-1:-1;;;45855:8:0;;;;45854:9;45802:61;:110;;;;-1:-1:-1;;;;;;45881:31:0;;;;;;:25;:31;;;;;;;;45880:32;45802:110;:153;;;;-1:-1:-1;;;;;;45930:25:0;;;;;;:19;:25;;;;;;;;45929:26;45802:153;:194;;;;-1:-1:-1;;;;;;45973:23:0;;;;;;:19;:23;;;;;;;;45972:24;45802:194;45784:326;;;46023:8;:15;;-1:-1:-1;;;;46023:15:0;-1:-1:-1;;;46023:15:0;;;46055:10;:8;:10::i;:::-;46082:8;:16;;-1:-1:-1;;;;46082:16:0;;;45784:326;46138:8;;-1:-1:-1;;;;;46163:25:0;;46122:12;46163:25;;;:19;:25;;;;;;46138:8;-1:-1:-1;;;46138:8:0;;;;;46137:9;;46163:25;;:52;;-1:-1:-1;;;;;;46192:23:0;;;;;;:19;:23;;;;;;;;46163:52;46159:100;;;-1:-1:-1;46242:5:0;46159:100;46271:12;46304:7;46300:827;;;-1:-1:-1;;;;;46356:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46405:1;46389:13;;:17;46356:50;46352:626;;;46434:34;46464:3;46434:25;46445:13;;46434:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;46427:41;;46537:13;;46517:16;;46510:4;:23;;;;:::i;:::-;46509:41;;;;:::i;:::-;46487:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46617:13:0;;46598:15;;46591:22;;:4;:22;:::i;:::-;46590:40;;;;:::i;:::-;46569:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;46352:626:0;;-1:-1:-1;46352:626:0;;-1:-1:-1;;;;;46692:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46742:1;46727:12;;:16;46692:51;46688:290;;;46771:33;46800:3;46771:24;46782:12;;46771:6;:10;;:24;;;;:::i;:33::-;46764:40;;46872:12;;46853:15;;46846:4;:22;;;;:::i;:::-;46845:39;;;;:::i;:::-;46823:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46950:12:0;;46932:14;;46925:21;;:4;:21;:::i;:::-;46924:38;;;;:::i;:::-;46903:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;46688:290:0;46998:8;;46994:91;;47027:42;47043:4;47057;47064;47027:15;:42::i;:::-;47101:14;47111:4;47101:14;;:::i;:::-;;;46300:827;47139:33;47155:4;47161:2;47165:6;47139:15;:33::i;:::-;-1:-1:-1;;47199:11:0;;47183:13;:27;-1:-1:-1;;;;;43738:3480:0:o;17488:675::-;-1:-1:-1;;;;;17572:21:0;;17564:67;;;;-1:-1:-1;;;17564:67:0;;15747:2:1;17564:67:0;;;15729:21:1;15786:2;15766:18;;;15759:30;15825:34;15805:18;;;15798:62;-1:-1:-1;;;15876:18:1;;;15869:31;15917:19;;17564:67:0;15545:397:1;17564:67:0;-1:-1:-1;;;;;17731:18:0;;17706:22;17731:18;;;;;;;;;;;17768:24;;;;17760:71;;;;-1:-1:-1;;;17760:71:0;;16149:2:1;17760:71:0;;;16131:21:1;16188:2;16168:18;;;16161:30;16227:34;16207:18;;;16200:62;-1:-1:-1;;;16278:18:1;;;16271:32;16320:19;;17760:71:0;15947:398:1;17760:71:0;-1:-1:-1;;;;;17867:18:0;;:9;:18;;;;;;;;;;;17888:23;;;17867:44;;18006:12;:22;;;;;;;18057:37;1849:25:1;;;17867:9:0;;:18;18057:37;;1822:18:1;18057:37:0;;;;;;;43352:40:::1;43204:196;43145:255:::0;:::o;3704:191::-;3797:6;;;-1:-1:-1;;;;;3814:17:0;;;-1:-1:-1;;;;;;3814:17:0;;;;;;;3847:40;;3797:6;;;3814:17;3797:6;;3847:40;;3778:16;;3847:40;3767:128;3704:191;:::o;43408:188::-;-1:-1:-1;;;;;43491:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;43491:39:0;;;;;;;;;;43548:40;;43491:39;;:31;43548:40;;;43408:188;;:::o;15443:877::-;-1:-1:-1;;;;;15574:18:0;;15566:68;;;;-1:-1:-1;;;15566:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15653:16:0;;15645:64;;;;-1:-1:-1;;;15645:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15795:15:0;;15773:19;15795:15;;;;;;;;;;;15843:21;;;;15821:109;;;;-1:-1:-1;;;15821:109:0;;16552:2:1;15821:109:0;;;16534:21:1;16591:2;16571:18;;;16564:30;16630:34;16610:18;;;16603:62;-1:-1:-1;;;16681:18:1;;;16674:36;16727:19;;15821:109:0;16350:402:1;15821:109:0;-1:-1:-1;;;;;15966:15:0;;;:9;:15;;;;;;;;;;;15984:20;;;15966:38;;16184:13;;;;;;;;;;:23;;;;;;16236:26;;1849:25:1;;;16184:13:0;;16236:26;;1822:18:1;16236:26:0;;;;;;;16275:37;43145:255;47735:903;47818:4;47774:23;11119:18;;;;;;;;;;;47774:50;;47835:25;47884:17;;47863:18;;:38;;;;:::i;:::-;47835:66;-1:-1:-1;47912:12:0;47941:20;;;:46;;-1:-1:-1;47965:22:0;;47941:46;47937:85;;;48004:7;;;47735:903::o;47937:85::-;48056:18;;;:23;;;:::i;:::-;48038:15;:41;48034:115;;;48114:18;;;:23;;;:::i;:::-;48096:41;;48034:115;48161:33;48178:15;48161:16;:33::i;:::-;48207:18;48228:21;48207:42;;48262:22;48287:80;48339:17;48287:33;48302:17;;48287:10;:14;;:33;;;;:::i;:80::-;48401:1;48380:18;:22;;;48413:17;:21;;;48469:14;;48461:55;;48262:105;;-1:-1:-1;;;;;;48469:14:0;;48262:105;;48461:55;48401:1;48461:55;48262:105;48469:14;48461:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48551:15:0;;48543:87;;48447:69;;-1:-1:-1;;;;;;48551:15:0;;48594:21;;48543:87;;;;48594:21;48551:15;48543:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;47735:903:0:o;24949:98::-;25007:7;25034:5;25038:1;25034;:5;:::i;:::-;25027:12;24949:98;-1:-1:-1;;;24949:98:0:o;25348:::-;25406:7;25433:5;25437:1;25433;:5;:::i;47226:501::-;47316:16;;;47330:1;47316:16;;;;;;;;47292:21;;47316:16;;;;;;;;;;-1:-1:-1;47316:16:0;47292:40;;47361:4;47343;47348:1;47343:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47343:23:0;;;-1:-1:-1;;;;;47343:23:0;;;;;47387:15;-1:-1:-1;;;;;47387:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47377:4;47382:1;47377:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47377:32:0;;;-1:-1:-1;;;;;47377:32:0;;;;;47422:62;47439:4;47454:15;47472:11;47422:8;:62::i;:::-;47523:196;;-1:-1:-1;;;47523:196:0;;-1:-1:-1;;;;;47523:15:0;:66;;;;:196;;47604:11;;47630:1;;47646:4;;47673;;47693:15;;47523:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47281:446;47226:501;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1885:456::-;1962:6;1970;1978;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;2086:9;2073:23;2105:31;2130:5;2105:31;:::i;:::-;2155:5;-1:-1:-1;2212:2:1;2197:18;;2184:32;2225:33;2184:32;2225:33;:::i;:::-;1885:456;;2277:7;;-1:-1:-1;;;2331:2:1;2316:18;;;;2303:32;;1885:456::o;2743:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;-1:-1:-1;2894:23:1;;2743:180;-1:-1:-1;2743:180:1:o;2928:247::-;2987:6;3040:2;3028:9;3019:7;3015:23;3011:32;3008:52;;;3056:1;3053;3046:12;3008:52;3095:9;3082:23;3114:31;3139:5;3114:31;:::i;3180:118::-;3266:5;3259:13;3252:21;3245:5;3242:32;3232:60;;3288:1;3285;3278:12;3303:382;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3484:9;3471:23;3503:31;3528:5;3503:31;:::i;:::-;3553:5;-1:-1:-1;3610:2:1;3595:18;;3582:32;3623:30;3582:32;3623:30;:::i;:::-;3672:7;3662:17;;;3303:382;;;;;:::o;3690:388::-;3758:6;3766;3819:2;3807:9;3798:7;3794:23;3790:32;3787:52;;;3835:1;3832;3825:12;3787:52;3874:9;3861:23;3893:31;3918:5;3893:31;:::i;:::-;3943:5;-1:-1:-1;4000:2:1;3985:18;;3972:32;4013:33;3972:32;4013:33;:::i;4083:127::-;4144:10;4139:3;4135:20;4132:1;4125:31;4175:4;4172:1;4165:15;4199:4;4196:1;4189:15;4215:125;4280:9;;;4301:10;;;4298:36;;;4314:18;;:::i;4345:400::-;4547:2;4529:21;;;4586:2;4566:18;;;4559:30;4625:34;4620:2;4605:18;;4598:62;-1:-1:-1;;;4691:2:1;4676:18;;4669:34;4735:3;4720:19;;4345:400::o;4750:380::-;4829:1;4825:12;;;;4872;;;4893:61;;4947:4;4939:6;4935:17;4925:27;;4893:61;5000:2;4992:6;4989:14;4969:18;4966:38;4963:161;;5046:10;5041:3;5037:20;5034:1;5027:31;5081:4;5078:1;5071:15;5109:4;5106:1;5099:15;4963:161;;4750:380;;;:::o;5487:251::-;5557:6;5610:2;5598:9;5589:7;5585:23;5581:32;5578:52;;;5626:1;5623;5616:12;5578:52;5658:9;5652:16;5677:31;5702:5;5677:31;:::i;6331:245::-;6398:6;6451:2;6439:9;6430:7;6426:23;6422:32;6419:52;;;6467:1;6464;6457:12;6419:52;6499:9;6493:16;6518:28;6540:5;6518:28;:::i;7225:306::-;7313:6;7321;7329;7382:2;7370:9;7361:7;7357:23;7353:32;7350:52;;;7398:1;7395;7388:12;7350:52;7427:9;7421:16;7411:26;;7477:2;7466:9;7462:18;7456:25;7446:35;;7521:2;7510:9;7506:18;7500:25;7490:35;;7225:306;;;;;:::o;7536:168::-;7609:9;;;7640;;7657:15;;;7651:22;;7637:37;7627:71;;7678:18;;:::i;7709:217::-;7749:1;7775;7765:132;;7819:10;7814:3;7810:20;7807:1;7800:31;7854:4;7851:1;7844:15;7882:4;7879:1;7872:15;7765:132;-1:-1:-1;7911:9:1;;7709:217::o;9503:184::-;9573:6;9626:2;9614:9;9605:7;9601:23;9597:32;9594:52;;;9642:1;9639;9632:12;9594:52;-1:-1:-1;9665:16:1;;9503:184;-1:-1:-1;9503:184:1:o;13030:401::-;13232:2;13214:21;;;13271:2;13251:18;;;13244:30;13310:34;13305:2;13290:18;;13283:62;-1:-1:-1;;;13376:2:1;13361:18;;13354:35;13421:3;13406:19;;13030:401::o;13436:399::-;13638:2;13620:21;;;13677:2;13657:18;;;13650:30;13716:34;13711:2;13696:18;;13689:62;-1:-1:-1;;;13782:2:1;13767:18;;13760:33;13825:3;13810:19;;13436:399::o;15412:128::-;15479:9;;;15500:11;;;15497:37;;;15514:18;;:::i;16889:127::-;16950:10;16945:3;16941:20;16938:1;16931:31;16981:4;16978:1;16971:15;17005:4;17002:1;16995:15;17021:980;17283:4;17331:3;17320:9;17316:19;17362:6;17351:9;17344:25;17388:2;17426:6;17421:2;17410:9;17406:18;17399:34;17469:3;17464:2;17453:9;17449:18;17442:31;17493:6;17528;17522:13;17559:6;17551;17544:22;17597:3;17586:9;17582:19;17575:26;;17636:2;17628:6;17624:15;17610:29;;17657:1;17667:195;17681:6;17678:1;17675:13;17667:195;;;17746:13;;-1:-1:-1;;;;;17742:39:1;17730:52;;17837:15;;;;17802:12;;;;17778:1;17696:9;17667:195;;;-1:-1:-1;;;;;;;17918:32:1;;;;17913:2;17898:18;;17891:60;-1:-1:-1;;;17982:3:1;17967:19;17960:35;17879:3;17021:980;-1:-1:-1;;;17021:980:1:o

Swarm Source

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