ETH Price: $3,263.63 (-0.61%)
Gas: 1 Gwei

Token

Pybit Coin (PYBIT)
 

Overview

Max Total Supply

120,000,000 PYBIT

Holders

135

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
49,413.655530509600879935 PYBIT

Value
$0.00
0x2205fad5a09332887d4b56f0f46ec1ef42f4ec65
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:
PYBIT

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-13
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.23;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Pair {
    function token0() external view returns (address);
    function token1() external view returns (address);
    
    function sync() external;
}

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

    bool private isSwapping;

    IUniswapV2Router02 public immutable uniswapV2Router;
    IUniswapV2Pair public immutable uniswapV2Pair;

    address public constant deadAddress = address(0xdead); // if holders decide to burn tokens

    bool public limitsInEffect = true;
    bool public tradingEnabled = false;

    address public taxReceiverWallet = 0xC47d6FB33bA3f702b7E873e5b26D7F80B5141DF8;

    uint256 public maxWalletBalance;
    uint256 public maxTransactionAmount;
    uint256 public swapTaxThreshold;

    uint256 public buyFee;
    uint256 public sellFee;

    mapping(address => bool) public excludedFromFee;
    mapping(address => bool) public excludedFromMaxTx;

    bytes32 public DOMAIN_SEPARATOR;
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;

    event ExcludedFromFee(address indexed account, bool isExcluded);
    event ExcludedFromMaxTx(address indexed account, bool isExcluded);
    event TaxDistributed(uint256 tax);

    constructor() ERC20("Pybit Coin", "PYBIT") {
        uint256 totalSupply = 120_000_000 * 1e18;

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Pair(IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()));

        // buy tax
        buyFee = 30;

        // sell tax
        sellFee = 30;

        maxWalletBalance = (totalSupply * 2) / 100; // 2% from total supply max wallet balance
        maxTransactionAmount = (totalSupply * 2) / 100; // 2% from total supply max transaction amount
        swapTaxThreshold = (totalSupply * 100) / 10000; // 1% from total supply for exchange tax tokens to ETH

        // exclude from paying fee and max wallet
        excludeFromFee(taxReceiverWallet, true);
        excludeFromFee(address(this), true);
        excludeFromFee(deadAddress, true);

        // exclude from max transaction amount
        excludeFromMaxTx(taxReceiverWallet, true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(deadAddress, true);

        // contract owns total supply
        super._mint(address(this), totalSupply);

        // ERC-2612: Permit Extension for EIP-20 Signed Approvals
        uint chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name())),
                keccak256(bytes('1')),
                chainId,
                address(this)
            )
        );
    }

    // pool initialization
    function addLiqBurn() external payable onlyOwner {
        require(msg.value >= 1e18, "minimum ETH for liquidity is not provided"); // 1 ETH
        super._approve(address(this), address(uniswapV2Router), totalSupply());
        isSwapping = true;
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this), totalSupply(), 0, 0, deadAddress, block.timestamp);
        isSwapping = false;
        _transferOwnership(taxReceiverWallet);
    }

    // allows the contract to receive ETH
    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
    }

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

    // change the tax receiver wallet
    function updateTaxReceiverWallet(address newAddr) external onlyOwner
    {
        taxReceiverWallet = newAddr;
    }

    // change the maximum amount of tokens a wallet could receive
    function updateMaxWalletBalance(uint256 percent) external onlyOwner {
        maxWalletBalance = (totalSupply() * percent) / 100;
    }

    // change the maximum amount of tokens a transaction could transfer
    function updateMaxTransactionAmount(uint256 percent) external onlyOwner {
        maxTransactionAmount = (totalSupply() * percent) / 100;
    }

    // 100 means 1%
    function updateSwapTaxThreshold(uint256 percent) external onlyOwner {
        swapTaxThreshold = (totalSupply() * percent) / 10000;
    }

    function updateBuyFee(uint256 fee) external onlyOwner {
        buyFee = fee;
    }

    function updateSellFee(uint256 fee) external onlyOwner {
        sellFee = fee;
    }

    function excludeFromFee(address account, bool excluded) public onlyOwner {
        excludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }

    function excludeFromMaxTx(address account, bool excluded) public onlyOwner {
        excludedFromMaxTx[account] = excluded;
        emit ExcludedFromMaxTx(account, excluded);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (isSwapping || amount == 0) {
            super._transfer(from, to, amount);
            return;
        }

        bool isFeeExcluded = excludedFromFee[from] || excludedFromFee[to];
        if (limitsInEffect) {
            if (!tradingEnabled) {
                require(isFeeExcluded, "trading is not active");
            }

            if (!isFeeExcluded && to != address(uniswapV2Pair)) {
                require(balanceOf(to) + amount <= maxWalletBalance, "max wallet balance exceeded");
            }

            bool isMaxTxExcluded = excludedFromMaxTx[from] || excludedFromMaxTx[to];
            if (!isMaxTxExcluded && to != address(uniswapV2Pair)) {
                require(amount <= maxTransactionAmount, "max transaction amount exceeded");
            }
        }
        
        // if any account belongs to excludedFromFee account then remove the fee
        bool takeFee = isFeeExcluded ? false : true;

        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            uint256 fee = 0;
            // on sell
            if (to == address(uniswapV2Pair) && sellFee > 0) {
                fee = amount.mul(sellFee).div(100);
            }
            // on buy
            else if (from == address(uniswapV2Pair) && buyFee > 0) {
                fee = amount.mul(buyFee).div(100);
            }

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

            if (balanceOf(address(this)) >= swapTaxThreshold && to == address(uniswapV2Pair)) {
                uint256 ethReceived = swapTokensForETH(swapTaxThreshold, address(this));

                (bool success, ) = taxReceiverWallet.call{value: ethReceived}("");
                require (success, "transfer to tax receiver wallet failed");
                
                emit TaxDistributed(ethReceived);
            }

            amount -= fee;
        }

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

    function swapTokensForETH(uint256 amount, address to) internal returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        super._approve(address(this), address(uniswapV2Router), amount);
        
        isSwapping = true;
        uint256 beforeBalance = to.balance;
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            to,
            block.timestamp
        );
        uint256 afterBalance = to.balance;
        uint256 ethValue = afterBalance.sub(beforeBalance);
        isSwapping = false;

        return ethValue;
    }

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        require(deadline >= block.timestamp, 'UniswapV2: EXPIRED');
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );
        address recoveredAddress = ecrecover(digest, v, r, s);
        require(recoveredAddress != address(0) && recoveredAddress == owner, 'UniswapV2: INVALID_SIGNATURE');
        super._approve(owner, spender, value);
    }
}

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":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxTx","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":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"TaxDistributed","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"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiqBurn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromMaxTx","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":"maxWalletBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTaxThreshold","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":"taxReceiverWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uniswapV2Pair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateMaxWalletBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateSwapTaxThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"updateTaxReceiverWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805461ffff60a81b1916600160a81b179055600680546001600160a01b03191673c47d6fb33ba3f702b7e873e5b26d7f80b5141df81790553480156200004a575f80fd5b506040518060400160405280600a815260200169283cb134ba1021b7b4b760b11b81525060405180604001604052806005815260200164141650925560da1b81525081600390816200009d919062000790565b506004620000ac828262000790565b505050620000c9620000c3620003d060201b60201c565b620003d4565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b815290516a6342fd08f00f6378000000929163c45a01559160048083019260209291908290030181865afa1580156200012a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200015091906200085c565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c491906200085c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023591906200085c565b6001600160a01b031660a052601e600a819055600b5560646200025a8260026200089f565b620002669190620008bf565b6007556064620002788260026200089f565b620002849190620008bf565b600855612710620002978260646200089f565b620002a39190620008bf565b600955600654620002bf906001600160a01b0316600162000425565b620002cc30600162000425565b620002db61dead600162000425565b600654620002f4906001600160a01b03166001620004d2565b62000301306001620004d2565b6200031061dead6001620004d2565b6200031c308262000574565b467f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6200034862000656565b805160209182012060408051808201825260018152603160f81b90840152805192830193909352918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060820152608081018290523060a082015260c00160405160208183030381529060405280519060200120600e819055505050620008f5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004735760405162461bcd60e51b815260206004820181905260248201525f80516020620027ee83398151915260448201526064015b60405180910390fd5b6001600160a01b0382165f818152600c6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991015b60405180910390a25050565b6005546001600160a01b031633146200051c5760405162461bcd60e51b815260206004820181905260248201525f80516020620027ee83398151915260448201526064016200046a565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f77a0fec448da1c340eddbf781d9ff0520a78d5a35fd142eaaec4e04a81157a0f9101620004c6565b6001600160a01b038216620005cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200046a565b8060025f828254620005df9190620008df565b90915550506001600160a01b0382165f90815260208190526040812080548392906200060d908490620008df565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b606060038054620006679062000707565b80601f0160208091040260200160405190810160405280929190818152602001828054620006959062000707565b8015620006e45780601f10620006ba57610100808354040283529160200191620006e4565b820191905f5260205f20905b815481529060010190602001808311620006c657829003601f168201915b5050505050905090565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200071c57607f821691505b6020821081036200073b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006ee57805f5260205f20601f840160051c81016020851015620007685750805b601f840160051c820191505b8181101562000789575f815560010162000774565b5050505050565b81516001600160401b03811115620007ac57620007ac620006f3565b620007c481620007bd845462000707565b8462000741565b602080601f831160018114620007fa575f8415620007e25750858301515b5f19600386901b1c1916600185901b17855562000854565b5f85815260208120601f198616915b828110156200082a5788860151825594840194600190910190840162000809565b50858210156200084857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156200086d575f80fd5b81516001600160a01b038116811462000884575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008b957620008b96200088b565b92915050565b5f82620008da57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008b957620008b96200088b565b60805160a051611e916200095d5f395f8181610453015281816112910152818161138f01528181611437015281816114a5015261153501525f81816102ab01528181610a6d01528181610ab701528181611919015281816119d00152611a240152611e915ff3fe608060405260043610610236575f3560e01c8063715018a611610129578063bbde77c1116100a8578063d505accf1161006d578063d505accf146106aa578063dd62ed3e146106c9578063df8408fe1461070d578063ed0634091461072c578063f2fde38b14610741575f80fd5b8063bbde77c114610623578063c53a360414610638578063c8c8ebe414610657578063c9ca9bdb1461066c578063d4c989d31461068b575f80fd5b80638a8c523c116100ee5780638a8c523c146105a05780638da5cb5b146105b457806395d89b41146105d1578063a9059cbb146105e5578063aa49802314610604575f80fd5b8063715018a614610517578063751039fc1461052b5780637ecebe001461053f57806385ecafd71461056a57806388647a3914610598575f80fd5b8063313ce567116101b557806349bd5a5e1161017a57806349bd5a5e146104425780634a62bb65146104755780634ada218b1461049557806354f9c98c146104b557806370a08231146104e3575f80fd5b8063313ce567146103bf5780633644e515146103da5780633f4c87bb146103ef578063467abe0a1461040e578063470624021461042d575f80fd5b80631d933a4a116101fb5780631d933a4a1461032457806323b872dd1461034357806327c8f835146103625780632b14ca561461037757806330adf81f1461038c575f80fd5b806306fdde0314610241578063095ea7b31461026b5780631694505e1461029a57806318160ddd146102e5578063188b1bf114610303575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610255610760565b6040516102629190611ac9565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611b29565b6107f0565b6040519015158152602001610262565b3480156102a5575f80fd5b506102cd7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156102f0575f80fd5b506002545b604051908152602001610262565b34801561030e575f80fd5b5061032261031d366004611b53565b610806565b005b34801561032f575f80fd5b5061032261033e366004611b53565b61085f565b34801561034e575f80fd5b5061028a61035d366004611b6a565b61088e565b34801561036d575f80fd5b506102cd61dead81565b348015610382575f80fd5b506102f5600b5481565b348015610397575f80fd5b506102f57f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b3480156103ca575f80fd5b5060405160128152602001610262565b3480156103e5575f80fd5b506102f5600e5481565b3480156103fa575f80fd5b506006546102cd906001600160a01b031681565b348015610419575f80fd5b50610322610428366004611b53565b610936565b348015610438575f80fd5b506102f5600a5481565b34801561044d575f80fd5b506102cd7f000000000000000000000000000000000000000000000000000000000000000081565b348015610480575f80fd5b5060055461028a90600160a81b900460ff1681565b3480156104a0575f80fd5b5060055461028a90600160b01b900460ff1681565b3480156104c0575f80fd5b5061028a6104cf366004611ba8565b600d6020525f908152604090205460ff1681565b3480156104ee575f80fd5b506102f56104fd366004611ba8565b6001600160a01b03165f9081526020819052604090205490565b348015610522575f80fd5b50610322610965565b348015610536575f80fd5b5061032261099a565b34801561054a575f80fd5b506102f5610559366004611ba8565b600f6020525f908152604090205481565b348015610575575f80fd5b5061028a610584366004611ba8565b600c6020525f908152604090205460ff1681565b6103226109d3565b3480156105ab575f80fd5b50610322610b94565b3480156105bf575f80fd5b506005546001600160a01b03166102cd565b3480156105dc575f80fd5b50610255610bd3565b3480156105f0575f80fd5b5061028a6105ff366004611b29565b610be2565b34801561060f575f80fd5b5061032261061e366004611b53565b610bee565b34801561062e575f80fd5b506102f560075481565b348015610643575f80fd5b50610322610652366004611ba8565b610c3e565b348015610662575f80fd5b506102f560085481565b348015610677575f80fd5b50610322610686366004611b53565b610c8a565b348015610696575f80fd5b506103226106a5366004611bc3565b610cdb565b3480156106b5575f80fd5b506103226106c4366004611bfe565b610d64565b3480156106d4575f80fd5b506102f56106e3366004611c6f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610718575f80fd5b50610322610727366004611bc3565b610f74565b348015610737575f80fd5b506102f560095481565b34801561074c575f80fd5b5061032261075b366004611ba8565b610ff5565b60606003805461076f90611c9b565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90611c9b565b80156107e65780601f106107bd576101008083540402835291602001916107e6565b820191905f5260205f20905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b5f6107fc338484611090565b5060015b92915050565b6005546001600160a01b031633146108395760405162461bcd60e51b815260040161083090611cd3565b60405180910390fd5b60648161084560025490565b61084f9190611d1c565b6108599190611d33565b60075550565b6005546001600160a01b031633146108895760405162461bcd60e51b815260040161083090611cd3565b600b55565b5f61089a8484846111b3565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561091e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610830565b61092b8533858403611090565b506001949350505050565b6005546001600160a01b031633146109605760405162461bcd60e51b815260040161083090611cd3565b600a55565b6005546001600160a01b0316331461098f5760405162461bcd60e51b815260040161083090611cd3565b6109985f611685565b565b6005546001600160a01b031633146109c45760405162461bcd60e51b815260040161083090611cd3565b6005805460ff60a81b19169055565b6005546001600160a01b031633146109fd5760405162461bcd60e51b815260040161083090611cd3565b670de0b6b3a7640000341015610a675760405162461bcd60e51b815260206004820152602960248201527f6d696e696d756d2045544820666f72206c6971756964697479206973206e6f74604482015268081c1c9bdd9a59195960ba1b6064820152608401610830565b610a9a307f0000000000000000000000000000000000000000000000000000000000000000610a9560025490565b611090565b6005805460ff60a01b1916600160a01b1790556001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d7193430610ae760025490565b6040516001600160e01b031960e086901b1681526001600160a01b03909216600483015260248201525f60448201819052606482015261dead60848201524260a482015260c40160606040518083038185885af1158015610b4a573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b6f9190611d52565b50506005805460ff60a01b1916905550600654610998906001600160a01b0316611685565b6005546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161083090611cd3565b6005805460ff60b01b1916600160b01b179055565b60606004805461076f90611c9b565b5f6107fc3384846111b3565b6005546001600160a01b03163314610c185760405162461bcd60e51b815260040161083090611cd3565b606481610c2460025490565b610c2e9190611d1c565b610c389190611d33565b60085550565b6005546001600160a01b03163314610c685760405162461bcd60e51b815260040161083090611cd3565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cb45760405162461bcd60e51b815260040161083090611cd3565b61271081610cc160025490565b610ccb9190611d1c565b610cd59190611d33565b60095550565b6005546001600160a01b03163314610d055760405162461bcd60e51b815260040161083090611cd3565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f77a0fec448da1c340eddbf781d9ff0520a78d5a35fd142eaaec4e04a81157a0f91015b60405180910390a25050565b42841015610da95760405162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b6044820152606401610830565b600e546001600160a01b0388165f908152600f6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b919087610dfb83611d7d565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120604051602001610e7492919061190160f01b81526002810192909252602282015260420190565b60408051601f1981840301815282825280516020918201205f80855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015610edc573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b03811615801590610f125750886001600160a01b0316816001600160a01b0316145b610f5e5760405162461bcd60e51b815260206004820152601c60248201527f556e697377617056323a20494e56414c49445f5349474e4154555245000000006044820152606401610830565b610f69898989611090565b505050505050505050565b6005546001600160a01b03163314610f9e5760405162461bcd60e51b815260040161083090611cd3565b6001600160a01b0382165f818152600c6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa99101610d58565b6005546001600160a01b0316331461101f5760405162461bcd60e51b815260040161083090611cd3565b6001600160a01b0381166110845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610830565b61108d81611685565b50565b6001600160a01b0383166110f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610830565b6001600160a01b0382166111535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610830565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600554600160a01b900460ff16806111c9575080155b156111de576111d98383836116d6565b505050565b6001600160a01b0383165f908152600c602052604081205460ff168061121b57506001600160a01b0383165f908152600c602052604090205460ff165b600554909150600160a81b900460ff161561141d57600554600160b01b900460ff1661128657806112865760405162461bcd60e51b815260206004820152601560248201527474726164696e67206973206e6f742061637469766560581b6044820152606401610830565b801580156112c657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561134557600754826112ed856001600160a01b03165f9081526020819052604090205490565b6112f79190611d95565b11156113455760405162461bcd60e51b815260206004820152601b60248201527f6d61782077616c6c65742062616c616e636520657863656564656400000000006044820152606401610830565b6001600160a01b0384165f908152600d602052604081205460ff168061138257506001600160a01b0384165f908152600d602052604090205460ff165b9050801580156113c457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b1561141b5760085483111561141b5760405162461bcd60e51b815260206004820152601f60248201527f6d6178207472616e73616374696f6e20616d6f756e74206578636565646564006044820152606401610830565b505b5f8161142a57600161142c565b5f5b90508015611673575f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614801561147757505f600b54115b156114a35761149c6064611496600b54876118a390919063ffffffff16565b906118b5565b9050611507565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156114e557505f600a54115b15611507576115046064611496600a54876118a390919063ffffffff16565b90505b8015611518576115188630836116d6565b600954305f908152602081905260409020541015801561156957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b15611665575f61157b600954306118c0565b6006546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146115ca576040519150601f19603f3d011682016040523d82523d5f602084013e6115cf565b606091505b505090508061162f5760405162461bcd60e51b815260206004820152602660248201527f7472616e7366657220746f207461782072656365697665722077616c6c65742060448201526519985a5b195960d21b6064820152608401610830565b6040518281527fbb245b3c380b63918dc25ab2cc2e4b6939c4d58ffd95ea052b685a031e1ad2979060200160405180910390a150505b61166f8185611da8565b9350505b61167e8585856116d6565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661173a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610830565b6001600160a01b03821661179c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610830565b6001600160a01b0383165f90815260208190526040902054818110156118135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610830565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611849908490611d95565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189591815260200190565b60405180910390a350505050565b5f6118ae8284611d1c565b9392505050565b5f6118ae8284611d33565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106118f7576118f7611dbb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119979190611dcf565b816001815181106119aa576119aa611dbb565b60200260200101906001600160a01b031690816001600160a01b0316815250506119f5307f000000000000000000000000000000000000000000000000000000000000000086611090565b6005805460ff60a01b1916600160a01b17905560405163791ac94760e01b81526001600160a01b0380851631917f00000000000000000000000000000000000000000000000000000000000000009091169063791ac94790611a639088905f9087908a904290600401611dea565b5f604051808303815f87803b158015611a7a575f80fd5b505af1158015611a8c573d5f803e3d5ffd5b505050506001600160a01b038416315f611aa68284611abe565b6005805460ff60a01b19169055979650505050505050565b5f6118ae8284611da8565b5f602080835283518060208501525f5b81811015611af557858101830151858201604001528201611ad9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461108d575f80fd5b5f8060408385031215611b3a575f80fd5b8235611b4581611b15565b946020939093013593505050565b5f60208284031215611b63575f80fd5b5035919050565b5f805f60608486031215611b7c575f80fd5b8335611b8781611b15565b92506020840135611b9781611b15565b929592945050506040919091013590565b5f60208284031215611bb8575f80fd5b81356118ae81611b15565b5f8060408385031215611bd4575f80fd5b8235611bdf81611b15565b915060208301358015158114611bf3575f80fd5b809150509250929050565b5f805f805f805f60e0888a031215611c14575f80fd5b8735611c1f81611b15565b96506020880135611c2f81611b15565b95506040880135945060608801359350608088013560ff81168114611c52575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215611c80575f80fd5b8235611c8b81611b15565b91506020830135611bf381611b15565b600181811c90821680611caf57607f821691505b602082108103611ccd57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761080057610800611d08565b5f82611d4d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f60608486031215611d64575f80fd5b8351925060208401519150604084015190509250925092565b5f60018201611d8e57611d8e611d08565b5060010190565b8082018082111561080057610800611d08565b8181038181111561080057610800611d08565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611ddf575f80fd5b81516118ae81611b15565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611e3a5784516001600160a01b031683529383019391830191600101611e15565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f4563a8664e0852769e9a174ffcba2a190a1c241c380e4ef5447fecd1488ec6864736f6c634300081700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610236575f3560e01c8063715018a611610129578063bbde77c1116100a8578063d505accf1161006d578063d505accf146106aa578063dd62ed3e146106c9578063df8408fe1461070d578063ed0634091461072c578063f2fde38b14610741575f80fd5b8063bbde77c114610623578063c53a360414610638578063c8c8ebe414610657578063c9ca9bdb1461066c578063d4c989d31461068b575f80fd5b80638a8c523c116100ee5780638a8c523c146105a05780638da5cb5b146105b457806395d89b41146105d1578063a9059cbb146105e5578063aa49802314610604575f80fd5b8063715018a614610517578063751039fc1461052b5780637ecebe001461053f57806385ecafd71461056a57806388647a3914610598575f80fd5b8063313ce567116101b557806349bd5a5e1161017a57806349bd5a5e146104425780634a62bb65146104755780634ada218b1461049557806354f9c98c146104b557806370a08231146104e3575f80fd5b8063313ce567146103bf5780633644e515146103da5780633f4c87bb146103ef578063467abe0a1461040e578063470624021461042d575f80fd5b80631d933a4a116101fb5780631d933a4a1461032457806323b872dd1461034357806327c8f835146103625780632b14ca561461037757806330adf81f1461038c575f80fd5b806306fdde0314610241578063095ea7b31461026b5780631694505e1461029a57806318160ddd146102e5578063188b1bf114610303575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610255610760565b6040516102629190611ac9565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611b29565b6107f0565b6040519015158152602001610262565b3480156102a5575f80fd5b506102cd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156102f0575f80fd5b506002545b604051908152602001610262565b34801561030e575f80fd5b5061032261031d366004611b53565b610806565b005b34801561032f575f80fd5b5061032261033e366004611b53565b61085f565b34801561034e575f80fd5b5061028a61035d366004611b6a565b61088e565b34801561036d575f80fd5b506102cd61dead81565b348015610382575f80fd5b506102f5600b5481565b348015610397575f80fd5b506102f57f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b3480156103ca575f80fd5b5060405160128152602001610262565b3480156103e5575f80fd5b506102f5600e5481565b3480156103fa575f80fd5b506006546102cd906001600160a01b031681565b348015610419575f80fd5b50610322610428366004611b53565b610936565b348015610438575f80fd5b506102f5600a5481565b34801561044d575f80fd5b506102cd7f0000000000000000000000006fbe25e62e7b74e509dbb4a82ba44fff3bcb1acf81565b348015610480575f80fd5b5060055461028a90600160a81b900460ff1681565b3480156104a0575f80fd5b5060055461028a90600160b01b900460ff1681565b3480156104c0575f80fd5b5061028a6104cf366004611ba8565b600d6020525f908152604090205460ff1681565b3480156104ee575f80fd5b506102f56104fd366004611ba8565b6001600160a01b03165f9081526020819052604090205490565b348015610522575f80fd5b50610322610965565b348015610536575f80fd5b5061032261099a565b34801561054a575f80fd5b506102f5610559366004611ba8565b600f6020525f908152604090205481565b348015610575575f80fd5b5061028a610584366004611ba8565b600c6020525f908152604090205460ff1681565b6103226109d3565b3480156105ab575f80fd5b50610322610b94565b3480156105bf575f80fd5b506005546001600160a01b03166102cd565b3480156105dc575f80fd5b50610255610bd3565b3480156105f0575f80fd5b5061028a6105ff366004611b29565b610be2565b34801561060f575f80fd5b5061032261061e366004611b53565b610bee565b34801561062e575f80fd5b506102f560075481565b348015610643575f80fd5b50610322610652366004611ba8565b610c3e565b348015610662575f80fd5b506102f560085481565b348015610677575f80fd5b50610322610686366004611b53565b610c8a565b348015610696575f80fd5b506103226106a5366004611bc3565b610cdb565b3480156106b5575f80fd5b506103226106c4366004611bfe565b610d64565b3480156106d4575f80fd5b506102f56106e3366004611c6f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610718575f80fd5b50610322610727366004611bc3565b610f74565b348015610737575f80fd5b506102f560095481565b34801561074c575f80fd5b5061032261075b366004611ba8565b610ff5565b60606003805461076f90611c9b565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90611c9b565b80156107e65780601f106107bd576101008083540402835291602001916107e6565b820191905f5260205f20905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b5f6107fc338484611090565b5060015b92915050565b6005546001600160a01b031633146108395760405162461bcd60e51b815260040161083090611cd3565b60405180910390fd5b60648161084560025490565b61084f9190611d1c565b6108599190611d33565b60075550565b6005546001600160a01b031633146108895760405162461bcd60e51b815260040161083090611cd3565b600b55565b5f61089a8484846111b3565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561091e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610830565b61092b8533858403611090565b506001949350505050565b6005546001600160a01b031633146109605760405162461bcd60e51b815260040161083090611cd3565b600a55565b6005546001600160a01b0316331461098f5760405162461bcd60e51b815260040161083090611cd3565b6109985f611685565b565b6005546001600160a01b031633146109c45760405162461bcd60e51b815260040161083090611cd3565b6005805460ff60a81b19169055565b6005546001600160a01b031633146109fd5760405162461bcd60e51b815260040161083090611cd3565b670de0b6b3a7640000341015610a675760405162461bcd60e51b815260206004820152602960248201527f6d696e696d756d2045544820666f72206c6971756964697479206973206e6f74604482015268081c1c9bdd9a59195960ba1b6064820152608401610830565b610a9a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610a9560025490565b611090565b6005805460ff60a01b1916600160a01b1790556001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d7193430610ae760025490565b6040516001600160e01b031960e086901b1681526001600160a01b03909216600483015260248201525f60448201819052606482015261dead60848201524260a482015260c40160606040518083038185885af1158015610b4a573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b6f9190611d52565b50506005805460ff60a01b1916905550600654610998906001600160a01b0316611685565b6005546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161083090611cd3565b6005805460ff60b01b1916600160b01b179055565b60606004805461076f90611c9b565b5f6107fc3384846111b3565b6005546001600160a01b03163314610c185760405162461bcd60e51b815260040161083090611cd3565b606481610c2460025490565b610c2e9190611d1c565b610c389190611d33565b60085550565b6005546001600160a01b03163314610c685760405162461bcd60e51b815260040161083090611cd3565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cb45760405162461bcd60e51b815260040161083090611cd3565b61271081610cc160025490565b610ccb9190611d1c565b610cd59190611d33565b60095550565b6005546001600160a01b03163314610d055760405162461bcd60e51b815260040161083090611cd3565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f77a0fec448da1c340eddbf781d9ff0520a78d5a35fd142eaaec4e04a81157a0f91015b60405180910390a25050565b42841015610da95760405162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b6044820152606401610830565b600e546001600160a01b0388165f908152600f6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b919087610dfb83611d7d565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120604051602001610e7492919061190160f01b81526002810192909252602282015260420190565b60408051601f1981840301815282825280516020918201205f80855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015610edc573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b03811615801590610f125750886001600160a01b0316816001600160a01b0316145b610f5e5760405162461bcd60e51b815260206004820152601c60248201527f556e697377617056323a20494e56414c49445f5349474e4154555245000000006044820152606401610830565b610f69898989611090565b505050505050505050565b6005546001600160a01b03163314610f9e5760405162461bcd60e51b815260040161083090611cd3565b6001600160a01b0382165f818152600c6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa99101610d58565b6005546001600160a01b0316331461101f5760405162461bcd60e51b815260040161083090611cd3565b6001600160a01b0381166110845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610830565b61108d81611685565b50565b6001600160a01b0383166110f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610830565b6001600160a01b0382166111535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610830565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600554600160a01b900460ff16806111c9575080155b156111de576111d98383836116d6565b505050565b6001600160a01b0383165f908152600c602052604081205460ff168061121b57506001600160a01b0383165f908152600c602052604090205460ff165b600554909150600160a81b900460ff161561141d57600554600160b01b900460ff1661128657806112865760405162461bcd60e51b815260206004820152601560248201527474726164696e67206973206e6f742061637469766560581b6044820152606401610830565b801580156112c657507f0000000000000000000000006fbe25e62e7b74e509dbb4a82ba44fff3bcb1acf6001600160a01b0316836001600160a01b031614155b1561134557600754826112ed856001600160a01b03165f9081526020819052604090205490565b6112f79190611d95565b11156113455760405162461bcd60e51b815260206004820152601b60248201527f6d61782077616c6c65742062616c616e636520657863656564656400000000006044820152606401610830565b6001600160a01b0384165f908152600d602052604081205460ff168061138257506001600160a01b0384165f908152600d602052604090205460ff165b9050801580156113c457507f0000000000000000000000006fbe25e62e7b74e509dbb4a82ba44fff3bcb1acf6001600160a01b0316846001600160a01b031614155b1561141b5760085483111561141b5760405162461bcd60e51b815260206004820152601f60248201527f6d6178207472616e73616374696f6e20616d6f756e74206578636565646564006044820152606401610830565b505b5f8161142a57600161142c565b5f5b90508015611673575f7f0000000000000000000000006fbe25e62e7b74e509dbb4a82ba44fff3bcb1acf6001600160a01b0316856001600160a01b031614801561147757505f600b54115b156114a35761149c6064611496600b54876118a390919063ffffffff16565b906118b5565b9050611507565b7f0000000000000000000000006fbe25e62e7b74e509dbb4a82ba44fff3bcb1acf6001600160a01b0316866001600160a01b03161480156114e557505f600a54115b15611507576115046064611496600a54876118a390919063ffffffff16565b90505b8015611518576115188630836116d6565b600954305f908152602081905260409020541015801561156957507f0000000000000000000000006fbe25e62e7b74e509dbb4a82ba44fff3bcb1acf6001600160a01b0316856001600160a01b0316145b15611665575f61157b600954306118c0565b6006546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146115ca576040519150601f19603f3d011682016040523d82523d5f602084013e6115cf565b606091505b505090508061162f5760405162461bcd60e51b815260206004820152602660248201527f7472616e7366657220746f207461782072656365697665722077616c6c65742060448201526519985a5b195960d21b6064820152608401610830565b6040518281527fbb245b3c380b63918dc25ab2cc2e4b6939c4d58ffd95ea052b685a031e1ad2979060200160405180910390a150505b61166f8185611da8565b9350505b61167e8585856116d6565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661173a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610830565b6001600160a01b03821661179c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610830565b6001600160a01b0383165f90815260208190526040902054818110156118135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610830565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611849908490611d95565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189591815260200190565b60405180910390a350505050565b5f6118ae8284611d1c565b9392505050565b5f6118ae8284611d33565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106118f7576118f7611dbb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119979190611dcf565b816001815181106119aa576119aa611dbb565b60200260200101906001600160a01b031690816001600160a01b0316815250506119f5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d86611090565b6005805460ff60a01b1916600160a01b17905560405163791ac94760e01b81526001600160a01b0380851631917f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac94790611a639088905f9087908a904290600401611dea565b5f604051808303815f87803b158015611a7a575f80fd5b505af1158015611a8c573d5f803e3d5ffd5b505050506001600160a01b038416315f611aa68284611abe565b6005805460ff60a01b19169055979650505050505050565b5f6118ae8284611da8565b5f602080835283518060208501525f5b81811015611af557858101830151858201604001528201611ad9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461108d575f80fd5b5f8060408385031215611b3a575f80fd5b8235611b4581611b15565b946020939093013593505050565b5f60208284031215611b63575f80fd5b5035919050565b5f805f60608486031215611b7c575f80fd5b8335611b8781611b15565b92506020840135611b9781611b15565b929592945050506040919091013590565b5f60208284031215611bb8575f80fd5b81356118ae81611b15565b5f8060408385031215611bd4575f80fd5b8235611bdf81611b15565b915060208301358015158114611bf3575f80fd5b809150509250929050565b5f805f805f805f60e0888a031215611c14575f80fd5b8735611c1f81611b15565b96506020880135611c2f81611b15565b95506040880135945060608801359350608088013560ff81168114611c52575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215611c80575f80fd5b8235611c8b81611b15565b91506020830135611bf381611b15565b600181811c90821680611caf57607f821691505b602082108103611ccd57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761080057610800611d08565b5f82611d4d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f60608486031215611d64575f80fd5b8351925060208401519150604084015190509250925092565b5f60018201611d8e57611d8e611d08565b5060010190565b8082018082111561080057610800611d08565b8181038181111561080057610800611d08565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611ddf575f80fd5b81516118ae81611b15565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611e3a5784516001600160a01b031683529383019391830191600101611e15565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f4563a8664e0852769e9a174ffcba2a190a1c241c380e4ef5447fecd1488ec6864736f6c63430008170033

