ETH Price: $2,380.50 (-1.15%)

Token

Antibot (ANTI)
 

Overview

Max Total Supply

15,000,000 ANTI

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,354.856090494436702158 ANTI

Value
$0.00
0x085AC9f021b08084EBE7cD3b298e1223985117d2
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:
Antibot

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-18
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

// File: antibot.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract Antibot is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 15_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(4);
    Tax public sellTaxes = Tax(8);
    Tax public transferTaxes = Tax(0);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000; //after 0.1% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;

    //Wallets
    address public marketingWallet = 0x64C714208f0c002F52a781852Fe52BE234B0db9C ;
    uint256 public _maxTxAmount = _totalSupply*3/100;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event maxTxAmountChanged(uint256 percentage);

    constructor() ERC20("Antibot", "ANTI") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);


    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 8, "Can not set buy fees higher than 8%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 8, "Can not set buy fees higher than 8%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setmaxTxAmount(uint256 maxtx) external onlyOwner {

    _maxTxAmount = maxtx;
    emit maxTxAmountChanged(maxtx);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }

        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");


        if (pairAddress == _from && _to != address(pairAddress)) {
            require(_amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
        }



        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {

            internalSwap();
            
        }
    }
    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"maxTxAmountChanged","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","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":"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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxtx","type":"uint256"}],"name":"setmaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600460c0819052600655600860e08190526007819055610120604052600061010081905290556200003e6103e86a0c685fa11e01ec6f0000006200042f565b600a55600b805462ffffff19166001179055600d80546001600160a01b0319167364c714208f0c002f52a781852fe52be234b0db9c1790556064620000906a0c685fa11e01ec6f000000600362000452565b6200009c91906200042f565b600e55348015620000ac57600080fd5b5060405180604001604052806007815260200166105b9d1a589bdd60ca1b81525060405180604001604052806004815260200163414e544960e01b8152508160039081620000fb919062000516565b5060046200010a828262000516565b5050506200012762000121620002f860201b60201c565b620002fc565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200017d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a39190620005e2565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002199190620005e2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d9190620005e2565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002f2906a0c685fa11e01ec6f0000006200034e565b6200062a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003a95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003bd919062000614565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b6000826200044d57634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176200046c576200046c62000419565b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200049d57607f821691505b602082108103620004be57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200041457600081815260208120601f850160051c81016020861015620004ed5750805b601f850160051c820191505b818110156200050e57828155600101620004f9565b505050505050565b81516001600160401b0381111562000532576200053262000472565b6200054a8162000543845462000488565b84620004c4565b602080601f831160018114620005825760008415620005695750858301515b600019600386901b1c1916600185901b1785556200050e565b600085815260208120601f198616915b82811015620005b35788860151825594840194600190910190840162000592565b5085821015620005d25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005f557600080fd5b81516001600160a01b03811681146200060d57600080fd5b9392505050565b808201808211156200046c576200046c62000419565b60805160a051611a78620006886000396000818161058a0152818161105601528181611088015281816111200152818161123d0152611271015260008181610453015281816115d10152818161168a01526116c60152611a786000f3fe6080604052600436106102085760003560e01c806375f0a87411610118578063a8b08982116100a0578063dd62ed3e1161006f578063dd62ed3e1461060b578063e2f456051461062b578063ef586f7114610641578063f2fde38b14610656578063f66895a31461067657600080fd5b8063a8b0898214610578578063a9059cbb146105ac578063afa4f3b2146105cc578063b8863115146105ec57600080fd5b80638a8c523c116100e75780638a8c523c146104f05780638da5cb5b1461050557806395d89b4114610523578063a3ca847d14610538578063a457c2d71461055857600080fd5b806375f0a8741461048d57806376be96f3146104ad5780637d1db4a5146104c3578063864701a5146104d957600080fd5b8063313ce5671161019b5780635331803c1161016a5780635331803c146103bf57806365e47de2146103d657806370a08231146103f6578063715018a61461042c578063735de9f71461044157600080fd5b8063313ce5671461034957806339509351146103655780634a74bb02146103855780634ada218b1461039f57600080fd5b806318160ddd116101d757806318160ddd146102b15780631950c218146102d0578063224611731461030957806323b872dd1461032957600080fd5b806306fdde03146102145780630940bbc71461023f578063095ea7b3146102615780630c4242841461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061022961068d565b604051610236919061173a565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611788565b61071f565b005b34801561026d57600080fd5b5061028161027c3660046117b6565b610784565b6040519015158152602001610236565b34801561029d57600080fd5b5061025f6102ac3660046117e2565b61079e565b3480156102bd57600080fd5b506002545b604051908152602001610236565b3480156102dc57600080fd5b506102816102eb366004611820565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561031557600080fd5b5061025f610324366004611820565b6107fa565b34801561033557600080fd5b5061028161034436600461183d565b6108ae565b34801561035557600080fd5b5060405160128152602001610236565b34801561037157600080fd5b506102816103803660046117b6565b6108d4565b34801561039157600080fd5b50600b546102819060ff1681565b3480156103ab57600080fd5b50600b546102819062010000900460ff1681565b3480156103cb57600080fd5b506008546102c29081565b3480156103e257600080fd5b5061025f6103f1366004611788565b6108f6565b34801561040257600080fd5b506102c2610411366004611820565b6001600160a01b031660009081526020819052604090205490565b34801561043857600080fd5b5061025f610939565b34801561044d57600080fd5b506104757f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610236565b34801561049957600080fd5b50600d54610475906001600160a01b031681565b3480156104b957600080fd5b506102c2600c5481565b3480156104cf57600080fd5b506102c2600e5481565b3480156104e557600080fd5b506006546102c29081565b3480156104fc57600080fd5b5061025f61094d565b34801561051157600080fd5b506005546001600160a01b0316610475565b34801561052f57600080fd5b506102296109c5565b34801561054457600080fd5b5061025f610553366004611788565b6109d4565b34801561056457600080fd5b506102816105733660046117b6565b610a30565b34801561058457600080fd5b506104757f000000000000000000000000000000000000000000000000000000000000000081565b3480156105b857600080fd5b506102816105c73660046117b6565b610ab6565b3480156105d857600080fd5b5061025f6105e7366004611788565b610ac4565b3480156105f857600080fd5b50600b5461028190610100900460ff1681565b34801561061757600080fd5b506102c261062636600461187e565b610bba565b34801561063757600080fd5b506102c2600a5481565b34801561064d57600080fd5b5061025f610be5565b34801561066257600080fd5b5061025f610671366004611820565b610c14565b34801561068257600080fd5b506007546102c29081565b60606003805461069c906118ac565b80601f01602080910402602001604051908101604052809291908181526020018280546106c8906118ac565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b610727610c8d565b600781905560088111156107565760405162461bcd60e51b815260040161074d906118e6565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610792818585610ce7565b60019150505b92915050565b6107a6610c8d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610802610c8d565b6001600160a01b0381166108645760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161074d565b600d80546001600160a01b0319166001600160a01b0383169081179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336108bc858285610e0b565b6108c7858585610e85565b60019150505b9392505050565b6000336107928185856108e78383610bba565b6108f1919061193f565b610ce7565b6108fe610c8d565b600e8190556040518181527fcf473ece2a7475193d6b78e0f408930897bbfe958b62f06b9c81a15a019ed99d9060200160405180910390a150565b610941610c8d565b61094b6000611193565b565b610955610c8d565b600b5462010000900460ff16156109ae5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161074d565b600b805462ff000019166201000017905543600c55565b60606004805461069c906118ac565b6109dc610c8d565b60068190556008811115610a025760405162461bcd60e51b815260040161074d906118e6565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610a3e8286610bba565b905083811015610a9e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161074d565b610aab8286868403610ce7565b506001949350505050565b600033610792818585610e85565b610acc610c8d565b600081118015610afe57506103e8610af06a0c685fa11e01ec6f0000006005611952565b610afa9190611969565b8111155b610b875760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a40161074d565b600a81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bed610c8d565b600b5460ff16610bfe576001610c01565b60005b600b805460ff1916911515919091179055565b610c1c610c8d565b6001600160a01b038116610c815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074d565b610c8a81611193565b50565b6005546001600160a01b0316331461094b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074d565b6001600160a01b038316610d495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161074d565b6001600160a01b038216610daa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161074d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e178484610bba565b90506000198114610e7f5781811015610e725760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161074d565b610e7f8484848403610ce7565b50505050565b6001600160a01b038316610edb5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161074d565b6001600160a01b038216610f315760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161074d565b60008111610f935760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161074d565b6000610fa08484846111e5565b600a5430600090815260208181526040808320546001600160a01b038a16845260099092529091205492935010159060ff16158015610ff857506001600160a01b03841660009081526009602052604090205460ff16155b1561118157600b5462010000900460ff1661104a5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161074d565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156110bd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b1561111457600e548311156111145760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161074d565b836001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156111575750600b5460ff165b80156111605750805b80156111745750600b54610100900460ff16155b15611181576111816112ec565b61118c8585846113d6565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061122457506001600160a01b03831660009081526009602052604090205460ff165b156112305750806108cd565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361126f57506007546112ad565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036112ad57506006545b600081156112d85760646112c18386611952565b6112cb9190611969565b90506112d88630836113d6565b6112e2818561198b565b9695505050505050565b600b805461ff001916610100179055306000908152602081905260408120549050806000036113185750565b306000908152602081905260409020546113319061157a565b600d546040516000916001600160a01b03169047908381818185875af1925050503d806000811461137e576040519150601f19603f3d011682016040523d82523d6000602084013e611383565b606091505b50509050806113c75760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161074d565b5050600b805461ff0019169055565b6001600160a01b03831661143a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161074d565b6001600160a01b03821661149c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161074d565b6001600160a01b038316600090815260208190526040902054818110156115145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161074d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e7f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115af576115af61199e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165191906119b4565b816001815181106116645761166461199e565b60200260200101906001600160a01b031690816001600160a01b0316815250506116af307f000000000000000000000000000000000000000000000000000000000000000084610ce7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906117049085906000908690309042906004016119d1565b600060405180830381600087803b15801561171e57600080fd5b505af1158015611732573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156117675785810183015185820160400152820161174b565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561179a57600080fd5b5035919050565b6001600160a01b0381168114610c8a57600080fd5b600080604083850312156117c957600080fd5b82356117d4816117a1565b946020939093013593505050565b600080604083850312156117f557600080fd5b8235611800816117a1565b91506020830135801515811461181557600080fd5b809150509250929050565b60006020828403121561183257600080fd5b81356108cd816117a1565b60008060006060848603121561185257600080fd5b833561185d816117a1565b9250602084013561186d816117a1565b929592945050506040919091013590565b6000806040838503121561189157600080fd5b823561189c816117a1565b91506020830135611815816117a1565b600181811c908216806118c057607f821691505b6020821081036118e057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526023908201527f43616e206e6f742073657420627579206665657320686967686572207468616e60408201526220382560e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079857610798611929565b808202811582820484141761079857610798611929565b60008261198657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561079857610798611929565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156119c657600080fd5b81516108cd816117a1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a215784516001600160a01b0316835293830193918301916001016119fc565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b846b7b19cc94e7b8bc8347646f946b95c62eaa8cab96f8a4c6440cde3e22a7f64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102085760003560e01c806375f0a87411610118578063a8b08982116100a0578063dd62ed3e1161006f578063dd62ed3e1461060b578063e2f456051461062b578063ef586f7114610641578063f2fde38b14610656578063f66895a31461067657600080fd5b8063a8b0898214610578578063a9059cbb146105ac578063afa4f3b2146105cc578063b8863115146105ec57600080fd5b80638a8c523c116100e75780638a8c523c146104f05780638da5cb5b1461050557806395d89b4114610523578063a3ca847d14610538578063a457c2d71461055857600080fd5b806375f0a8741461048d57806376be96f3146104ad5780637d1db4a5146104c3578063864701a5146104d957600080fd5b8063313ce5671161019b5780635331803c1161016a5780635331803c146103bf57806365e47de2146103d657806370a08231146103f6578063715018a61461042c578063735de9f71461044157600080fd5b8063313ce5671461034957806339509351146103655780634a74bb02146103855780634ada218b1461039f57600080fd5b806318160ddd116101d757806318160ddd146102b15780631950c218146102d0578063224611731461030957806323b872dd1461032957600080fd5b806306fdde03146102145780630940bbc71461023f578063095ea7b3146102615780630c4242841461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061022961068d565b604051610236919061173a565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611788565b61071f565b005b34801561026d57600080fd5b5061028161027c3660046117b6565b610784565b6040519015158152602001610236565b34801561029d57600080fd5b5061025f6102ac3660046117e2565b61079e565b3480156102bd57600080fd5b506002545b604051908152602001610236565b3480156102dc57600080fd5b506102816102eb366004611820565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561031557600080fd5b5061025f610324366004611820565b6107fa565b34801561033557600080fd5b5061028161034436600461183d565b6108ae565b34801561035557600080fd5b5060405160128152602001610236565b34801561037157600080fd5b506102816103803660046117b6565b6108d4565b34801561039157600080fd5b50600b546102819060ff1681565b3480156103ab57600080fd5b50600b546102819062010000900460ff1681565b3480156103cb57600080fd5b506008546102c29081565b3480156103e257600080fd5b5061025f6103f1366004611788565b6108f6565b34801561040257600080fd5b506102c2610411366004611820565b6001600160a01b031660009081526020819052604090205490565b34801561043857600080fd5b5061025f610939565b34801561044d57600080fd5b506104757f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b34801561049957600080fd5b50600d54610475906001600160a01b031681565b3480156104b957600080fd5b506102c2600c5481565b3480156104cf57600080fd5b506102c2600e5481565b3480156104e557600080fd5b506006546102c29081565b3480156104fc57600080fd5b5061025f61094d565b34801561051157600080fd5b506005546001600160a01b0316610475565b34801561052f57600080fd5b506102296109c5565b34801561054457600080fd5b5061025f610553366004611788565b6109d4565b34801561056457600080fd5b506102816105733660046117b6565b610a30565b34801561058457600080fd5b506104757f00000000000000000000000028b976ed3f4b9d3e29b73a57e5f4d805f3a4be3581565b3480156105b857600080fd5b506102816105c73660046117b6565b610ab6565b3480156105d857600080fd5b5061025f6105e7366004611788565b610ac4565b3480156105f857600080fd5b50600b5461028190610100900460ff1681565b34801561061757600080fd5b506102c261062636600461187e565b610bba565b34801561063757600080fd5b506102c2600a5481565b34801561064d57600080fd5b5061025f610be5565b34801561066257600080fd5b5061025f610671366004611820565b610c14565b34801561068257600080fd5b506007546102c29081565b60606003805461069c906118ac565b80601f01602080910402602001604051908101604052809291908181526020018280546106c8906118ac565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b610727610c8d565b600781905560088111156107565760405162461bcd60e51b815260040161074d906118e6565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610792818585610ce7565b60019150505b92915050565b6107a6610c8d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610802610c8d565b6001600160a01b0381166108645760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161074d565b600d80546001600160a01b0319166001600160a01b0383169081179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336108bc858285610e0b565b6108c7858585610e85565b60019150505b9392505050565b6000336107928185856108e78383610bba565b6108f1919061193f565b610ce7565b6108fe610c8d565b600e8190556040518181527fcf473ece2a7475193d6b78e0f408930897bbfe958b62f06b9c81a15a019ed99d9060200160405180910390a150565b610941610c8d565b61094b6000611193565b565b610955610c8d565b600b5462010000900460ff16156109ae5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161074d565b600b805462ff000019166201000017905543600c55565b60606004805461069c906118ac565b6109dc610c8d565b60068190556008811115610a025760405162461bcd60e51b815260040161074d906118e6565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610a3e8286610bba565b905083811015610a9e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161074d565b610aab8286868403610ce7565b506001949350505050565b600033610792818585610e85565b610acc610c8d565b600081118015610afe57506103e8610af06a0c685fa11e01ec6f0000006005611952565b610afa9190611969565b8111155b610b875760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a40161074d565b600a81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bed610c8d565b600b5460ff16610bfe576001610c01565b60005b600b805460ff1916911515919091179055565b610c1c610c8d565b6001600160a01b038116610c815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074d565b610c8a81611193565b50565b6005546001600160a01b0316331461094b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074d565b6001600160a01b038316610d495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161074d565b6001600160a01b038216610daa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161074d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e178484610bba565b90506000198114610e7f5781811015610e725760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161074d565b610e7f8484848403610ce7565b50505050565b6001600160a01b038316610edb5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161074d565b6001600160a01b038216610f315760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161074d565b60008111610f935760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161074d565b6000610fa08484846111e5565b600a5430600090815260208181526040808320546001600160a01b038a16845260099092529091205492935010159060ff16158015610ff857506001600160a01b03841660009081526009602052604090205460ff16155b1561118157600b5462010000900460ff1661104a5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161074d565b846001600160a01b03167f00000000000000000000000028b976ed3f4b9d3e29b73a57e5f4d805f3a4be356001600160a01b03161480156110bd57507f00000000000000000000000028b976ed3f4b9d3e29b73a57e5f4d805f3a4be356001600160a01b0316846001600160a01b031614155b1561111457600e548311156111145760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161074d565b836001600160a01b03167f00000000000000000000000028b976ed3f4b9d3e29b73a57e5f4d805f3a4be356001600160a01b03161480156111575750600b5460ff165b80156111605750805b80156111745750600b54610100900460ff16155b15611181576111816112ec565b61118c8585846113d6565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061122457506001600160a01b03831660009081526009602052604090205460ff165b156112305750806108cd565b6008546001600160a01b037f00000000000000000000000028b976ed3f4b9d3e29b73a57e5f4d805f3a4be3581169085160361126f57506007546112ad565b7f00000000000000000000000028b976ed3f4b9d3e29b73a57e5f4d805f3a4be356001600160a01b0316856001600160a01b0316036112ad57506006545b600081156112d85760646112c18386611952565b6112cb9190611969565b90506112d88630836113d6565b6112e2818561198b565b9695505050505050565b600b805461ff001916610100179055306000908152602081905260408120549050806000036113185750565b306000908152602081905260409020546113319061157a565b600d546040516000916001600160a01b03169047908381818185875af1925050503d806000811461137e576040519150601f19603f3d011682016040523d82523d6000602084013e611383565b606091505b50509050806113c75760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161074d565b5050600b805461ff0019169055565b6001600160a01b03831661143a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161074d565b6001600160a01b03821661149c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161074d565b6001600160a01b038316600090815260208190526040902054818110156115145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161074d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e7f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115af576115af61199e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165191906119b4565b816001815181106116645761166461199e565b60200260200101906001600160a01b031690816001600160a01b0316815250506116af307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ce7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906117049085906000908690309042906004016119d1565b600060405180830381600087803b15801561171e57600080fd5b505af1158015611732573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156117675785810183015185820160400152820161174b565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561179a57600080fd5b5035919050565b6001600160a01b0381168114610c8a57600080fd5b600080604083850312156117c957600080fd5b82356117d4816117a1565b946020939093013593505050565b600080604083850312156117f557600080fd5b8235611800816117a1565b91506020830135801515811461181557600080fd5b809150509250929050565b60006020828403121561183257600080fd5b81356108cd816117a1565b60008060006060848603121561185257600080fd5b833561185d816117a1565b9250602084013561186d816117a1565b929592945050506040919091013590565b6000806040838503121561189157600080fd5b823561189c816117a1565b91506020830135611815816117a1565b600181811c908216806118c057607f821691505b6020821081036118e057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526023908201527f43616e206e6f742073657420627579206665657320686967686572207468616e60408201526220382560e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079857610798611929565b808202811582820484141761079857610798611929565b60008261198657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561079857610798611929565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156119c657600080fd5b81516108cd816117a1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a215784516001600160a01b0316835293830193918301916001016119fc565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b846b7b19cc94e7b8bc8347646f946b95c62eaa8cab96f8a4c6440cde3e22a7f64736f6c63430008130033

