ETH Price: $3,349.66 (-0.95%)

Token

Fractal BOT (FBOT)
 

Overview

Max Total Supply

100,000 FBOT

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000002414 FBOT

Value
$0.00
0x40b5935ac3e7a6864ed5ac8c40b3134cb8124169
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:
FractalB0t

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-06
*/

// SPDX-License-Identifier: MIT
// Twitter: https://x.com/FractalBotx
// Telegram: https://t.me/fractalbotportal
// Website: https://fractalbot.app/



pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0; 

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.19;

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


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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.19;


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

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

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

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

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

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

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

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



pragma solidity ^0.8.26;
contract FractalB0t is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapV2Pair;

    bool private swapping;

    address public treasuryWallet;

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

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

    bool public blacklistRenounced = false;

    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;

    uint256 public tokensForTreasury;


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

    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Fractal BOT", "FBOT") {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

        excludeFromMaxTransaction(address(_uniswapRouter), true);
        uniswapRouter = _uniswapRouter;

        uint256 _buyTreasuryFee = 5;
        uint256 _sellTreasuryFee = 5;

        uint256 totalSupply = 100_000 * 1e18;

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

        buyTreasuryFee = _buyTreasuryFee;
        buyTotalFees = buyTreasuryFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellTotalFees = sellTreasuryFee;

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

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

        _mint(msg.sender, totalSupply);

        treasuryWallet = address(0xFBa44F32c0D1b041721dFcD5f9A87DE4Ccd3d15B);

        
    }

    receive() external payable {}

    function createPairForUniswapv2() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory())
            .createPair(address(this), uniswapRouter.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyTotalFees = buyTreasuryFee;
    }

    function updateSellFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellTotalFees = sellTreasuryFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTreasuryWallet(address newWallet) external onlyOwner {
        emit treasuryWalletUpdated(newWallet, treasuryWallet);
        treasuryWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[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");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapRouter), tokenAmount);

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

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

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

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


        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        tokensForTreasury = 0;

        (success, ) = address(treasuryWallet).call{value: ethBalance}("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPairForUniswapv2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805463ffffffff191662010101179055348015610021575f80fd5b506040518060400160405280600b81526020016a119c9858dd185b081093d560aa1b81525060405180604001604052806004815260200163119093d560e21b81525081600390816100729190610483565b50600461007f8282610483565b50505061009861009361019b60201b60201c565b61019f565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b88160016101f0565b6001600160a01b038116608052683635c9adc5dea000006008819055600a5560058069152d02c7e14af68000006127106100f28284610551565b6100fc919061056e565b600955600e839055600d8390556010829055600f82905561012f6101286005546001600160a01b031690565b6001610266565b61013a306001610266565b61015661014f6005546001600160a01b031690565b60016101f0565b6101613060016101f0565b61016b338261030b565b5050600780546001600160a01b03191673fba44f32c0d1b041721dfcd5f9a87de4ccd3d15b179055506105a09050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b0316331461023c5760405162461bcd60e51b815260206004820181905260248201525f8051602061284383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146102ad5760405162461bcd60e51b815260206004820181905260248201525f805160206128438339815191526044820152606401610233565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166103615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610233565b8060025f828254610372919061058d565b90915550506001600160a01b0382165f908152602081905260408120805483929061039e90849061058d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061041457607f821691505b60208210810361043257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103e757805f5260205f20601f840160051c8101602085101561045d5750805b601f840160051c820191505b8181101561047c575f8155600101610469565b5050505050565b81516001600160401b0381111561049c5761049c6103ec565b6104b0816104aa8454610400565b84610438565b6020601f8211600181146104e2575f83156104cb5750848201515b5f19600385901b1c1916600184901b17845561047c565b5f84815260208120601f198516915b8281101561051157878501518255602094850194600190920191016104f1565b508482101561052e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105685761056861053d565b92915050565b5f8261058857634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156105685761056861053d565b6080516122686105db5f395f818161054701528181610ace01528181610b5d01528181611d4d01528181611e040152611e4001526122685ff3fe60806040526004361061026d575f3560e01c8063751039fc1161014a578063c0246668116100be578063dd62ed3e11610078578063dd62ed3e14610750578063e2f4560514610794578063eba4c333146107a9578063f2fde38b146107c8578063f8b45b05146107e7578063fe575a87146107fc575f80fd5b8063c0246668146106b4578063c18bc195146106d3578063c8c8ebe4146106f2578063cc2ffe7c14610707578063d257b34f1461071c578063d85ba0631461073b575f80fd5b806395d89b411161010f57806395d89b41146105f75780639a7a23d61461060b578063a457c2d71461062a578063a9059cbb14610649578063b62496f514610668578063bbc0c74214610696575f80fd5b8063751039fc146105695780637571336a1461057d578063809d458d1461059c5780638da5cb5b146105bb578063924de9b7146105d8575f80fd5b80634a62bb65116101e15780636b2fb124116101a65780636b2fb1241461049b5780636ddd1713146104b057806370a08231146104cf578063715018a61461050357806371fc468814610517578063735de9f714610536575f80fd5b80634a62bb651461040d5780634f2e2d11146104265780634fbee1931461043a5780635c068a8c146104715780636a486a8e14610486575f80fd5b806323b872dd1161023257806323b872dd1461033e578063313ce5671461035d57806339509351146103785780633dc599ff146103975780634626402b146103b757806349bd5a5e146103ee575f80fd5b806306fdde0314610278578063095ea7b3146102a257806310d5de53146102d157806318160ddd146102ff578063203e727e1461031d575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b5061028c610833565b6040516102999190611eb9565b60405180910390f35b3480156102ad575f80fd5b506102c16102bc366004611f02565b6108c3565b6040519015158152602001610299565b3480156102dc575f80fd5b506102c16102eb366004611f2c565b60136020525f908152604090205460ff1681565b34801561030a575f80fd5b506002545b604051908152602001610299565b348015610328575f80fd5b5061033c610337366004611f47565b6108d9565b005b348015610349575f80fd5b506102c1610358366004611f5e565b6109bf565b348015610368575f80fd5b5060405160128152602001610299565b348015610383575f80fd5b506102c1610392366004611f02565b610a67565b3480156103a2575f80fd5b50600b546102c1906301000000900460ff1681565b3480156103c2575f80fd5b506007546103d6906001600160a01b031681565b6040516001600160a01b039091168152602001610299565b3480156103f9575f80fd5b506006546103d6906001600160a01b031681565b348015610418575f80fd5b50600b546102c19060ff1681565b348015610431575f80fd5b5061033c610aa2565b348015610445575f80fd5b506102c1610454366004611f2c565b6001600160a01b03165f9081526012602052604090205460ff1690565b34801561047c575f80fd5b5061030f600e5481565b348015610491575f80fd5b5061030f600f5481565b3480156104a6575f80fd5b5061030f60105481565b3480156104bb575f80fd5b50600b546102c19062010000900460ff1681565b3480156104da575f80fd5b5061030f6104e9366004611f2c565b6001600160a01b03165f9081526020819052604090205490565b34801561050e575f80fd5b5061033c610c8c565b348015610522575f80fd5b5061033c610531366004611f47565b610cbf565b348015610541575f80fd5b506103d67f000000000000000000000000000000000000000000000000000000000000000081565b348015610574575f80fd5b506102c1610cf3565b348015610588575f80fd5b5061033c610597366004611fab565b610d2f565b3480156105a7575f80fd5b5061033c6105b6366004611f2c565b610d83565b3480156105c6575f80fd5b506005546001600160a01b03166103d6565b3480156105e3575f80fd5b5061033c6105f2366004611fde565b610e09565b348015610602575f80fd5b5061028c610e4f565b348015610616575f80fd5b5061033c610625366004611fab565b610e5e565b348015610635575f80fd5b506102c1610644366004611f02565b610f1a565b348015610654575f80fd5b506102c1610663366004611f02565b610fb2565b348015610673575f80fd5b506102c1610682366004611f2c565b60146020525f908152604090205460ff1681565b3480156106a1575f80fd5b50600b546102c190610100900460ff1681565b3480156106bf575f80fd5b5061033c6106ce366004611fab565b610fbe565b3480156106de575f80fd5b5061033c6106ed366004611f47565b611046565b3480156106fd575f80fd5b5061030f60085481565b348015610712575f80fd5b5061030f60115481565b348015610727575f80fd5b506102c1610736366004611f47565b611117565b348015610746575f80fd5b5061030f600d5481565b34801561075b575f80fd5b5061030f61076a366004611ff7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561079f575f80fd5b5061030f60095481565b3480156107b4575f80fd5b5061033c6107c3366004611f47565b611151565b3480156107d3575f80fd5b5061033c6107e2366004611f2c565b611185565b3480156107f2575f80fd5b5061030f600a5481565b348015610807575f80fd5b506102c1610816366004611f2c565b6001600160a01b03165f908152600c602052604090205460ff1690565b6060600380546108429061202e565b80601f016020809104026020016040519081016040528092919081815260200182805461086e9061202e565b80156108b95780601f10610890576101008083540402835291602001916108b9565b820191905f5260205f20905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b5f6108cf338484611220565b5060015b92915050565b6005546001600160a01b0316331461090c5760405162461bcd60e51b815260040161090390612066565b60405180910390fd5b670de0b6b3a76400006103e861092160025490565b61092c9060056120af565b61093691906120c6565b61094091906120c6565b8110156109a75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610903565b6109b981670de0b6b3a76400006120af565b60085550565b5f6109cb848484611343565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a4f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610903565b610a5c8533858403611220565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108cf918590610a9d9086906120e5565b611220565b6005546001600160a01b03163314610acc5760405162461bcd60e51b815260040161090390612066565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4c91906120f8565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bb7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdb91906120f8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4991906120f8565b600680546001600160a01b0319166001600160a01b03929092169182179055610c73906001610d2f565b600654610c8a906001600160a01b03166001611a1f565b565b6005546001600160a01b03163314610cb65760405162461bcd60e51b815260040161090390612066565b610c8a5f611a72565b6005546001600160a01b03163314610ce95760405162461bcd60e51b815260040161090390612066565b600e819055600d55565b6005545f906001600160a01b03163314610d1f5760405162461bcd60e51b815260040161090390612066565b50600b805460ff19169055600190565b6005546001600160a01b03163314610d595760405162461bcd60e51b815260040161090390612066565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610dad5760405162461bcd60e51b815260040161090390612066565b6007546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e335760405162461bcd60e51b815260040161090390612066565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108429061202e565b6005546001600160a01b03163314610e885760405162461bcd60e51b815260040161090390612066565b6006546001600160a01b0390811690831603610f0c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610903565b610f168282611a1f565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610f9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610903565b610fa83385858403611220565b5060019392505050565b5f6108cf338484611343565b6005546001600160a01b03163314610fe85760405162461bcd60e51b815260040161090390612066565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110705760405162461bcd60e51b815260040161090390612066565b670de0b6b3a76400006103e861108560025490565b61109090600a6120af565b61109a91906120c6565b6110a491906120c6565b8110156110ff5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610903565b61111181670de0b6b3a76400006120af565b600a5550565b6005545f906001600160a01b031633146111435760405162461bcd60e51b815260040161090390612066565b50600981905560015b919050565b6005546001600160a01b0316331461117b5760405162461bcd60e51b815260040161090390612066565b6010819055600f55565b6005546001600160a01b031633146111af5760405162461bcd60e51b815260040161090390612066565b6001600160a01b0381166112145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610903565b61121d81611a72565b50565b6001600160a01b0383166112825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610903565b6001600160a01b0382166112e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610903565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260040161090390612113565b6001600160a01b03821661138f5760405162461bcd60e51b815260040161090390612158565b6001600160a01b0383165f908152600c602052604090205460ff16156113ec5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610903565b6001600160a01b0382165f908152600c602052604090205460ff161561144b5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610903565b805f036114625761145d83835f611ac3565b505050565b600b5460ff16156117b8576005546001600160a01b0384811691161480159061149957506005546001600160a01b03838116911614155b80156114ad57506001600160a01b03821615155b80156114c35750600654600160a01b900460ff16155b156117b857600b54610100900460ff16611559576001600160a01b0383165f9081526012602052604090205460ff168061151457506001600160a01b0382165f9081526012602052604090205460ff165b6115595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610903565b6001600160a01b0383165f9081526014602052604090205460ff16801561159857506001600160a01b0382165f9081526013602052604090205460ff16155b1561167b5760085481111561160d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610903565b600a546001600160a01b0383165f9081526020819052604090205461163290836120e5565b11156116765760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610903565b6117b8565b6001600160a01b0382165f9081526014602052604090205460ff1680156116ba57506001600160a01b0383165f9081526013602052604090205460ff16155b15611730576008548111156116765760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610903565b6001600160a01b0382165f9081526013602052604090205460ff166117b857600a546001600160a01b0383165f9081526020819052604090205461177490836120e5565b11156117b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610903565b305f90815260208190526040902054600954811080159081906117e35750600b5462010000900460ff165b80156117f95750600654600160a01b900460ff16155b801561181d57506001600160a01b0385165f9081526014602052604090205460ff16155b801561184157506001600160a01b0385165f9081526012602052604090205460ff16155b801561186557506001600160a01b0384165f9081526012602052604090205460ff16155b15611893576006805460ff60a01b1916600160a01b179055611885611c16565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526012602052604090205460ff600160a01b9092048216159116806118df57506001600160a01b0385165f9081526012602052604090205460ff165b156118e757505f5b5f8115611a0b576001600160a01b0386165f9081526014602052604090205460ff16801561191657505f600f54115b156119735761193b6064611935600f5488611cdb90919063ffffffff16565b90611ced565b9050600f546010548261194e91906120af565b61195891906120c6565b60115f82825461196891906120e5565b909155506119ed9050565b6001600160a01b0387165f9081526014602052604090205460ff16801561199b57505f600d54115b156119ed576119ba6064611935600d5488611cdb90919063ffffffff16565b9050600d54600e54826119cd91906120af565b6119d791906120c6565b60115f8282546119e791906120e5565b90915550505b80156119fe576119fe873083611ac3565b611a08818661219b565b94505b611a16878787611ac3565b50505050505050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611ae95760405162461bcd60e51b815260040161090390612113565b6001600160a01b038216611b0f5760405162461bcd60e51b815260040161090390612158565b6001600160a01b0383165f9081526020819052604090205481811015611b865760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610903565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611bbc9084906120e5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0891815260200190565b60405180910390a350505050565b305f908152602081905260408120546011549091821580611c35575081155b15611c3f57505050565b600954611c4d9060146120af565b831115611c6557600954611c629060146120af565b92505b8247611c7082611cf8565b5f611c7b4783611eae565b5f60118190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114611ccb576040519150601f19603f3d011682016040523d82523d5f602084013e611cd0565b606091505b505050505050505050565b5f611ce682846120af565b9392505050565b5f611ce682846120c6565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611d2b57611d2b6121ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dcb91906120f8565b81600181518110611dde57611dde6121ae565b60200260200101906001600160a01b031690816001600160a01b031681525050611e29307f000000000000000000000000000000000000000000000000000000000000000084611220565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e7d9085905f908690309042906004016121c2565b5f604051808303815f87803b158015611e94575f80fd5b505af1158015611ea6573d5f803e3d5ffd5b505050505050565b5f611ce6828461219b565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461121d575f80fd5b5f8060408385031215611f13575f80fd5b8235611f1e81611eee565b946020939093013593505050565b5f60208284031215611f3c575f80fd5b8135611ce681611eee565b5f60208284031215611f57575f80fd5b5035919050565b5f805f60608486031215611f70575f80fd5b8335611f7b81611eee565b92506020840135611f8b81611eee565b929592945050506040919091013590565b8035801515811461114c575f80fd5b5f8060408385031215611fbc575f80fd5b8235611fc781611eee565b9150611fd560208401611f9c565b90509250929050565b5f60208284031215611fee575f80fd5b611ce682611f9c565b5f8060408385031215612008575f80fd5b823561201381611eee565b9150602083013561202381611eee565b809150509250929050565b600181811c9082168061204257607f821691505b60208210810361206057634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176108d3576108d361209b565b5f826120e057634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156108d3576108d361209b565b5f60208284031215612108575f80fd5b8151611ce681611eee565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108d3576108d361209b565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156122125783516001600160a01b03168352602093840193909201916001016121eb565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212209a0c0266ea9f0e0e3e178584c1bed700be44ee734a52edf474010c9d00d740dd64736f6c634300081a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026d575f3560e01c8063751039fc1161014a578063c0246668116100be578063dd62ed3e11610078578063dd62ed3e14610750578063e2f4560514610794578063eba4c333146107a9578063f2fde38b146107c8578063f8b45b05146107e7578063fe575a87146107fc575f80fd5b8063c0246668146106b4578063c18bc195146106d3578063c8c8ebe4146106f2578063cc2ffe7c14610707578063d257b34f1461071c578063d85ba0631461073b575f80fd5b806395d89b411161010f57806395d89b41146105f75780639a7a23d61461060b578063a457c2d71461062a578063a9059cbb14610649578063b62496f514610668578063bbc0c74214610696575f80fd5b8063751039fc146105695780637571336a1461057d578063809d458d1461059c5780638da5cb5b146105bb578063924de9b7146105d8575f80fd5b80634a62bb65116101e15780636b2fb124116101a65780636b2fb1241461049b5780636ddd1713146104b057806370a08231146104cf578063715018a61461050357806371fc468814610517578063735de9f714610536575f80fd5b80634a62bb651461040d5780634f2e2d11146104265780634fbee1931461043a5780635c068a8c146104715780636a486a8e14610486575f80fd5b806323b872dd1161023257806323b872dd1461033e578063313ce5671461035d57806339509351146103785780633dc599ff146103975780634626402b146103b757806349bd5a5e146103ee575f80fd5b806306fdde0314610278578063095ea7b3146102a257806310d5de53146102d157806318160ddd146102ff578063203e727e1461031d575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b5061028c610833565b6040516102999190611eb9565b60405180910390f35b3480156102ad575f80fd5b506102c16102bc366004611f02565b6108c3565b6040519015158152602001610299565b3480156102dc575f80fd5b506102c16102eb366004611f2c565b60136020525f908152604090205460ff1681565b34801561030a575f80fd5b506002545b604051908152602001610299565b348015610328575f80fd5b5061033c610337366004611f47565b6108d9565b005b348015610349575f80fd5b506102c1610358366004611f5e565b6109bf565b348015610368575f80fd5b5060405160128152602001610299565b348015610383575f80fd5b506102c1610392366004611f02565b610a67565b3480156103a2575f80fd5b50600b546102c1906301000000900460ff1681565b3480156103c2575f80fd5b506007546103d6906001600160a01b031681565b6040516001600160a01b039091168152602001610299565b3480156103f9575f80fd5b506006546103d6906001600160a01b031681565b348015610418575f80fd5b50600b546102c19060ff1681565b348015610431575f80fd5b5061033c610aa2565b348015610445575f80fd5b506102c1610454366004611f2c565b6001600160a01b03165f9081526012602052604090205460ff1690565b34801561047c575f80fd5b5061030f600e5481565b348015610491575f80fd5b5061030f600f5481565b3480156104a6575f80fd5b5061030f60105481565b3480156104bb575f80fd5b50600b546102c19062010000900460ff1681565b3480156104da575f80fd5b5061030f6104e9366004611f2c565b6001600160a01b03165f9081526020819052604090205490565b34801561050e575f80fd5b5061033c610c8c565b348015610522575f80fd5b5061033c610531366004611f47565b610cbf565b348015610541575f80fd5b506103d67f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610574575f80fd5b506102c1610cf3565b348015610588575f80fd5b5061033c610597366004611fab565b610d2f565b3480156105a7575f80fd5b5061033c6105b6366004611f2c565b610d83565b3480156105c6575f80fd5b506005546001600160a01b03166103d6565b3480156105e3575f80fd5b5061033c6105f2366004611fde565b610e09565b348015610602575f80fd5b5061028c610e4f565b348015610616575f80fd5b5061033c610625366004611fab565b610e5e565b348015610635575f80fd5b506102c1610644366004611f02565b610f1a565b348015610654575f80fd5b506102c1610663366004611f02565b610fb2565b348015610673575f80fd5b506102c1610682366004611f2c565b60146020525f908152604090205460ff1681565b3480156106a1575f80fd5b50600b546102c190610100900460ff1681565b3480156106bf575f80fd5b5061033c6106ce366004611fab565b610fbe565b3480156106de575f80fd5b5061033c6106ed366004611f47565b611046565b3480156106fd575f80fd5b5061030f60085481565b348015610712575f80fd5b5061030f60115481565b348015610727575f80fd5b506102c1610736366004611f47565b611117565b348015610746575f80fd5b5061030f600d5481565b34801561075b575f80fd5b5061030f61076a366004611ff7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561079f575f80fd5b5061030f60095481565b3480156107b4575f80fd5b5061033c6107c3366004611f47565b611151565b3480156107d3575f80fd5b5061033c6107e2366004611f2c565b611185565b3480156107f2575f80fd5b5061030f600a5481565b348015610807575f80fd5b506102c1610816366004611f2c565b6001600160a01b03165f908152600c602052604090205460ff1690565b6060600380546108429061202e565b80601f016020809104026020016040519081016040528092919081815260200182805461086e9061202e565b80156108b95780601f10610890576101008083540402835291602001916108b9565b820191905f5260205f20905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b5f6108cf338484611220565b5060015b92915050565b6005546001600160a01b0316331461090c5760405162461bcd60e51b815260040161090390612066565b60405180910390fd5b670de0b6b3a76400006103e861092160025490565b61092c9060056120af565b61093691906120c6565b61094091906120c6565b8110156109a75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610903565b6109b981670de0b6b3a76400006120af565b60085550565b5f6109cb848484611343565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a4f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610903565b610a5c8533858403611220565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108cf918590610a9d9086906120e5565b611220565b6005546001600160a01b03163314610acc5760405162461bcd60e51b815260040161090390612066565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4c91906120f8565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bb7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdb91906120f8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4991906120f8565b600680546001600160a01b0319166001600160a01b03929092169182179055610c73906001610d2f565b600654610c8a906001600160a01b03166001611a1f565b565b6005546001600160a01b03163314610cb65760405162461bcd60e51b815260040161090390612066565b610c8a5f611a72565b6005546001600160a01b03163314610ce95760405162461bcd60e51b815260040161090390612066565b600e819055600d55565b6005545f906001600160a01b03163314610d1f5760405162461bcd60e51b815260040161090390612066565b50600b805460ff19169055600190565b6005546001600160a01b03163314610d595760405162461bcd60e51b815260040161090390612066565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610dad5760405162461bcd60e51b815260040161090390612066565b6007546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e335760405162461bcd60e51b815260040161090390612066565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108429061202e565b6005546001600160a01b03163314610e885760405162461bcd60e51b815260040161090390612066565b6006546001600160a01b0390811690831603610f0c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610903565b610f168282611a1f565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610f9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610903565b610fa83385858403611220565b5060019392505050565b5f6108cf338484611343565b6005546001600160a01b03163314610fe85760405162461bcd60e51b815260040161090390612066565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110705760405162461bcd60e51b815260040161090390612066565b670de0b6b3a76400006103e861108560025490565b61109090600a6120af565b61109a91906120c6565b6110a491906120c6565b8110156110ff5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610903565b61111181670de0b6b3a76400006120af565b600a5550565b6005545f906001600160a01b031633146111435760405162461bcd60e51b815260040161090390612066565b50600981905560015b919050565b6005546001600160a01b0316331461117b5760405162461bcd60e51b815260040161090390612066565b6010819055600f55565b6005546001600160a01b031633146111af5760405162461bcd60e51b815260040161090390612066565b6001600160a01b0381166112145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610903565b61121d81611a72565b50565b6001600160a01b0383166112825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610903565b6001600160a01b0382166112e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610903565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260040161090390612113565b6001600160a01b03821661138f5760405162461bcd60e51b815260040161090390612158565b6001600160a01b0383165f908152600c602052604090205460ff16156113ec5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610903565b6001600160a01b0382165f908152600c602052604090205460ff161561144b5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610903565b805f036114625761145d83835f611ac3565b505050565b600b5460ff16156117b8576005546001600160a01b0384811691161480159061149957506005546001600160a01b03838116911614155b80156114ad57506001600160a01b03821615155b80156114c35750600654600160a01b900460ff16155b156117b857600b54610100900460ff16611559576001600160a01b0383165f9081526012602052604090205460ff168061151457506001600160a01b0382165f9081526012602052604090205460ff165b6115595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610903565b6001600160a01b0383165f9081526014602052604090205460ff16801561159857506001600160a01b0382165f9081526013602052604090205460ff16155b1561167b5760085481111561160d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610903565b600a546001600160a01b0383165f9081526020819052604090205461163290836120e5565b11156116765760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610903565b6117b8565b6001600160a01b0382165f9081526014602052604090205460ff1680156116ba57506001600160a01b0383165f9081526013602052604090205460ff16155b15611730576008548111156116765760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610903565b6001600160a01b0382165f9081526013602052604090205460ff166117b857600a546001600160a01b0383165f9081526020819052604090205461177490836120e5565b11156117b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610903565b305f90815260208190526040902054600954811080159081906117e35750600b5462010000900460ff165b80156117f95750600654600160a01b900460ff16155b801561181d57506001600160a01b0385165f9081526014602052604090205460ff16155b801561184157506001600160a01b0385165f9081526012602052604090205460ff16155b801561186557506001600160a01b0384165f9081526012602052604090205460ff16155b15611893576006805460ff60a01b1916600160a01b179055611885611c16565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526012602052604090205460ff600160a01b9092048216159116806118df57506001600160a01b0385165f9081526012602052604090205460ff165b156118e757505f5b5f8115611a0b576001600160a01b0386165f9081526014602052604090205460ff16801561191657505f600f54115b156119735761193b6064611935600f5488611cdb90919063ffffffff16565b90611ced565b9050600f546010548261194e91906120af565b61195891906120c6565b60115f82825461196891906120e5565b909155506119ed9050565b6001600160a01b0387165f9081526014602052604090205460ff16801561199b57505f600d54115b156119ed576119ba6064611935600d5488611cdb90919063ffffffff16565b9050600d54600e54826119cd91906120af565b6119d791906120c6565b60115f8282546119e791906120e5565b90915550505b80156119fe576119fe873083611ac3565b611a08818661219b565b94505b611a16878787611ac3565b50505050505050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611ae95760405162461bcd60e51b815260040161090390612113565b6001600160a01b038216611b0f5760405162461bcd60e51b815260040161090390612158565b6001600160a01b0383165f9081526020819052604090205481811015611b865760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610903565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611bbc9084906120e5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0891815260200190565b60405180910390a350505050565b305f908152602081905260408120546011549091821580611c35575081155b15611c3f57505050565b600954611c4d9060146120af565b831115611c6557600954611c629060146120af565b92505b8247611c7082611cf8565b5f611c7b4783611eae565b5f60118190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114611ccb576040519150601f19603f3d011682016040523d82523d5f602084013e611cd0565b606091505b505050505050505050565b5f611ce682846120af565b9392505050565b5f611ce682846120c6565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611d2b57611d2b6121ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dcb91906120f8565b81600181518110611dde57611dde6121ae565b60200260200101906001600160a01b031690816001600160a01b031681525050611e29307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611220565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e7d9085905f908690309042906004016121c2565b5f604051808303815f87803b158015611e94575f80fd5b505af1158015611ea6573d5f803e3d5ffd5b505050505050565b5f611ce6828461219b565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461121d575f80fd5b5f8060408385031215611f13575f80fd5b8235611f1e81611eee565b946020939093013593505050565b5f60208284031215611f3c575f80fd5b8135611ce681611eee565b5f60208284031215611f57575f80fd5b5035919050565b5f805f60608486031215611f70575f80fd5b8335611f7b81611eee565b92506020840135611f8b81611eee565b929592945050506040919091013590565b8035801515811461114c575f80fd5b5f8060408385031215611fbc575f80fd5b8235611fc781611eee565b9150611fd560208401611f9c565b90509250929050565b5f60208284031215611fee575f80fd5b611ce682611f9c565b5f8060408385031215612008575f80fd5b823561201381611eee565b9150602083013561202381611eee565b809150509250929050565b600181811c9082168061204257607f821691505b60208210810361206057634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176108d3576108d361209b565b5f826120e057634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156108d3576108d361209b565b5f60208284031215612108575f80fd5b8151611ce681611eee565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108d3576108d361209b565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156122125783516001600160a01b03168352602093840193909201916001016121eb565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212209a0c0266ea9f0e0e3e178584c1bed700be44ee734a52edf474010c9d00d740dd64736f6c634300081a0033

Deployed Bytecode Sourcemap

27960:11154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15478:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17645:169;;;;;;;;;;-1:-1:-1;17645:169:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;17645:169:0;945:187:1;28774:63:0;;;;;;;;;;-1:-1:-1;28774:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16598:108;;;;;;;;;;-1:-1:-1;16686:12:0;;16598:108;;;1535:25:1;;;1523:2;1508:18;16598:108:0;1389:177:1;31187:275:0;;;;;;;;;;-1:-1:-1;31187:275:0;;;;;:::i;:::-;;:::i;:::-;;18296:492;;;;;;;;;;-1:-1:-1;18296:492:0;;;;;:::i;:::-;;:::i;16440:93::-;;;;;;;;;;-1:-1:-1;16440:93:0;;16523:2;2457:36:1;;2445:2;2430:18;16440:93:0;2315:184:1;19197:215:0;;;;;;;;;;-1:-1:-1;19197:215:0;;;;;:::i;:::-;;:::i;28434:38::-;;;;;;;;;;-1:-1:-1;28434:38:0;;;;;;;;;;;28163:29;;;;;;;;;;-1:-1:-1;28163:29:0;;;;-1:-1:-1;;;;;28163:29:0;;;;;;-1:-1:-1;;;;;2668:32:1;;;2650:51;;2638:2;2623:18;28163:29:0;2504:203:1;28096:28:0;;;;;;;;;;-1:-1:-1;28096:28:0;;;;-1:-1:-1;;;;;28096:28:0;;;28316:33;;;;;;;;;;-1:-1:-1;28316:33:0;;;;;;;;30419:327;;;;;;;;;;;;;:::i;33345:126::-;;;;;;;;;;-1:-1:-1;33345:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;33435:28:0;33411:4;33435:28;;;:19;:28;;;;;;;;;33345:126;28560:29;;;;;;;;;;;;;;;;28598:28;;;;;;;;;;;;;;;;28633:30;;;;;;;;;;;;;;;;28395;;;;;;;;;;-1:-1:-1;28395:30:0;;;;;;;;;;;16769:127;;;;;;;;;;-1:-1:-1;16769:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;16870:18:0;16843:7;16870:18;;;;;;;;;;;;16769:127;27113:103;;;;;;;;;;;;;:::i;32106:168::-;;;;;;;;;;-1:-1:-1;32106:168:0;;;;;:::i;:::-;;:::i;28040:49::-;;;;;;;;;;;;;;;30798:121;;;;;;;;;;;;;:::i;31735:167::-;;;;;;;;;;-1:-1:-1;31735:167:0;;;;;:::i;:::-;;:::i;33160:177::-;;;;;;;;;;-1:-1:-1;33160:177:0;;;;;:::i;:::-;;:::i;26462:87::-;;;;;;;;;;-1:-1:-1;26535:6:0;;-1:-1:-1;;;;;26535:6:0;26462:87;;31998:100;;;;;;;;;;-1:-1:-1;31998:100:0;;;;;:::i;:::-;;:::i;15697:104::-;;;;;;;;;;;;;:::i;32652:304::-;;;;;;;;;;-1:-1:-1;32652:304:0;;;;;:::i;:::-;;:::i;19915:413::-;;;;;;;;;;-1:-1:-1;19915:413:0;;;;;:::i;:::-;;:::i;17109:175::-;;;;;;;;;;-1:-1:-1;17109:175:0;;;;;:::i;:::-;;:::i;28846:57::-;;;;;;;;;;-1:-1:-1;28846:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28356:32;;;;;;;;;;-1:-1:-1;28356:32:0;;;;;;;;;;;32462:182;;;;;;;;;;-1:-1:-1;32462:182:0;;;;;:::i;:::-;;:::i;31470:257::-;;;;;;;;;;-1:-1:-1;31470:257:0;;;;;:::i;:::-;;:::i;28201:35::-;;;;;;;;;;;;;;;;28672:32;;;;;;;;;;;;;;;;30989:190;;;;;;;;;;-1:-1:-1;30989:190:0;;;;;:::i;:::-;;:::i;28526:27::-;;;;;;;;;;;;;;;;17347:151;;;;;;;;;;-1:-1:-1;17347:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;17463:18:0;;;17436:7;17463:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17347:151;28243:33;;;;;;;;;;;;;;;;32282:172;;;;;;;;;;-1:-1:-1;32282:172:0;;;;;:::i;:::-;;:::i;27371:201::-;;;;;;;;;;-1:-1:-1;27371:201:0;;;;;:::i;:::-;;:::i;28283:24::-;;;;;;;;;;;;;;;;33479:113;;;;;;;;;;-1:-1:-1;33479:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;33564:20:0;33540:4;33564:20;;;:11;:20;;;;;;;;;33479:113;15478:100;15532:13;15565:5;15558:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15478:100;:::o;17645:169::-;17728:4;17745:39;13331:10;17768:7;17777:6;17745:8;:39::i;:::-;-1:-1:-1;17802:4:0;17645:169;;;;;:::o;31187:275::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;;;;;;;;;31324:4:::1;31316;31295:13;16686:12:::0;;;16598:108;31295:13:::1;:17;::::0;31311:1:::1;31295:17;:::i;:::-;31294:26;;;;:::i;:::-;31293:35;;;;:::i;:::-;31283:6;:45;;31261:142;;;::::0;-1:-1:-1;;;31261:142:0;;5483:2:1;31261:142:0::1;::::0;::::1;5465:21:1::0;5522:2;5502:18;;;5495:30;5561:34;5541:18;;;5534:62;-1:-1:-1;;;5612:18:1;;;5605:45;5667:19;;31261:142:0::1;5281:411:1::0;31261:142:0::1;31437:17;:6:::0;31447::::1;31437:17;:::i;:::-;31414:20;:40:::0;-1:-1:-1;31187:275:0:o;18296:492::-;18436:4;18453:36;18463:6;18471:9;18482:6;18453:9;:36::i;:::-;-1:-1:-1;;;;;18529:19:0;;18502:24;18529:19;;;:11;:19;;;;;;;;13331:10;18529:33;;;;;;;;18581:26;;;;18573:79;;;;-1:-1:-1;;;18573:79:0;;5899:2:1;18573:79:0;;;5881:21:1;5938:2;5918:18;;;5911:30;5977:34;5957:18;;;5950:62;-1:-1:-1;;;6028:18:1;;;6021:38;6076:19;;18573:79:0;5697:404:1;18573:79:0;18688:57;18697:6;13331:10;18738:6;18719:16;:25;18688:8;:57::i;:::-;-1:-1:-1;18776:4:0;;18296:492;-1:-1:-1;;;;18296:492:0:o;19197:215::-;13331:10;19285:4;19334:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19334:34:0;;;;;;;;;;19285:4;;19302:80;;19325:7;;19334:47;;19371:10;;19334:47;:::i;:::-;19302:8;:80::i;30419:327::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;30517:13:::1;-1:-1:-1::0;;;;;30517:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30499:67:0::1;;30575:4;30582:13;-1:-1:-1::0;;;;;30582:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30499:104;::::0;-1:-1:-1;;;;;;30499:104:0::1;::::0;;;;;;-1:-1:-1;;;;;6684:32:1;;;30499:104:0::1;::::0;::::1;6666:51:1::0;6753:32;;6733:18;;;6726:60;6639:18;;30499:104:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30483:13;:120:::0;;-1:-1:-1;;;;;;30483:120:0::1;-1:-1:-1::0;;;;;30483:120:0;;;::::1;::::0;;::::1;::::0;;30614:55:::1;::::0;-1:-1:-1;30614:25:0::1;:55::i;:::-;30717:13;::::0;30680:58:::1;::::0;-1:-1:-1;;;;;30717:13:0::1;::::0;30680:28:::1;:58::i;:::-;30419:327::o:0;27113:103::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;27178:30:::1;27205:1;27178:18;:30::i;32106:168::-:0;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;32197:14:::1;:29:::0;;;32237:12:::1;:29:::0;32106:168::o;30798:121::-;26535:6;;30850:4;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;-1:-1:-1;30867:14:0::1;:22:::0;;-1:-1:-1;;30867:22:0::1;::::0;;;30798:121;:::o;31735:167::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31848:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;31848:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31735:167::o;33160:177::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;33277:14:::1;::::0;33244:48:::1;::::0;-1:-1:-1;;;;;33277:14:0;;::::1;::::0;33244:48;::::1;::::0;::::1;::::0;33277:14:::1;::::0;33244:48:::1;33303:14;:26:::0;;-1:-1:-1;;;;;;33303:26:0::1;-1:-1:-1::0;;;;;33303:26:0;;;::::1;::::0;;;::::1;::::0;;33160:177::o;31998:100::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;32069:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;32069:21:0;;::::1;::::0;;;::::1;::::0;;31998:100::o;15697:104::-;15753:13;15786:7;15779:14;;;;;:::i;32652:304::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;32796:13:::1;::::0;-1:-1:-1;;;;;32796:13:0;;::::1;32788:21:::0;;::::1;::::0;32766:128:::1;;;::::0;-1:-1:-1;;;32766:128:0;;6999:2:1;32766:128:0::1;::::0;::::1;6981:21:1::0;7038:2;7018:18;;;7011:30;7077:34;7057:18;;;7050:62;7148:27;7128:18;;;7121:55;7193:19;;32766:128:0::1;6797:421:1::0;32766:128:0::1;32907:41;32936:4;32942:5;32907:28;:41::i;:::-;32652:304:::0;;:::o;19915:413::-;13331:10;20008:4;20052:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20052:34:0;;;;;;;;;;20105:35;;;;20097:85;;;;-1:-1:-1;;;20097:85:0;;7425:2:1;20097:85:0;;;7407:21:1;7464:2;7444:18;;;7437:30;7503:34;7483:18;;;7476:62;-1:-1:-1;;;7554:18:1;;;7547:35;7599:19;;20097:85:0;7223:401:1;20097:85:0;20218:67;13331:10;20241:7;20269:15;20250:16;:34;20218:8;:67::i;:::-;-1:-1:-1;20316:4:0;;19915:413;-1:-1:-1;;;19915:413:0:o;17109:175::-;17195:4;17212:42;13331:10;17236:9;17247:6;17212:9;:42::i;32462:182::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32547:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32547:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32602:34;;1085:41:1;;;32602:34:0::1;::::0;1058:18:1;32602:34:0::1;;;;;;;32462:182:::0;;:::o;31470:257::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;31611:4:::1;31603;31581:13;16686:12:::0;;;16598:108;31581:13:::1;:18;::::0;31597:2:::1;31581:18;:::i;:::-;31580:27;;;;:::i;:::-;31579:36;;;;:::i;:::-;31569:6;:46;;31547:132;;;::::0;-1:-1:-1;;;31547:132:0;;7831:2:1;31547:132:0::1;::::0;::::1;7813:21:1::0;7870:2;7850:18;;;7843:30;7909:34;7889:18;;;7882:62;-1:-1:-1;;;7960:18:1;;;7953:34;8004:19;;31547:132:0::1;7629:400:1::0;31547:132:0::1;31702:17;:6:::0;31712::::1;31702:17;:::i;:::-;31690:9;:29:::0;-1:-1:-1;31470:257:0:o;30989:190::-;26535:6;;31097:4;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;-1:-1:-1;31119:18:0::1;:30:::0;;;31167:4:::1;26753:1;30989:190:::0;;;:::o;32282:172::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;32374:15:::1;:30:::0;;;32415:13:::1;:31:::0;32282:172::o;27371:201::-;26535:6;;-1:-1:-1;;;;;26535:6:0;13331:10;26682:23;26674:68;;;;-1:-1:-1;;;26674:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27460:22:0;::::1;27452:73;;;::::0;-1:-1:-1;;;27452:73:0;;8236:2:1;27452:73:0::1;::::0;::::1;8218:21:1::0;8275:2;8255:18;;;8248:30;8314:34;8294:18;;;8287:62;-1:-1:-1;;;8365:18:1;;;8358:36;8411:19;;27452:73:0::1;8034:402:1::0;27452:73:0::1;27536:28;27555:8;27536:18;:28::i;:::-;27371:201:::0;:::o;23599:380::-;-1:-1:-1;;;;;23735:19:0;;23727:68;;;;-1:-1:-1;;;23727:68:0;;8643:2:1;23727:68:0;;;8625:21:1;8682:2;8662:18;;;8655:30;8721:34;8701:18;;;8694:62;-1:-1:-1;;;8772:18:1;;;8765:34;8816:19;;23727:68:0;8441:400:1;23727:68:0;-1:-1:-1;;;;;23814:21:0;;23806:68;;;;-1:-1:-1;;;23806:68:0;;9048:2:1;23806:68:0;;;9030:21:1;9087:2;9067:18;;;9060:30;9126:34;9106:18;;;9099:62;-1:-1:-1;;;9177:18:1;;;9170:32;9219:19;;23806:68:0;8846:398:1;23806:68:0;-1:-1:-1;;;;;23887:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23939:32;;1535:25:1;;;23939:32:0;;1508:18:1;23939:32:0;;;;;;;23599:380;;;:::o;33600:3696::-;-1:-1:-1;;;;;33732:18:0;;33724:68;;;;-1:-1:-1;;;33724:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33811:16:0;;33803:64;;;;-1:-1:-1;;;33803:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33887:17:0;;;;;;:11;:17;;;;;;;;33886:18;33878:48;;;;-1:-1:-1;;;33878:48:0;;10261:2:1;33878:48:0;;;10243:21:1;10300:2;10280:18;;;10273:30;-1:-1:-1;;;10319:18:1;;;10312:48;10377:18;;33878:48:0;10059:342:1;33878:48:0;-1:-1:-1;;;;;33946:15:0;;;;;;:11;:15;;;;;;;;33945:16;33937:48;;;;-1:-1:-1;;;33937:48:0;;10608:2:1;33937:48:0;;;10590:21:1;10647:2;10627:18;;;10620:30;-1:-1:-1;;;10666:18:1;;;10659:50;10726:18;;33937:48:0;10406:344:1;33937:48:0;34002:6;34012:1;34002:11;33998:93;;34030:28;34046:4;34052:2;34056:1;34030:15;:28::i;:::-;33600:3696;;;:::o;33998:93::-;34107:14;;;;34103:1652;;;26535:6;;-1:-1:-1;;;;;34160:15:0;;;26535:6;;34160:15;;;;:49;;-1:-1:-1;26535:6:0;;-1:-1:-1;;;;;34196:13:0;;;26535:6;;34196:13;;34160:49;:86;;;;-1:-1:-1;;;;;;34230:16:0;;;;34160:86;:116;;;;-1:-1:-1;34268:8:0;;-1:-1:-1;;;34268:8:0;;;;34267:9;34160:116;34138:1606;;;34316:13;;;;;;;34311:223;;-1:-1:-1;;;;;34388:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;34417:23:0;;;;;;:19;:23;;;;;;;;34388:52;34354:160;;;;-1:-1:-1;;;34354:160:0;;10957:2:1;34354:160:0;;;10939:21:1;10996:2;10976:18;;;10969:30;-1:-1:-1;;;11015:18:1;;;11008:52;11077:18;;34354:160:0;10755:346:1;34354:160:0;-1:-1:-1;;;;;34608:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;34665:35:0;;;;;;:31;:35;;;;;;;;34664:36;34608:92;34582:1147;;;34787:20;;34777:6;:30;;34743:169;;;;-1:-1:-1;;;34743:169:0;;11308:2:1;34743:169:0;;;11290:21:1;11347:2;11327:18;;;11320:30;11386:34;11366:18;;;11359:62;-1:-1:-1;;;11437:18:1;;;11430:51;11498:19;;34743:169:0;11106:417:1;34743:169:0;34995:9;;-1:-1:-1;;;;;16870:18:0;;16843:7;16870:18;;;;;;;;;;;34969:22;;:6;:22;:::i;:::-;:35;;34935:140;;;;-1:-1:-1;;;34935:140:0;;11730:2:1;34935:140:0;;;11712:21:1;11769:2;11749:18;;;11742:30;-1:-1:-1;;;11788:18:1;;;11781:49;11847:18;;34935:140:0;11528:343:1;34935:140:0;34582:1147;;;-1:-1:-1;;;;;35173:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;35228:37:0;;;;;;:31;:37;;;;;;;;35227:38;35173:92;35147:582;;;35352:20;;35342:6;:30;;35308:170;;;;-1:-1:-1;;;35308:170:0;;12078:2:1;35308:170:0;;;12060:21:1;12117:2;12097:18;;;12090:30;12156:34;12136:18;;;12129:62;-1:-1:-1;;;12207:18:1;;;12200:52;12269:19;;35308:170:0;11876:418:1;35147:582:0;-1:-1:-1;;;;;35509:35:0;;;;;;:31;:35;;;;;;;;35504:225;;35629:9;;-1:-1:-1;;;;;16870:18:0;;16843:7;16870:18;;;;;;;;;;;35603:22;;:6;:22;:::i;:::-;:35;;35569:140;;;;-1:-1:-1;;;35569:140:0;;11730:2:1;35569:140:0;;;11712:21:1;11769:2;11749:18;;;11742:30;-1:-1:-1;;;11788:18:1;;;11781:49;11847:18;;35569:140:0;11528:343:1;35569:140:0;35816:4;35767:28;16870:18;;;;;;;;;;;35874;;35850:42;;;;;;;35923:35;;-1:-1:-1;35947:11:0;;;;;;;35923:35;:61;;;;-1:-1:-1;35976:8:0;;-1:-1:-1;;;35976:8:0;;;;35975:9;35923:61;:110;;;;-1:-1:-1;;;;;;36002:31:0;;;;;;:25;:31;;;;;;;;36001:32;35923:110;:153;;;;-1:-1:-1;;;;;;36051:25:0;;;;;;:19;:25;;;;;;;;36050:26;35923:153;:194;;;;-1:-1:-1;;;;;;36094:23:0;;;;;;:19;:23;;;;;;;;36093:24;35923:194;35905:326;;;36144:8;:15;;-1:-1:-1;;;;36144:15:0;-1:-1:-1;;;36144:15:0;;;36176:10;:8;:10::i;:::-;36203:8;:16;;-1:-1:-1;;;;36203:16:0;;;35905:326;36259:8;;-1:-1:-1;;;;;36369:25:0;;36243:12;36369:25;;;:19;:25;;;;;;36259:8;-1:-1:-1;;;36259:8:0;;;;;36258:9;;36369:25;;:52;;-1:-1:-1;;;;;;36398:23:0;;;;;;:19;:23;;;;;;;;36369:52;36365:100;;;-1:-1:-1;36448:5:0;36365:100;36477:12;36582:7;36578:665;;;-1:-1:-1;;;;;36634:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;36683:1;36667:13;;:17;36634:50;36630:464;;;36712:34;36742:3;36712:25;36723:13;;36712:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;36705:41;;36813:13;;36794:15;;36787:4;:22;;;;:::i;:::-;36786:40;;;;:::i;:::-;36765:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;36630:464:0;;-1:-1:-1;36630:464:0;;-1:-1:-1;;;;;36888:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;36938:1;36923:12;;:16;36888:51;36884:210;;;36967:33;36996:3;36967:24;36978:12;;36967:6;:10;;:24;;;;:::i;:33::-;36960:40;;37066:12;;37048:14;;37041:4;:21;;;;:::i;:::-;37040:38;;;;:::i;:::-;37019:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;36884:210:0;37114:8;;37110:91;;37143:42;37159:4;37173;37180;37143:15;:42::i;:::-;37217:14;37227:4;37217:14;;:::i;:::-;;;36578:665;37255:33;37271:4;37277:2;37281:6;37255:15;:33::i;:::-;33713:3583;;;;33600:3696;;;:::o;32964:188::-;-1:-1:-1;;;;;33047:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;33047:39:0;;;;;;;;;;33104:40;;33047:39;;:31;33104:40;;;32964:188;;:::o;27732:191::-;27825:6;;;-1:-1:-1;;;;;27842:17:0;;;-1:-1:-1;;;;;;27842:17:0;;;;;;;27875:40;;27825:6;;;27842:17;27825:6;;27875:40;;27806:16;;27875:40;27795:128;27732:191;:::o;20818:733::-;-1:-1:-1;;;;;20958:20:0;;20950:70;;;;-1:-1:-1;;;20950:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21039:23:0;;21031:71;;;;-1:-1:-1;;;21031:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21199:17:0;;21175:21;21199:17;;;;;;;;;;;21235:23;;;;21227:74;;;;-1:-1:-1;;;21227:74:0;;12634:2:1;21227:74:0;;;12616:21:1;12673:2;12653:18;;;12646:30;12712:34;12692:18;;;12685:62;-1:-1:-1;;;12763:18:1;;;12756:36;12809:19;;21227:74:0;12432:402:1;21227:74:0;-1:-1:-1;;;;;21337:17:0;;;:9;:17;;;;;;;;;;;21357:22;;;21337:42;;21401:20;;;;;;;;:30;;21373:6;;21337:9;21401:30;;21373:6;;21401:30;:::i;:::-;;;;;;;;21466:9;-1:-1:-1;;;;;21449:35:0;21458:6;-1:-1:-1;;;;;21449:35:0;;21477:6;21449:35;;;;1535:25:1;;1523:2;1508:18;;1389:177;21449:35:0;;;;;;;;20939:612;20818:733;;;:::o;38349:760::-;38432:4;38388:23;16870:18;;;;;;;;;;;38477:17;;16870:18;;38534:20;;;:46;;-1:-1:-1;38558:22:0;;38534:46;38530:85;;;38597:7;;;38349:760::o;38530:85::-;38649:18;;:23;;38670:2;38649:23;:::i;:::-;38631:15;:41;38627:115;;;38707:18;;:23;;38728:2;38707:23;:::i;:::-;38689:41;;38627:115;38785:15;38841:21;38875:36;38785:15;38875:16;:36::i;:::-;38924:18;38945:44;:21;38971:17;38945:25;:44::i;:::-;39022:1;39002:17;:21;;;39058:14;;39050:51;;38924:65;;-1:-1:-1;;;;;;39058:14:0;;38924:65;;39050:51;39022:1;39050:51;38924:65;39058:14;39050:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;38349:760:0:o;5766:98::-;5824:7;5851:5;5855:1;5851;:5;:::i;:::-;5844:12;5766:98;-1:-1:-1;;;5766:98:0:o;6165:::-;6223:7;6250:5;6254:1;6250;:5;:::i;37304:583::-;37454:16;;;37468:1;37454:16;;;;;;;;37430:21;;37454:16;;;;;;;;;;-1:-1:-1;37454:16:0;37430:40;;37499:4;37481;37486:1;37481:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;37481:23:0;;;-1:-1:-1;;;;;37481:23:0;;;;;37525:13;-1:-1:-1;;;;;37525:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37515:4;37520:1;37515:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;37515:30:0;;;-1:-1:-1;;;;;37515:30:0;;;;;37558:60;37575:4;37590:13;37606:11;37558:8;:60::i;:::-;37657:222;;-1:-1:-1;;;37657:222:0;;-1:-1:-1;;;;;37657:13:0;:64;;;;:222;;37736:11;;37762:1;;37806:4;;37833;;37853:15;;37657:222;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37359:528;37304:583;:::o;5409:98::-;5467:7;5494:5;5498:1;5494;:5;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:247::-;1196:6;1249:2;1237:9;1228:7;1224:23;1220:32;1217:52;;;1265:1;1262;1255:12;1217:52;1304:9;1291:23;1323:31;1348:5;1323:31;:::i;1571:226::-;1630:6;1683:2;1671:9;1662:7;1658:23;1654:32;1651:52;;;1699:1;1696;1689:12;1651:52;-1:-1:-1;1744:23:1;;1571:226;-1:-1:-1;1571:226:1:o;1802:508::-;1879:6;1887;1895;1948:2;1936:9;1927:7;1923:23;1919:32;1916:52;;;1964:1;1961;1954:12;1916:52;2003:9;1990:23;2022:31;2047:5;2022:31;:::i;:::-;2072:5;-1:-1:-1;2129:2:1;2114:18;;2101:32;2142:33;2101:32;2142:33;:::i;:::-;1802:508;;2194:7;;-1:-1:-1;;;2274:2:1;2259:18;;;;2246:32;;1802:508::o;2945:160::-;3010:20;;3066:13;;3059:21;3049:32;;3039:60;;3095:1;3092;3085:12;3110:315;3175:6;3183;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:31;3335:5;3310:31;:::i;:::-;3360:5;-1:-1:-1;3384:35:1;3415:2;3400:18;;3384:35;:::i;:::-;3374:45;;3110:315;;;;;:::o;3430:180::-;3486:6;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3578:26;3594:9;3578:26;:::i;3615:388::-;3683:6;3691;3744:2;3732:9;3723:7;3719:23;3715:32;3712:52;;;3760:1;3757;3750:12;3712:52;3799:9;3786:23;3818:31;3843:5;3818:31;:::i;:::-;3868:5;-1:-1:-1;3925:2:1;3910:18;;3897:32;3938:33;3897:32;3938:33;:::i;:::-;3990:7;3980:17;;;3615:388;;;;;:::o;4008:380::-;4087:1;4083:12;;;;4130;;;4151:61;;4205:4;4197:6;4193:17;4183:27;;4151:61;4258:2;4250:6;4247:14;4227:18;4224:38;4221:161;;4304:10;4299:3;4295:20;4292:1;4285:31;4339:4;4336:1;4329:15;4367:4;4364:1;4357:15;4221:161;;4008:380;;;:::o;4393:356::-;4595:2;4577:21;;;4614:18;;;4607:30;4673:34;4668:2;4653:18;;4646:62;4740:2;4725:18;;4393:356::o;4754:127::-;4815:10;4810:3;4806:20;4803:1;4796:31;4846:4;4843:1;4836:15;4870:4;4867:1;4860:15;4886:168;4959:9;;;4990;;5007:15;;;5001:22;;4987:37;4977:71;;5028:18;;:::i;5059:217::-;5099:1;5125;5115:132;;5169:10;5164:3;5160:20;5157:1;5150:31;5204:4;5201:1;5194:15;5232:4;5229:1;5222:15;5115:132;-1:-1:-1;5261:9:1;;5059:217::o;6106:125::-;6171:9;;;6192:10;;;6189:36;;;6205:18;;:::i;6236:251::-;6306:6;6359:2;6347:9;6338:7;6334:23;6330:32;6327:52;;;6375:1;6372;6365:12;6327:52;6407:9;6401:16;6426:31;6451:5;6426:31;:::i;9249:401::-;9451:2;9433:21;;;9490:2;9470:18;;;9463:30;9529:34;9524:2;9509:18;;9502:62;-1:-1:-1;;;9595:2:1;9580:18;;9573:35;9640:3;9625:19;;9249:401::o;9655:399::-;9857:2;9839:21;;;9896:2;9876:18;;;9869:30;9935:34;9930:2;9915:18;;9908:62;-1:-1:-1;;;10001:2:1;9986:18;;9979:33;10044:3;10029:19;;9655:399::o;12299:128::-;12366:9;;;12387:11;;;12384:37;;;12401:18;;:::i;13181:127::-;13242:10;13237:3;13233:20;13230:1;13223:31;13273:4;13270:1;13263:15;13297:4;13294:1;13287:15;13313:959;13575:4;13623:3;13612:9;13608:19;13654:6;13643:9;13636:25;13697:6;13692:2;13681:9;13677:18;13670:34;13740:3;13735:2;13724:9;13720:18;13713:31;13764:6;13799;13793:13;13830:6;13822;13815:22;13868:3;13857:9;13853:19;13846:26;;13907:2;13899:6;13895:15;13881:29;;13928:1;13938:195;13952:6;13949:1;13946:13;13938:195;;;14017:13;;-1:-1:-1;;;;;14013:39:1;14001:52;;14082:2;14108:15;;;;14073:12;;;;14049:1;13967:9;13938:195;;;-1:-1:-1;;;;;;;14189:32:1;;;;14184:2;14169:18;;14162:60;-1:-1:-1;;14253:3:1;14238:19;14231:35;14150:3;13313:959;-1:-1:-1;;;13313:959:1:o

Swarm Source

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