Deployed Bytecode Sourcemap

24132:8653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8473:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10640:169;;;;;;;;;;-1:-1:-1;10640:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10640:169:0;1023:187:1;24239:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;24239:51:0;1215:230:1;9593:108:0;;;;;;;;;;-1:-1:-1;9681:12:0;;9593:108;;;1596:25:1;;;1584:2;1569:18;9593:108:0;1450:177:1;28103:137:0;;;;;;;;;;-1:-1:-1;28103:137:0;;;;;:::i;:::-;;:::i;:::-;;28735:87;;;;;;;;;;-1:-1:-1;28735:87:0;;;;;:::i;:::-;;:::i;11291:492::-;;;;;;;;;;-1:-1:-1;11291:492:0;;;;;:::i;:::-;;:::i;24351:53::-;;;;;;;;;;;;24397:6;24351:53;;24766:22;;;;;;;;;;;;;;;;24947:108;;;;;;;;;;-1:-1:-1;24947:108:0;24989:66;24947:108;;9435:93;;;;;;;;;;-1:-1:-1;9435:93:0;;9518:2;2810:36:1;;2798:2;2783:18;9435:93:0;2668:184:1;24909:31:0;;;;;;;;;;;;;;;;24532:77;;;;;;;;;;-1:-1:-1;24532:77:0;;;;-1:-1:-1;;;;;24532:77:0;;;28642:85;;;;;;;;;;-1:-1:-1;28642:85:0;;;;;:::i;:::-;;:::i;24738:21::-;;;;;;;;;;;;;;;;24297:45;;;;;;;;;;;;;;;24449:33;;;;;;;;;;-1:-1:-1;24449:33:0;;;;-1:-1:-1;;;24449:33:0;;;;;;24489:34;;;;;;;;;;-1:-1:-1;24489:34:0;;;;-1:-1:-1;;;24489:34:0;;;;;;24851:49;;;;;;;;;;-1:-1:-1;24851:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;9764:127;;;;;;;;;;-1:-1:-1;9764:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9865:18:0;9838:7;9865:18;;;;;;;;;;;;9764:127;2385:103;;;;;;;;;;;;;:::i;27777:84::-;;;;;;;;;;;;;:::i;25062:38::-;;;;;;;;;;-1:-1:-1;25062:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;24797:47;;;;;;;;;;-1:-1:-1;24797:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27047:460;;;:::i;27641:84::-;;;;;;;;;;;;;:::i;1734:87::-;;;;;;;;;;-1:-1:-1;1807:6:0;;-1:-1:-1;;;;;1807:6:0;1734:87;;8692:104;;;;;;;;;;;;;:::i;10104:175::-;;;;;;;;;;-1:-1:-1;10104:175:0;;;;;:::i;:::-;;:::i;28321:145::-;;;;;;;;;;-1:-1:-1;28321:145:0;;;;;:::i;:::-;;:::i;24618:31::-;;;;;;;;;;;;;;;;27908:120;;;;;;;;;;-1:-1:-1;27908:120:0;;;;;:::i;:::-;;:::i;24656:35::-;;;;;;;;;;;;;;;;28495:139;;;;;;;;;;-1:-1:-1;28495:139:0;;;;;:::i;:::-;;:::i;29015:183::-;;;;;;;;;;-1:-1:-1;29015:183:0;;;;;:::i;:::-;;:::i;32102:680::-;;;;;;;;;;-1:-1:-1;32102:680:0;;;;;:::i;:::-;;:::i;10342:151::-;;;;;;;;;;-1:-1:-1;10342:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10458:18:0;;;10431:7;10458:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10342:151;28830:177;;;;;;;;;;-1:-1:-1;28830:177:0;;;;;:::i;:::-;;:::i;24698:31::-;;;;;;;;;;;;;;;;2643:201;;;;;;;;;;-1:-1:-1;2643:201:0;;;;;:::i;:::-;;:::i;8473:100::-;8527:13;8560:5;8553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8473:100;:::o;10640:169::-;10723:4;10740:39;681:10;10763:7;10772:6;10740:8;:39::i;:::-;-1:-1:-1;10797:4:0;10640:169;;;;;:::o;28103:137::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;;;;;;;;;28229:3:::1;28218:7;28202:13;9681:12:::0;;;9593:108;28202:13:::1;:23;;;;:::i;:::-;28201:31;;;;:::i;:::-;28182:16;:50:::0;-1:-1:-1;28103:137:0:o;28735:87::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;28801:7:::1;:13:::0;28735:87::o;11291:492::-;11431:4;11448:36;11458:6;11466:9;11477:6;11448:9;:36::i;:::-;-1:-1:-1;;;;;11524:19:0;;11497:24;11524:19;;;:11;:19;;;;;;;;681:10;11524:33;;;;;;;;11576:26;;;;11568:79;;;;-1:-1:-1;;;11568:79:0;;6463:2:1;11568:79:0;;;6445:21:1;6502:2;6482:18;;;6475:30;6541:34;6521:18;;;6514:62;-1:-1:-1;;;6592:18:1;;;6585:38;6640:19;;11568:79:0;6261:404:1;11568:79:0;11683:57;11692:6;681:10;11733:6;11714:16;:25;11683:8;:57::i;:::-;-1:-1:-1;11771:4:0;;11291:492;-1:-1:-1;;;;11291:492:0:o;28642:85::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;28707:6:::1;:12:::0;28642:85::o;2385:103::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;2450:30:::1;2477:1;2450:18;:30::i;:::-;2385:103::o:0;27777:84::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;27831:14:::1;:22:::0;;-1:-1:-1;;;;27831:22:0::1;::::0;;27777:84::o;27047:460::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;27128:4:::1;27115:9;:17;;27107:71;;;::::0;-1:-1:-1;;;27107:71:0;;6872:2:1;27107:71:0::1;::::0;::::1;6854:21:1::0;6911:2;6891:18;;;6884:30;6950:34;6930:18;;;6923:62;-1:-1:-1;;;7001:18:1;;;6994:39;7050:19;;27107:71:0::1;6670:405:1::0;27107:71:0::1;27198:70;27221:4;27236:15;27254:13;9681:12:::0;;;9593:108;27254:13:::1;27198:14;:70::i;:::-;27279:10;:17:::0;;-1:-1:-1;;;;27279:17:0::1;-1:-1:-1::0;;;27279:17:0::1;::::0;;-1:-1:-1;;;;;27307:15:0::1;:31;;27346:9;27365:4;27372:13;9681:12:::0;;;9593:108;27372:13:::1;27307:115;::::0;-1:-1:-1;;;;;;27307:115:0::1;::::0;;;;;;-1:-1:-1;;;;;7439:15:1;;;27307:115:0::1;::::0;::::1;7421:34:1::0;7471:18;;;7464:34;27387:1:0::1;7514:18:1::0;;;7507:34;;;7557:18;;;7550:34;24397:6:0::1;7600:19:1::0;;;7593:44;27406:15:0::1;7653:19:1::0;;;7646:35;7355:19;;27307:115:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;27433:10:0::1;:18:::0;;-1:-1:-1;;;;27433:18:0::1;::::0;;-1:-1:-1;27481:17:0::1;::::0;27462:37:::1;::::0;-1:-1:-1;;;;;27481:17:0::1;27462:18;:37::i;27641:84::-:0;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;27696:14:::1;:21:::0;;-1:-1:-1;;;;27696:21:0::1;-1:-1:-1::0;;;27696:21:0::1;::::0;;27641:84::o;8692:104::-;8748:13;8781:7;8774:14;;;;;:::i;10104:175::-;10190:4;10207:42;681:10;10231:9;10242:6;10207:9;:42::i;28321:145::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;28455:3:::1;28444:7;28428:13;9681:12:::0;;;9593:108;28428:13:::1;:23;;;;:::i;:::-;28427:31;;;;:::i;:::-;28404:20;:54:::0;-1:-1:-1;28321:145:0:o;27908:120::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;27993:17:::1;:27:::0;;-1:-1:-1;;;;;;27993:27:0::1;-1:-1:-1::0;;;;;27993:27:0;;;::::1;::::0;;;::::1;::::0;;27908:120::o;28495:139::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;28621:5:::1;28610:7;28594:13;9681:12:::0;;;9593:108;28594:13:::1;:23;;;;:::i;:::-;28593:33;;;;:::i;:::-;28574:16;:52:::0;-1:-1:-1;28495:139:0:o;29015:183::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29101:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;29101:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29154:36;;1163:41:1;;;29154:36:0::1;::::0;1136:18:1;29154:36:0::1;;;;;;;;29015:183:::0;;:::o;32102:680::-;32248:15;32236:8;:27;;32228:58;;;;-1:-1:-1;;;32228:58:0;;8205:2:1;32228:58:0;;;8187:21:1;8244:2;8224:18;;;8217:30;-1:-1:-1;;;8263:18:1;;;8256:48;8321:18;;32228:58:0;8003:342:1;32228:58:0;32402:16;;-1:-1:-1;;;;;32498:13:0;;32297:14;32498:13;;;:6;:13;;;;;:15;;32297:14;;32402:16;24989:66;;32475:5;;32482:7;;32491:5;;32498:15;32297:14;32498:15;;;:::i;:::-;;;;-1:-1:-1;32447:77:0;;;;;;8777:25:1;;;;-1:-1:-1;;;;;8876:15:1;;;8856:18;;;8849:43;8928:15;;;;8908:18;;;8901:43;8960:18;;;8953:34;9003:19;;;8996:35;9047:19;;;9040:35;;;8749:19;;32447:77:0;;;;;;;;;;;;32437:88;;;;;;32338:202;;;;;;;;-1:-1:-1;;;9344:27:1;;9396:1;9387:11;;9380:27;;;;9432:2;9423:12;;9416:28;9469:2;9460:12;;9086:392;32338:202:0;;;;-1:-1:-1;;32338:202:0;;;;;;;;;32314:237;;32338:202;32314:237;;;;32562:24;32589:26;;;;;;;;;9710:25:1;;;9783:4;9771:17;;9751:18;;;9744:45;;;;9805:18;;;9798:34;;;9848:18;;;9841:34;;;32314:237:0;;-1:-1:-1;32562:24:0;32589:26;;9682:19:1;;32589:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32589:26:0;;-1:-1:-1;;32589:26:0;;;-1:-1:-1;;;;;;;32634:30:0;;;;;;:59;;;32688:5;-1:-1:-1;;;;;32668:25:0;:16;-1:-1:-1;;;;;32668:25:0;;32634:59;32626:100;;;;-1:-1:-1;;;32626:100:0;;10088:2:1;32626:100:0;;;10070:21:1;10127:2;10107:18;;;10100:30;10166;10146:18;;;10139:58;10214:18;;32626:100:0;9886:352:1;32626:100:0;32737:37;32752:5;32759:7;32768:5;32737:14;:37::i;:::-;32217:565;;32102:680;;;;;;;:::o;28830:177::-;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28914:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;;;;:35;;-1:-1:-1;;28914:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28965:34;;1163:41:1;;;28965:34:0::1;::::0;1136:18:1;28965:34:0::1;1023:187:1::0;2643:201:0;1807:6;;-1:-1:-1;;;;;1807:6:0;681:10;1954:23;1946:68;;;;-1:-1:-1;;;1946:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2732:22:0;::::1;2724:73;;;::::0;-1:-1:-1;;;2724:73:0;;10445:2:1;2724:73:0::1;::::0;::::1;10427:21:1::0;10484:2;10464:18;;;10457:30;10523:34;10503:18;;;10496:62;-1:-1:-1;;;10574:18:1;;;10567:36;10620:19;;2724:73:0::1;10243:402:1::0;2724:73:0::1;2808:28;2827:8;2808:18;:28::i;:::-;2643:201:::0;:::o;14132:380::-;-1:-1:-1;;;;;14268:19:0;;14260:68;;;;-1:-1:-1;;;14260:68:0;;10852:2:1;14260:68:0;;;10834:21:1;10891:2;10871:18;;;10864:30;10930:34;10910:18;;;10903:62;-1:-1:-1;;;10981:18:1;;;10974:34;11025:19;;14260:68:0;10650:400:1;14260:68:0;-1:-1:-1;;;;;14347:21:0;;14339:68;;;;-1:-1:-1;;;14339:68:0;;11257:2:1;14339:68:0;;;11239:21:1;11296:2;11276:18;;;11269:30;11335:34;11315:18;;;11308:62;-1:-1:-1;;;11386:18:1;;;11379:32;11428:19;;14339:68:0;11055:398:1;14339:68:0;-1:-1:-1;;;;;14420:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14472:32;;1596:25:1;;;14472:32:0;;1569:18:1;14472:32:0;;;;;;;14132:380;;;:::o;29206:2151::-;29334:10;;-1:-1:-1;;;29334:10:0;;;;;:25;;-1:-1:-1;29348:11:0;;29334:25;29330:112;;;29376:33;29392:4;29398:2;29402:6;29376:15;:33::i;:::-;29206:2151;;;:::o;29330:112::-;-1:-1:-1;;;;;29475:21:0;;29454:18;29475:21;;;:15;:21;;;;;;;;;:44;;-1:-1:-1;;;;;;29500:19:0;;;;;;:15;:19;;;;;;;;29475:44;29534:14;;29454:65;;-1:-1:-1;;;;29534:14:0;;;;29530:599;;;29570:14;;-1:-1:-1;;;29570:14:0;;;;29565:103;;29613:13;29605:47;;;;-1:-1:-1;;;29605:47:0;;11660:2:1;29605:47:0;;;11642:21:1;11699:2;11679:18;;;11672:30;-1:-1:-1;;;11718:18:1;;;11711:51;11779:18;;29605:47:0;11458:345:1;29605:47:0;29689:13;29688:14;:46;;;;;29720:13;-1:-1:-1;;;;;29706:28:0;:2;-1:-1:-1;;;;;29706:28:0;;;29688:46;29684:169;;;29789:16;;29779:6;29763:13;29773:2;-1:-1:-1;;;;;9865:18:0;9838:7;9865:18;;;;;;;;;;;;9764:127;29763:13;:22;;;;:::i;:::-;:42;;29755:82;;;;-1:-1:-1;;;29755:82:0;;12140:2:1;29755:82:0;;;12122:21:1;12179:2;12159:18;;;12152:30;12218:29;12198:18;;;12191:57;12265:18;;29755:82:0;11938:351:1;29755:82:0;-1:-1:-1;;;;;29892:23:0;;29869:20;29892:23;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;29919:21:0;;;;;;:17;:21;;;;;;;;29892:48;29869:71;;29960:15;29959:16;:48;;;;;29993:13;-1:-1:-1;;;;;29979:28:0;:2;-1:-1:-1;;;;;29979:28:0;;;29959:48;29955:163;;;30046:20;;30036:6;:30;;30028:74;;;;-1:-1:-1;;;30028:74:0;;12496:2:1;30028:74:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:33;12554:18;;;12547:61;12625:18;;30028:74:0;12294:355:1;30028:74:0;29550:579;29530:599;30231:12;30246:13;:28;;30270:4;30246:28;;;30262:5;30246:28;30231:43;;30365:7;30361:943;;;30389:11;30461:13;-1:-1:-1;;;;;30447:28:0;:2;-1:-1:-1;;;;;30447:28:0;;:43;;;;;30489:1;30479:7;;:11;30447:43;30443:278;;;30517:28;30541:3;30517:19;30528:7;;30517:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;30511:34;;30443:278;;;30623:13;-1:-1:-1;;;;;30607:30:0;:4;-1:-1:-1;;;;;30607:30:0;;:44;;;;;30650:1;30641:6;;:10;30607:44;30603:118;;;30678:27;30701:3;30678:18;30689:6;;30678;:10;;:18;;;;:::i;:27::-;30672:33;;30603:118;30741:7;;30737:89;;30769:41;30785:4;30799;30806:3;30769:15;:41::i;:::-;30874:16;;30864:4;9838:7;9865:18;;;;;;;;;;;30846:44;;:76;;;;;30908:13;-1:-1:-1;;;;;30894:28:0;:2;-1:-1:-1;;;;;30894:28:0;;30846:76;30842:421;;;30943:19;30965:49;30982:16;;31008:4;30965:16;:49::i;:::-;31054:17;;:46;;30943:71;;-1:-1:-1;31036:12:0;;-1:-1:-1;;;;;31054:17:0;;;;30943:71;;31036:12;31054:46;31036:12;31054:46;30943:71;31054:17;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31035:65;;;31128:7;31119:59;;;;-1:-1:-1;;;31119:59:0;;13066:2:1;31119:59:0;;;13048:21:1;13105:2;13085:18;;;13078:30;13144:34;13124:18;;;13117:62;-1:-1:-1;;;13195:18:1;;;13188:36;13241:19;;31119:59:0;12864:402:1;31119:59:0;31220:27;;1596:25:1;;;31220:27:0;;1584:2:1;1569:18;31220:27:0;;;;;;;30924:339;;30842:421;31279:13;31289:3;31279:13;;:::i;:::-;;;30374:930;30361:943;31316:33;31332:4;31338:2;31342:6;31316:15;:33::i;:::-;29319:2038;;29206:2151;;;:::o;3004:191::-;3097:6;;;-1:-1:-1;;;;;3114:17:0;;;-1:-1:-1;;;;;;3114:17:0;;;;;;;3147:40;;3097:6;;;3114:17;3097:6;;3147:40;;3078:16;;3147:40;3067:128;3004:191;:::o;12273:733::-;-1:-1:-1;;;;;12413:20:0;;12405:70;;;;-1:-1:-1;;;12405:70:0;;13606:2:1;12405:70:0;;;13588:21:1;13645:2;13625:18;;;13618:30;13684:34;13664:18;;;13657:62;-1:-1:-1;;;13735:18:1;;;13728:35;13780:19;;12405:70:0;13404:401:1;12405:70:0;-1:-1:-1;;;;;12494:23:0;;12486:71;;;;-1:-1:-1;;;12486:71:0;;14012:2:1;12486:71:0;;;13994:21:1;14051:2;14031:18;;;14024:30;14090:34;14070:18;;;14063:62;-1:-1:-1;;;14141:18:1;;;14134:33;14184:19;;12486:71:0;13810:399:1;12486:71:0;-1:-1:-1;;;;;12654:17:0;;12630:21;12654:17;;;;;;;;;;;12690:23;;;;12682:74;;;;-1:-1:-1;;;12682:74:0;;14416:2:1;12682:74:0;;;14398:21:1;14455:2;14435:18;;;14428:30;14494:34;14474:18;;;14467:62;-1:-1:-1;;;14545:18:1;;;14538:36;14591:19;;12682:74:0;14214:402:1;12682:74:0;-1:-1:-1;;;;;12792:17:0;;;:9;:17;;;;;;;;;;;12812:22;;;12792:42;;12856:20;;;;;;;;:30;;12828:6;;12792:9;12856:30;;12828:6;;12856:30;:::i;:::-;;;;;;;;12921:9;-1:-1:-1;;;;;12904:35:0;12913:6;-1:-1:-1;;;;;12904:35:0;;12932:6;12904:35;;;;1596:25:1;;1584:2;1569:18;;1450:177;12904:35:0;;;;;;;;12394:612;12273:733;;;:::o;19264:98::-;19322:7;19349:5;19353:1;19349;:5;:::i;:::-;19342:12;19264:98;-1:-1:-1;;;19264:98:0:o;19663:::-;19721:7;19748:5;19752:1;19748;:5;:::i;31365:729::-;31481:16;;;31495:1;31481:16;;;;;;;;31437:7;;;;31481:16;31495:1;31481:16;;;;;;;;;;-1:-1:-1;31481:16:0;31457:40;;31526:4;31508;31513:1;31508:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31508:23:0;;;-1:-1:-1;;;;;31508:23:0;;;;;31552:15;-1:-1:-1;;;;;31552:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31542:4;31547:1;31542:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31542:32:0;;;-1:-1:-1;;;;;31542:32:0;;;;;31587:63;31610:4;31625:15;31643:6;31587:14;:63::i;:::-;31671:10;:17;;-1:-1:-1;;;;31671:17:0;-1:-1:-1;;;31671:17:0;;;31744:180;;-1:-1:-1;;;31744:180:0;;-1:-1:-1;;;;;31723:10:0;;;;;31744:15;:66;;;;;;:180;;31825:6;;31671:17;;31862:4;;31723:2;;31898:15;;31744:180;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;31958:10:0;;;31935:20;31998:31;31958:10;32015:13;31998:16;:31::i;:::-;32040:10;:18;;-1:-1:-1;;;;32040:18:0;;;31979:50;31365:729;-1:-1:-1;;;;;;;31365:729:0:o;18907:98::-;18965:7;18992:5;18996:1;18992;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:180::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;-1:-1:-1;1783:23:1;;1632:180;-1:-1:-1;1632:180:1:o;1817:456::-;1894:6;1902;1910;1963:2;1951:9;1942:7;1938:23;1934:32;1931:52;;;1979:1;1976;1969:12;1931:52;2018:9;2005:23;2037:31;2062:5;2037:31;:::i;:::-;2087:5;-1:-1:-1;2144:2:1;2129:18;;2116:32;2157:33;2116:32;2157:33;:::i;:::-;1817:456;;2209:7;;-1:-1:-1;;;2263:2:1;2248:18;;;;2235:32;;1817:456::o;3088:247::-;3147:6;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3255:9;3242:23;3274:31;3299:5;3274:31;:::i;3340:416::-;3405:6;3413;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3521:9;3508:23;3540:31;3565:5;3540:31;:::i;:::-;3590:5;-1:-1:-1;3647:2:1;3632:18;;3619:32;3689:15;;3682:23;3670:36;;3660:64;;3720:1;3717;3710:12;3660:64;3743:7;3733:17;;;3340:416;;;;;:::o;3761:829::-;3872:6;3880;3888;3896;3904;3912;3920;3973:3;3961:9;3952:7;3948:23;3944:33;3941:53;;;3990:1;3987;3980:12;3941:53;4029:9;4016:23;4048:31;4073:5;4048:31;:::i;:::-;4098:5;-1:-1:-1;4155:2:1;4140:18;;4127:32;4168:33;4127:32;4168:33;:::i;:::-;4220:7;-1:-1:-1;4274:2:1;4259:18;;4246:32;;-1:-1:-1;4325:2:1;4310:18;;4297:32;;-1:-1:-1;4381:3:1;4366:19;;4353:33;4430:4;4417:18;;4405:31;;4395:59;;4450:1;4447;4440:12;4395:59;3761:829;;;;-1:-1:-1;3761:829:1;;;;4473:7;4527:3;4512:19;;4499:33;;-1:-1:-1;4579:3:1;4564:19;;;4551:33;;3761:829;-1:-1:-1;;3761:829:1:o;4595:388::-;4663:6;4671;4724:2;4712:9;4703:7;4699:23;4695:32;4692:52;;;4740:1;4737;4730:12;4692:52;4779:9;4766:23;4798:31;4823:5;4798:31;:::i;:::-;4848:5;-1:-1:-1;4905:2:1;4890:18;;4877:32;4918:33;4877:32;4918:33;:::i;4988:380::-;5067:1;5063:12;;;;5110;;;5131:61;;5185:4;5177:6;5173:17;5163:27;;5131:61;5238:2;5230:6;5227:14;5207:18;5204:38;5201:161;;5284:10;5279:3;5275:20;5272:1;5265:31;5319:4;5316:1;5309:15;5347:4;5344:1;5337:15;5201:161;;4988:380;;;:::o;5373:356::-;5575:2;5557:21;;;5594:18;;;5587:30;5653:34;5648:2;5633:18;;5626:62;5720:2;5705:18;;5373:356::o;5734:127::-;5795:10;5790:3;5786:20;5783:1;5776:31;5826:4;5823:1;5816:15;5850:4;5847:1;5840:15;5866:168;5939:9;;;5970;;5987:15;;;5981:22;;5967:37;5957:71;;6008:18;;:::i;6039:217::-;6079:1;6105;6095:132;;6149:10;6144:3;6140:20;6137:1;6130:31;6184:4;6181:1;6174:15;6212:4;6209:1;6202:15;6095:132;-1:-1:-1;6241:9:1;;6039:217::o;7692:306::-;7780:6;7788;7796;7849:2;7837:9;7828:7;7824:23;7820:32;7817:52;;;7865:1;7862;7855:12;7817:52;7894:9;7888:16;7878:26;;7944:2;7933:9;7929:18;7923:25;7913:35;;7988:2;7977:9;7973:18;7967:25;7957:35;;7692:306;;;;;:::o;8350:135::-;8389:3;8410:17;;;8407:43;;8430:18;;:::i;:::-;-1:-1:-1;8477:1:1;8466:13;;8350:135::o;11808:125::-;11873:9;;;11894:10;;;11891:36;;;11907:18;;:::i;13271:128::-;13338:9;;;13359:11;;;13356:37;;;13373:18;;:::i;14753:127::-;14814:10;14809:3;14805:20;14802:1;14795:31;14845:4;14842:1;14835:15;14869:4;14866:1;14859:15;14885:251;14955:6;15008:2;14996:9;14987:7;14983:23;14979:32;14976:52;;;15024:1;15021;15014:12;14976:52;15056:9;15050:16;15075:31;15100:5;15075:31;:::i;15141:980::-;15403:4;15451:3;15440:9;15436:19;15482:6;15471:9;15464:25;15508:2;15546:6;15541:2;15530:9;15526:18;15519:34;15589:3;15584:2;15573:9;15569:18;15562:31;15613:6;15648;15642:13;15679:6;15671;15664:22;15717:3;15706:9;15702:19;15695:26;;15756:2;15748:6;15744:15;15730:29;;15777:1;15787:195;15801:6;15798:1;15795:13;15787:195;;;15866:13;;-1:-1:-1;;;;;15862:39:1;15850:52;;15957:15;;;;15922:12;;;;15898:1;15816:9;15787:195;;;-1:-1:-1;;;;;;;16038:32:1;;;;16033:2;16018:18;;16011:60;-1:-1:-1;;;16102:3:1;16087:19;16080:35;15999:3;15141:980;-1:-1:-1;;;15141:980:1:o

Swarm Source

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