Deployed Bytecode Sourcemap

28171:6460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30781:244;;;;;;;;;;-1:-1:-1;30781:244:0;;;;;:::i;:::-;;:::i;:::-;;18613:201;;;;;;;;;;-1:-1:-1;18613:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18613:201:0;1208:187:1;31547:195:0;;;;;;;;;;-1:-1:-1;31547:195:0;;;;;:::i;:::-;;:::i;17382:108::-;;;;;;;;;;-1:-1:-1;17470:12:0;;17382:108;;;1967:25:1;;;1955:2;1940:18;17382:108:0;1821:177:1;31750:116:0;;;;;;;;;;-1:-1:-1;31750:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;31838:20:0;31814:4;31838:20;;;:11;:20;;;;;;;;;31750:116;30029:297;;;;;;;;;;-1:-1:-1;30029:297:0;;;;;:::i;:::-;;:::i;19394:261::-;;;;;;;;;;-1:-1:-1;19394:261:0;;;;;:::i;:::-;;:::i;17224:93::-;;;;;;;;;;-1:-1:-1;17224:93:0;;17307:2;2858:36:1;;2846:2;2831:18;17224:93:0;2716:184:1;20064:238:0;;;;;;;;;;-1:-1:-1;20064:238:0;;;;;:::i;:::-;;:::i;28798:40::-;;;;;;;;;;-1:-1:-1;28798:40:0;;;;;;;;28882:34;;;;;;;;;;-1:-1:-1;28882:34:0;;;;;;;;;;;28527:33;;;;;;;;;;-1:-1:-1;28527:33:0;;;;;;31872:128;;;;;;;;;;-1:-1:-1;31872:128:0;;;;;:::i;:::-;;:::i;17553:127::-;;;;;;;;;;-1:-1:-1;17553:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;9708:103;;;;;;;;;;;;;:::i;28351:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3087:32:1;;;3069:51;;3057:2;3042:18;28351:40:0;2905:221:1;28979:75:0;;;;;;;;;;-1:-1:-1;28979:75:0;;;;-1:-1:-1;;;;;28979:75:0;;;28923:32;;;;;;;;;;;;;;;;29062:48;;;;;;;;;;;;;;;;28456:28;;;;;;;;;;-1:-1:-1;28456:28:0;;;;;;30332:192;;;;;;;;;;;;;:::i;9067:87::-;;;;;;;;;;-1:-1:-1;9140:6:0;;-1:-1:-1;;;;;9140:6:0;9067:87;;16472:104;;;;;;;;;;;;;:::i;30532:241::-;;;;;;;;;;-1:-1:-1;30532:241:0;;;;;:::i;:::-;;:::i;20805:436::-;;;;;;;;;;-1:-1:-1;20805:436:0;;;;;:::i;:::-;;:::i;28398:36::-;;;;;;;;;;;;;;;17886:193;;;;;;;;;;-1:-1:-1;17886:193:0;;;;;:::i;:::-;;:::i;31033:372::-;;;;;;;;;;-1:-1:-1;31033:372:0;;;;;:::i;:::-;;:::i;28845:30::-;;;;;;;;;;-1:-1:-1;28845:30:0;;;;;;;;;;;18142:151;;;;;;;;;;-1:-1:-1;18142:151:0;;;;;:::i;:::-;;:::i;28695:56::-;;;;;;;;;;;;;;;;31413:126;;;;;;;;;;;;;:::i;9966:201::-;;;;;;;;;;-1:-1:-1;9966:201:0;;;;;:::i;:::-;;:::i;28491:29::-;;;;;;;;;;-1:-1:-1;28491:29:0;;;;;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;30781:244::-;8953:13;:11;:13::i;:::-;30856:9:::1;:38:::0;;;30930:1:::1;30913:18:::0;::::1;;30905:66;;;;-1:-1:-1::0;;;30905:66:0::1;;;;;;;:::i;:::-;;;;;;;;;30987:30;::::0;31003:13;;30987:30:::1;::::0;;;::::1;30781:244:::0;:::o;18613:201::-;18696:4;7698:10;18752:32;7698:10;18768:7;18777:6;18752:8;:32::i;:::-;18802:4;18795:11;;;18613:201;;;;;:::o;31547:195::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;31661:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31661:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31707:27;;31661:30;;:20;31707:27:::1;::::0;::::1;31547:195:::0;;:::o;30029:297::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;30132:27:0;::::1;30110:113;;;::::0;-1:-1:-1;;;30110:113:0;;4723:2:1;30110:113:0::1;::::0;::::1;4705:21:1::0;4762:2;4742:18;;;4735:30;4801:34;4781:18;;;4774:62;-1:-1:-1;;;4852:18:1;;;4845:34;4896:19;;30110:113:0::1;4521:400:1::0;30110:113:0::1;30234:15;:31:::0;;-1:-1:-1;;;;;;30234:31:0::1;-1:-1:-1::0;;;;;30234:31:0;::::1;::::0;;::::1;::::0;;;30281:37:::1;::::0;::::1;::::0;-1:-1:-1;;30281:37:0::1;30029:297:::0;:::o;19394:261::-;19491:4;7698:10;19549:38;19565:4;7698:10;19580:6;19549:15;:38::i;:::-;19598:27;19608:4;19614:2;19618:6;19598:9;:27::i;:::-;19643:4;19636:11;;;19394:261;;;;;;:::o;20064:238::-;20152:4;7698:10;20208:64;7698:10;20224:7;20261:10;20233:25;7698:10;20224:7;20233:9;:25::i;:::-;:38;;;;:::i;:::-;20208:8;:64::i;31872:128::-;8953:13;:11;:13::i;:::-;31939:12:::1;:20:::0;;;31971:25:::1;::::0;1967::1;;;31971::0::1;::::0;1955:2:1;1940:18;31971:25:0::1;;;;;;;31872:128:::0;:::o;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;30332:192::-;8953:13;:11;:13::i;:::-;30396:14:::1;::::0;;;::::1;;;30395:15;30387:54;;;::::0;-1:-1:-1;;;30387:54:0;;5390:2:1;30387:54:0::1;::::0;::::1;5372:21:1::0;5429:2;5409:18;;;5402:30;5468:28;5448:18;;;5441:56;5514:18;;30387:54:0::1;5188:350:1::0;30387:54:0::1;30452:14;:21:::0;;-1:-1:-1;;30452:21:0::1;::::0;::::1;::::0;;30504:12:::1;30484:17;:32:::0;30332:192::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;30532:241::-;8953:13;:11;:13::i;:::-;30606:8:::1;:37:::0;;;30679:1:::1;30662:18:::0;::::1;;30654:66;;;;-1:-1:-1::0;;;30654:66:0::1;;;;;;;:::i;:::-;30736:29;::::0;30751:13;;30736:29:::1;::::0;;;::::1;30532:241:::0;:::o;20805:436::-;20898:4;7698:10;20898:4;20981:25;7698:10;20998:7;20981:9;:25::i;:::-;20954:52;;21045:15;21025:16;:35;;21017:85;;;;-1:-1:-1;;;21017:85:0;;5745:2:1;21017:85:0;;;5727:21:1;5784:2;5764:18;;;5757:30;5823:34;5803:18;;;5796:62;-1:-1:-1;;;5874:18:1;;;5867:35;5919:19;;21017:85:0;5543:401:1;21017:85:0;21138:60;21147:5;21154:7;21182:15;21163:16;:34;21138:8;:60::i;:::-;-1:-1:-1;21229:4:0;;20805:436;-1:-1:-1;;;;20805:436:0:o;17886:193::-;17965:4;7698:10;18021:28;7698:10;18038:2;18042:6;18021:9;:28::i;31033:372::-;8953:13;:11;:13::i;:::-;31149:1:::1;31136:10;:14;:57;;;;-1:-1:-1::0;31189:4:0::1;31169:16;28311:17;31184:1;31169:16;:::i;:::-;31168:25;;;;:::i;:::-;31154:10;:39;;31136:57;31114:185;;;::::0;-1:-1:-1;;;31114:185:0;;6546:2:1;31114:185:0::1;::::0;::::1;6528:21:1::0;6585:2;6565:18;;;6558:30;6624:34;6604:18;;;6597:62;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:19:1;;;6739:45;6801:19;;31114:185:0::1;6344:482:1::0;31114:185:0::1;31310:18;:31:::0;;;31357:40:::1;::::0;31331:10;;31357:40:::1;::::0;;;::::1;31033:372:::0;:::o;18142:151::-;-1:-1:-1;;;;;18258:18:0;;;18231:7;18258:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18142:151::o;31413:126::-;8953:13;:11;:13::i;:::-;31494:21:::1;::::0;::::1;;31493:38;;31527:4;31493:38;;;31519:5;31493:38;31469:21;:62:::0;;-1:-1:-1;;31469:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31413:126::o;9966:201::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;10055:22:0;::::1;10047:73;;;::::0;-1:-1:-1;;;10047:73:0;;7033:2:1;10047:73:0::1;::::0;::::1;7015:21:1::0;7072:2;7052:18;;;7045:30;7111:34;7091:18;;;7084:62;-1:-1:-1;;;7162:18:1;;;7155:36;7208:19;;10047:73:0::1;6831:402:1::0;10047:73:0::1;10131:28;10150:8;10131:18;:28::i;:::-;9966:201:::0;:::o;9232:132::-;9140:6;;-1:-1:-1;;;;;9140:6:0;7698:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;7440:2:1;9288:68:0;;;7422:21:1;;;7459:18;;;7452:30;7518:34;7498:18;;;7491:62;7570:18;;9288:68:0;7238:356:1;24798:346:0;-1:-1:-1;;;;;24900:19:0;;24892:68;;;;-1:-1:-1;;;24892:68:0;;7801:2:1;24892:68:0;;;7783:21:1;7840:2;7820:18;;;7813:30;7879:34;7859:18;;;7852:62;-1:-1:-1;;;7930:18:1;;;7923:34;7974:19;;24892:68:0;7599:400:1;24892:68:0;-1:-1:-1;;;;;24979:21:0;;24971:68;;;;-1:-1:-1;;;24971:68:0;;8206:2:1;24971:68:0;;;8188:21:1;8245:2;8225:18;;;8218:30;8284:34;8264:18;;;8257:62;-1:-1:-1;;;8335:18:1;;;8328:32;8377:19;;24971:68:0;8004:398:1;24971:68:0;-1:-1:-1;;;;;25052:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25104:32;;1967:25:1;;;25104:32:0;;1940:18:1;25104:32:0;;;;;;;24798:346;;;:::o;25435:419::-;25536:24;25563:25;25573:5;25580:7;25563:9;:25::i;:::-;25536:52;;-1:-1:-1;;25603:16:0;:37;25599:248;;25685:6;25665:16;:26;;25657:68;;;;-1:-1:-1;;;25657:68:0;;8609:2:1;25657:68:0;;;8591:21:1;8648:2;8628:18;;;8621:30;8687:31;8667:18;;;8660:59;8736:18;;25657:68:0;8407:353:1;25657:68:0;25769:51;25778:5;25785:7;25813:6;25794:16;:25;25769:8;:51::i;:::-;25525:329;25435:419;;;:::o;32827:908::-;-1:-1:-1;;;;;32950:19:0;;32942:58;;;;-1:-1:-1;;;32942:58:0;;8967:2:1;32942:58:0;;;8949:21:1;9006:2;8986:18;;;8979:30;9045:28;9025:18;;;9018:56;9091:18;;32942:58:0;8765:350:1;32942:58:0;-1:-1:-1;;;;;33015:17:0;;33007:54;;;;-1:-1:-1;;;33007:54:0;;9322:2:1;33007:54:0;;;9304:21:1;9361:2;9341:18;;;9334:30;9400:26;9380:18;;;9373:54;9444:18;;33007:54:0;9120:348:1;33007:54:0;33086:1;33076:7;:11;33068:65;;;;-1:-1:-1;;;33068:65:0;;9675:2:1;33068:65:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:34;9733:18;;;9726:62;-1:-1:-1;;;9804:18:1;;;9797:39;9853:19;;33068:65:0;9473:405:1;33068:65:0;33142:18;33163:29;33172:5;33179:3;33184:7;33163:8;:29::i;:::-;33244:18;;33234:4;33201:12;17654:18;;;;;;;;;;;;-1:-1:-1;;;;;33274:18:0;;;;:11;:18;;;;;;;33142:50;;-1:-1:-1;;33216:46:0;;33274:18;;33273:19;:40;;;;-1:-1:-1;;;;;;33297:16:0;;;;;;:11;:16;;;;;;;;33296:17;33273:40;33269:417;;;33334:14;;;;;;;33326:45;;;;-1:-1:-1;;;33326:45:0;;10085:2:1;33326:45:0;;;10067:21:1;10124:2;10104:18;;;10097:30;-1:-1:-1;;;10143:18:1;;;10136:48;10201:18;;33326:45:0;9883:342:1;33326:45:0;33405:5;-1:-1:-1;;;;;33390:20:0;:11;-1:-1:-1;;;;;33390:20:0;;:51;;;;;33429:11;-1:-1:-1;;;;;33414:27:0;:3;-1:-1:-1;;;;;33414:27:0;;;33390:51;33386:145;;;33477:12;;33466:7;:23;;33458:61;;;;-1:-1:-1;;;33458:61:0;;10432:2:1;33458:61:0;;;10414:21:1;10471:2;10451:18;;;10444:30;10510:27;10490:18;;;10483:55;10555:18;;33458:61:0;10230:349:1;33458:61:0;33566:3;-1:-1:-1;;;;;33551:18:0;:11;-1:-1:-1;;;;;33551:18:0;;:43;;;;-1:-1:-1;33573:21:0;;;;33551:43;:54;;;;;33598:7;33551:54;:69;;;;-1:-1:-1;33610:10:0;;;;;;;33609:11;33551:69;33547:132;;;33639:14;:12;:14::i;:::-;33692:39;33708:5;33715:3;33720:10;33692:15;:39::i;:::-;32935:800;;32827:908;;;:::o;10327:191::-;10420:6;;;-1:-1:-1;;;;;10437:17:0;;;-1:-1:-1;;;;;;10437:17:0;;;;;;;10470:40;;10420:6;;;10437:17;10420:6;;10470:40;;10401:16;;10470:40;10390:128;10327:191;:::o;32146:677::-;-1:-1:-1;;;;;32285:18:0;;32261:7;32285:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32307:16:0;;;;;;:11;:16;;;;;;;;32285:38;32281:85;;;-1:-1:-1;32347:7:0;32340:14;;32281:85;32397:13;:26;-1:-1:-1;;;;;32447:11:0;32440:18;;;;;;32436:175;;-1:-1:-1;32486:9:0;:22;32436:175;;;32539:11;-1:-1:-1;;;;;32530:20:0;:5;-1:-1:-1;;;;;32530:20:0;;32526:85;;-1:-1:-1;32578:8:0;:21;32526:85;32623:11;32653:12;;32649:134;;32711:3;32689:18;32699:8;32689:7;:18;:::i;:::-;32688:26;;;;:::i;:::-;32682:32;;32729:42;32745:5;32760:4;32767:3;32729:15;:42::i;:::-;32801:13;32811:3;32801:7;:13;:::i;:::-;32793:22;32146:677;-1:-1:-1;;;;;;32146:677:0:o;33743:393::-;33787:10;:17;;-1:-1:-1;;33787:17:0;;;;;33853:4;-1:-1:-1;17654:18:0;;;;;;;;;;;33815:44;;33875:9;33888:1;33875:14;33871:53;;33906:7;33743:393::o;33871:53::-;33962:4;17627:7;17654:18;;;;;;;;;;;33934:35;;:9;:35::i;:::-;33998:15;;:54;;33980:12;;-1:-1:-1;;;;;33998:15:0;;34026:21;;33980:12;33998:54;33980:12;33998:54;34026:21;33998:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33979:73;;;34071:7;34063:36;;;;-1:-1:-1;;;34063:36:0;;11129:2:1;34063:36:0;;;11111:21:1;11168:2;11148:18;;;11141:30;-1:-1:-1;;;11187:18:1;;;11180:46;11243:18;;34063:36:0;10927:340:1;34063:36:0;-1:-1:-1;;34110:10:0;:18;;-1:-1:-1;;34110:18:0;;;33743:393::o;21711:806::-;-1:-1:-1;;;;;21808:18:0;;21800:68;;;;-1:-1:-1;;;21800:68:0;;11474:2:1;21800:68:0;;;11456:21:1;11513:2;11493:18;;;11486:30;11552:34;11532:18;;;11525:62;-1:-1:-1;;;11603:18:1;;;11596:35;11648:19;;21800:68:0;11272:401:1;21800:68:0;-1:-1:-1;;;;;21887:16:0;;21879:64;;;;-1:-1:-1;;;21879:64:0;;11880:2:1;21879:64:0;;;11862:21:1;11919:2;11899:18;;;11892:30;11958:34;11938:18;;;11931:62;-1:-1:-1;;;12009:18:1;;;12002:33;12052:19;;21879:64:0;11678:399:1;21879:64:0;-1:-1:-1;;;;;22029:15:0;;22007:19;22029:15;;;;;;;;;;;22063:21;;;;22055:72;;;;-1:-1:-1;;;22055:72:0;;12284:2:1;22055:72:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:36;12459:19;;22055:72:0;12082:402:1;22055:72:0;-1:-1:-1;;;;;22163:15:0;;;:9;:15;;;;;;;;;;;22181:20;;;22163:38;;22381:13;;;;;;;;;;:23;;;;;;22433:26;;1967:25:1;;;22381:13:0;;22433:26;;1940:18:1;22433:26:0;;;;;;;22472:37;26454:91;34144:447;34224:16;;;34238:1;34224:16;;;;;;;;34200:21;;34224:16;;;;;;;;;;-1:-1:-1;34224:16:0;34200:40;;34269:4;34251;34256:1;34251:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34251:23:0;;;-1:-1:-1;;;;;34251:23:0;;;;;34295:13;-1:-1:-1;;;;;34295:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34285:4;34290:1;34285:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;34285:30:0;;;-1:-1:-1;;;;;34285:30:0;;;;;34326:56;34343:4;34358:13;34374:7;34326:8;:56::i;:::-;34393:190;;-1:-1:-1;;;34393:190:0;;-1:-1:-1;;;;;34393:13:0;:64;;;;:190;;34472:7;;34494:1;;34510:4;;34537;;34557:15;;34393:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34189:402;34144:447;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:416::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1749:15;;1742:23;1730:36;;1720:64;;1780:1;1777;1770:12;1720:64;1803:7;1793:17;;;1400:416;;;;;:::o;2003:247::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2170:9;2157:23;2189:31;2214:5;2189:31;:::i;2255:456::-;2332:6;2340;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2456:9;2443:23;2475:31;2500:5;2475:31;:::i;:::-;2525:5;-1:-1:-1;2582:2:1;2567:18;;2554:32;2595:33;2554:32;2595:33;:::i;:::-;2255:456;;2647:7;;-1:-1:-1;;;2701:2:1;2686:18;;;;2673:32;;2255:456::o;3339:388::-;3407:6;3415;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;3523:9;3510:23;3542:31;3567:5;3542:31;:::i;:::-;3592:5;-1:-1:-1;3649:2:1;3634:18;;3621:32;3662:33;3621:32;3662:33;:::i;3732:380::-;3811:1;3807:12;;;;3854;;;3875:61;;3929:4;3921:6;3917:17;3907:27;;3875:61;3982:2;3974:6;3971:14;3951:18;3948:38;3945:161;;4028:10;4023:3;4019:20;4016:1;4009:31;4063:4;4060:1;4053:15;4091:4;4088:1;4081:15;3945:161;;3732:380;;;:::o;4117:399::-;4319:2;4301:21;;;4358:2;4338:18;;;4331:30;4397:34;4392:2;4377:18;;4370:62;-1:-1:-1;;;4463:2:1;4448:18;;4441:33;4506:3;4491:19;;4117:399::o;4926:127::-;4987:10;4982:3;4978:20;4975:1;4968:31;5018:4;5015:1;5008:15;5042:4;5039:1;5032:15;5058:125;5123:9;;;5144:10;;;5141:36;;;5157:18;;:::i;5949:168::-;6022:9;;;6053;;6070:15;;;6064:22;;6050:37;6040:71;;6091:18;;:::i;6122:217::-;6162:1;6188;6178:132;;6232:10;6227:3;6223:20;6220:1;6213:31;6267:4;6264:1;6257:15;6295:4;6292:1;6285:15;6178:132;-1:-1:-1;6324:9:1;;6122:217::o;10584:128::-;10651:9;;;10672:11;;;10669:37;;;10686:18;;:::i;12621:127::-;12682:10;12677:3;12673:20;12670:1;12663:31;12713:4;12710:1;12703:15;12737:4;12734:1;12727:15;12753:251;12823:6;12876:2;12864:9;12855:7;12851:23;12847:32;12844:52;;;12892:1;12889;12882:12;12844:52;12924:9;12918:16;12943:31;12968:5;12943:31;:::i;13009:980::-;13271:4;13319:3;13308:9;13304:19;13350:6;13339:9;13332:25;13376:2;13414:6;13409:2;13398:9;13394:18;13387:34;13457:3;13452:2;13441:9;13437:18;13430:31;13481:6;13516;13510:13;13547:6;13539;13532:22;13585:3;13574:9;13570:19;13563:26;;13624:2;13616:6;13612:15;13598:29;;13645:1;13655:195;13669:6;13666:1;13663:13;13655:195;;;13734:13;;-1:-1:-1;;;;;13730:39:1;13718:52;;13825:15;;;;13790:12;;;;13766:1;13684:9;13655:195;;;-1:-1:-1;;;;;;;13906:32:1;;;;13901:2;13886:18;;13879:60;-1:-1:-1;;;13970:3:1;13955:19;13948:35;13867:3;13009:980;-1:-1:-1;;;13009:980:1:o

Swarm Source

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