ETH Price: $2,605.51 (-2.22%)

Token

Shibtalik Finance (ShibFi)
 

Overview

Max Total Supply

10,000,000 ShibFi

Holders

88

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,000 ShibFi

Value
$0.00
0x69E4Eef39aC06644Eb066EC6c16469E559D50e04
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:
ShibtalikFinance

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

// SPDX-License-Identifier: MIT

pragma solidity = 0.8.19;
pragma experimental ABIEncoderV2;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
	
	    /**
     * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`, 
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

contract ShibtalikFinance is ERC20, Ownable {
    using SafeMath for uint256;
    
    IUniswapV2Router02 public immutable _uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public deployerWallet;
    address public marketingWallet;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    uint256 public initialTotalSupply = 10000000 * 1e18;
    uint256 public maxTransactionAmount = 200000 * 1e18;
    uint256 public maxWallet = 200000 * 1e18;
    uint256 public swapTokensAtAmount = 100000 * 1e18;

    bool public tradingOpen = false;
    bool public swapEnabled = false;

    uint256 private BuyFee = 30;
    uint256 private SellFee = 35;
    uint256 public firstBlock;
    uint256 private PreventSwapBefore = 2; 

    uint256 public tokensForMarketing;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20("Shibtalik Finance", "ShibFi") {

        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        deployerWallet = payable(_msgSender());
        marketingWallet = payable(0xF97E47E21996AEda174695Fc71Bbb47492C10859); //Marketing wallet
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);

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

        _mint(msg.sender, initialTotalSupply);
    }

    receive() external payable {}

    function AddLiquidity() external onlyOwner() {
        require(!tradingOpen,"Trading is already open");
        _approve(address(this), address(_uniswapV2Router), initialTotalSupply);
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)).per(75),0,0,owner(),block.timestamp);
        IERC20(address(this)).transfer(deployerWallet, swapTokensAtAmount.mul(10));
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"Trading is already open");
        firstBlock = block.number;
        swapEnabled = true;
        tradingOpen = true;
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount && firstBlock+PreventSwapBefore < block.number;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            uint256 currentFee;
            if (automatedMarketMakerPairs[to]) {
                currentFee = SellFee;
            } else {
                currentFee = BuyFee;
            }

        fees = amount.mul(currentFee).div(100);
        tokensForMarketing += fees;

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

        amount -= fees;
    }

        super._transfer(from, to, amount);

    }

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner{
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
        swapTokensAtAmount = 10000 * 1e18;
    }

    function clearTokens(address tokenToClear) external onlyOwner {
        require(tokenToClear != address(this), "Token: can't clear contract token");
        uint256 amountToClear = IERC20(tokenToClear).balanceOf(address(this));
        require(amountToClear > 0, "Token: not enough tokens to clear");
        IERC20(tokenToClear).transfer(msg.sender, amountToClear);
    }

    function clearEth() external onlyOwner {
        require(address(this).balance > 0, "Token: no eth to clear");
        payable(msg.sender).transfer(address(this).balance);
    }

    function setFees(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        BuyFee = _buyFee;
        SellFee = _sellFee;
    }

    function setSwapTokensAtAmount(uint256 _amount) external onlyOwner {
        swapTokensAtAmount = _amount * (10 ** 18);
    }

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

    if (contractBalance == 0 || totalTokensToSwap == 0) {
        return;
    }
    else
    {
        tokensToSwap = contractBalance >= swapTokensAtAmount ? swapTokensAtAmount : contractBalance;
    }

    uint256 initialETHBalance = address(this).balance;

    swapTokensForEth(tokensToSwap);

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

    uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
        totalTokensToSwap
    );

    tokensForMarketing = 0;

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AddLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenToClear","type":"address"}],"name":"clearTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526a084595161401484a000000600855692a5a058fc295ed0000006009819055600a5569152d02c7e14af6800000600b55600c805461ffff19169055601e600d556023600e5560026010553480156200005b57600080fd5b50604051806040016040528060118152602001705368696274616c696b2046696e616e636560781b8152506040518060400160405280600681526020016553686962466960d01b8152508160039081620000b691906200068b565b506004620000c582826200068b565b505050620000e2620000dc6200037560201b60201c565b62000379565b737a250d5630b4cf539739df2c5dacb4c659f2488d608081905262000109906001620003cb565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200014a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000170919062000757565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e6919062000757565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a919062000757565b6001600160a01b031660a081905262000275906001620003cb565b60a0516200028590600162000400565b60068054336001600160a01b0319918216179091556007805490911673f97e47e21996aeda174695fc71bbb47492c10859179055600554620002d2906001600160a01b0316600162000454565b620002df30600162000454565b620002ee61dead600162000454565b60075462000307906001600160a01b0316600162000454565b620003266200031e6005546001600160a01b031690565b6001620003cb565b62000333306001620003cb565b6200034261dead6001620003cb565b6007546200035b906001600160a01b03166001620003cb565b6200036f33600854620004bd60201b60201c565b620007b1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003d562000584565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200045e62000584565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005195760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200052d919062000789565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000510565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061257607f821691505b6020821081036200063357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005e257600081815260208120601f850160051c81016020861015620006625750805b601f850160051c820191505b8181101562000683578281556001016200066e565b505050505050565b81516001600160401b03811115620006a757620006a7620005e7565b620006bf81620006b88454620005fd565b8462000639565b602080601f831160018114620006f75760008415620006de5750858301515b600019600386901b1c1916600185901b17855562000683565b600085815260208120601f198616915b82811015620007285788860151825594840194600190910190840162000707565b5085821015620007475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076a57600080fd5b81516001600160a01b03811681146200078257600080fd5b9392505050565b80820180821115620007ab57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516121046200080f600039600081816103d901528181610a0b0152610bca0152600081816104460152818161080a01528181610833015281816109db01528181611b7d01528181611c360152611c7201526121046000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063afa4f3b2116100ab578063e2f456051161006f578063e2f4560514610665578063e303e6621461067b578063f2fde38b1461069b578063f8b45b05146106bb578063ffb54a99146106d157600080fd5b8063afa4f3b2146105da578063c0246668146105fa578063c8c8ebe41461061a578063c9567bf914610630578063dd62ed3e1461064557600080fd5b80638da5cb5b116100f25780638da5cb5b1461054757806395d89b41146105655780639a7a23d61461057a578063a457c2d71461059a578063a9059cbb146105ba57600080fd5b8063715018a6146104dd578063751039fc146104f25780637571336a1461050757806375f0a8741461052757600080fd5b806327c8f835116101b15780634fbee193116101755780634fbee193146103fb578063583e0568146104345780635d60c7be146104685780636ddd17131461048857806370a08231146104a757600080fd5b806327c8f83514610347578063311028af14610375578063313ce5671461038b57806339509351146103a757806349bd5a5e146103c757600080fd5b806318160ddd116101f857806318160ddd146102c75780631b9152bf146102e65780631f3fed8f146102fb578063231b02681461031157806323b872dd1461032757600080fd5b806306fdde0314610235578063095ea7b3146102605780630b78f9c0146102905780630bc488c5146102b257600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106eb565b6040516102579190611cf2565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611d55565b61077d565b6040519015158152602001610257565b34801561029c57600080fd5b506102b06102ab366004611d81565b610797565b005b3480156102be57600080fd5b506102b06107aa565b3480156102d357600080fd5b506002545b604051908152602001610257565b3480156102f257600080fd5b506102b0610a7b565b34801561030757600080fd5b506102d860115481565b34801561031d57600080fd5b506102d8600f5481565b34801561033357600080fd5b50610280610342366004611da3565b610af8565b34801561035357600080fd5b5061035d61dead81565b6040516001600160a01b039091168152602001610257565b34801561038157600080fd5b506102d860085481565b34801561039757600080fd5b5060405160128152602001610257565b3480156103b357600080fd5b506102806103c2366004611d55565b610b1c565b3480156103d357600080fd5b5061035d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561040757600080fd5b50610280610416366004611de4565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561044057600080fd5b5061035d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047457600080fd5b5060065461035d906001600160a01b031681565b34801561049457600080fd5b50600c5461028090610100900460ff1681565b3480156104b357600080fd5b506102d86104c2366004611de4565b6001600160a01b031660009081526020819052604090205490565b3480156104e957600080fd5b506102b0610b3e565b3480156104fe57600080fd5b506102b0610b52565b34801561051357600080fd5b506102b0610522366004611e0f565b610b7e565b34801561053357600080fd5b5060075461035d906001600160a01b031681565b34801561055357600080fd5b506005546001600160a01b031661035d565b34801561057157600080fd5b5061024a610bb1565b34801561058657600080fd5b506102b0610595366004611e0f565b610bc0565b3480156105a657600080fd5b506102806105b5366004611d55565b610c7d565b3480156105c657600080fd5b506102806105d5366004611d55565b610cf8565b3480156105e657600080fd5b506102b06105f5366004611e48565b610d06565b34801561060657600080fd5b506102b0610615366004611e0f565b610d26565b34801561062657600080fd5b506102d860095481565b34801561063c57600080fd5b506102b0610d8d565b34801561065157600080fd5b506102d8610660366004611e61565b610df7565b34801561067157600080fd5b506102d8600b5481565b34801561068757600080fd5b506102b0610696366004611de4565b610e22565b3480156106a757600080fd5b506102b06106b6366004611de4565b610fc9565b3480156106c757600080fd5b506102d8600a5481565b3480156106dd57600080fd5b50600c546102809060ff1681565b6060600380546106fa90611e8f565b80601f016020809104026020016040519081016040528092919081815260200182805461072690611e8f565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b60003361078b81858561103f565b60019150505b92915050565b61079f611163565b600d91909155600e55565b6107b2611163565b600c5460ff16156108045760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b60448201526064015b60405180910390fd5b610831307f000000000000000000000000000000000000000000000000000000000000000060085461103f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719473061088c604b610886306001600160a01b031660009081526020819052604090205490565b906111bd565b6000806108a16005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610909573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061092e9190611ec9565b5050600654600b5430925063a9059cbb916001600160a01b03169061095490600a611239565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190611ef7565b5060405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015610a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a789190611ef7565b50565b610a83611163565b60004711610acc5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379032ba34103a379031b632b0b960511b60448201526064016107fb565b60405133904780156108fc02916000818181858888f19350505050158015610a78573d6000803e3d6000fd5b600033610b06858285611245565b610b118585856112bf565b506001949350505050565b60003361078b818585610b2f8383610df7565b610b399190611f2a565b61103f565b610b46611163565b610b506000611871565b565b610b5a611163565b6000610b6560025490565b6009819055600a555069021e19e0c9bab2400000600b55565b610b86611163565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6060600480546106fa90611e8f565b610bc8611163565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c6f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107fb565b610c7982826118c3565b5050565b60003381610c8b8286610df7565b905083811015610ceb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107fb565b610b11828686840361103f565b60003361078b8185856112bf565b610d0e611163565b610d2081670de0b6b3a7640000611f3d565b600b5550565b610d2e611163565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d95611163565b600c5460ff1615610de25760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b60448201526064016107fb565b43600f55600c805461ffff1916610101179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2a611163565b306001600160a01b03821603610e8c5760405162461bcd60e51b815260206004820152602160248201527f546f6b656e3a2063616e277420636c65617220636f6e747261637420746f6b656044820152603760f91b60648201526084016107fb565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ed3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef79190611f54565b905060008111610f535760405162461bcd60e51b815260206004820152602160248201527f546f6b656e3a206e6f7420656e6f75676820746f6b656e7320746f20636c65616044820152603960f91b60648201526084016107fb565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610fa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc49190611ef7565b505050565b610fd1611163565b6001600160a01b0381166110365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b610a7881611871565b6001600160a01b0383166110a15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107fb565b6001600160a01b0382166111025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fb565b6000606482111561121c5760405162461bcd60e51b8152602060048201526024808201527f50657263656e74616765206d757374206265206265747765656e203020616e646044820152630203130360e41b60648201526084016107fb565b60646112288385611f3d565b6112329190611f6d565b9392505050565b60006112328284611f3d565b60006112518484610df7565b905060001981146112b957818110156112ac5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107fb565b6112b9848484840361103f565b50505050565b6001600160a01b0383166112e55760405162461bcd60e51b81526004016107fb90611f8f565b6001600160a01b03821661130b5760405162461bcd60e51b81526004016107fb90611fd4565b8060000361131f57610fc483836000611917565b6005546001600160a01b0384811691161480159061134b57506005546001600160a01b03838116911614155b801561135f57506001600160a01b03821615155b801561137657506001600160a01b03821661dead14155b801561138c5750600754600160a01b900460ff16155b1561168557600c5460ff1661141f576001600160a01b03831660009081526012602052604090205460ff16806113da57506001600160a01b03821660009081526012602052604090205460ff165b61141f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107fb565b6001600160a01b03831660009081526014602052604090205460ff16801561146057506001600160a01b03821660009081526013602052604090205460ff16155b15611544576009548111156114d55760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107fb565b600a546001600160a01b0383166000908152602081905260409020546114fb9083611f2a565b111561153f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fb565b611685565b6001600160a01b03821660009081526014602052604090205460ff16801561158557506001600160a01b03831660009081526013602052604090205460ff16155b156115fb5760095481111561153f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107fb565b6001600160a01b03821660009081526013602052604090205460ff1661168557600a546001600160a01b0383166000908152602081905260409020546116419083611f2a565b11156116855760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fb565b3060009081526020819052604081205490506000600b5482101580156116b9575043601054600f546116b79190611f2a565b105b90508080156116cf5750600c54610100900460ff165b80156116e55750600754600160a01b900460ff16155b801561170a57506001600160a01b03851660009081526014602052604090205460ff16155b801561172f57506001600160a01b03851660009081526012602052604090205460ff16155b801561175457506001600160a01b03841660009081526012602052604090205460ff16155b15611782576007805460ff60a01b1916600160a01b179055611774611a41565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806117d057506001600160a01b03851660009081526012602052604090205460ff165b156117d9575060005b6000811561185d576001600160a01b03861660009081526014602052604081205460ff161561180b5750600e54611810565b50600d545b611825606461181f8884611239565b90611b1a565b915081601160008282546118399190611f2a565b9091555050811561184f5761184f883084611917565b6118598287612017565b9550505b611868878787611917565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661193d5760405162461bcd60e51b81526004016107fb90611f8f565b6001600160a01b0382166119635760405162461bcd60e51b81526004016107fb90611fd4565b6001600160a01b038316600090815260208190526040902054818110156119db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107fb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112b9565b30600090815260208190526040812054601154909180831580611a62575082155b15611a6d5750505050565b600b54841015611a7d5783611a81565b600b545b915047611a8d83611b26565b6000611a994783611ce6565b90506000611ab68661181f6011548561123990919063ffffffff16565b600060118190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b50505050505050505050565b60006112328284611f6d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5b57611b5b61202a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd9190612040565b81600181518110611c1057611c1061202a565b60200260200101906001600160a01b031690816001600160a01b031681525050611c5b307f00000000000000000000000000000000000000000000000000000000000000008461103f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cb090859060009086903090429060040161205d565b600060405180830381600087803b158015611cca57600080fd5b505af1158015611cde573d6000803e3d6000fd5b505050505050565b60006112328284612017565b600060208083528351808285015260005b81811015611d1f57858101830151858201604001528201611d03565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7857600080fd5b60008060408385031215611d6857600080fd5b8235611d7381611d40565b946020939093013593505050565b60008060408385031215611d9457600080fd5b50508035926020909101359150565b600080600060608486031215611db857600080fd5b8335611dc381611d40565b92506020840135611dd381611d40565b929592945050506040919091013590565b600060208284031215611df657600080fd5b813561123281611d40565b8015158114610a7857600080fd5b60008060408385031215611e2257600080fd5b8235611e2d81611d40565b91506020830135611e3d81611e01565b809150509250929050565b600060208284031215611e5a57600080fd5b5035919050565b60008060408385031215611e7457600080fd5b8235611e7f81611d40565b91506020830135611e3d81611d40565b600181811c90821680611ea357607f821691505b602082108103611ec357634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215611ede57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611f0957600080fd5b815161123281611e01565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079157610791611f14565b808202811582820484141761079157610791611f14565b600060208284031215611f6657600080fd5b5051919050565b600082611f8a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561079157610791611f14565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561205257600080fd5b815161123281611d40565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120ad5784516001600160a01b031683529383019391830191600101612088565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220be44d8226d926a7222bd3a54c268411f50b7e6226b54e0802ae2f04e830fd68464736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063afa4f3b2116100ab578063e2f456051161006f578063e2f4560514610665578063e303e6621461067b578063f2fde38b1461069b578063f8b45b05146106bb578063ffb54a99146106d157600080fd5b8063afa4f3b2146105da578063c0246668146105fa578063c8c8ebe41461061a578063c9567bf914610630578063dd62ed3e1461064557600080fd5b80638da5cb5b116100f25780638da5cb5b1461054757806395d89b41146105655780639a7a23d61461057a578063a457c2d71461059a578063a9059cbb146105ba57600080fd5b8063715018a6146104dd578063751039fc146104f25780637571336a1461050757806375f0a8741461052757600080fd5b806327c8f835116101b15780634fbee193116101755780634fbee193146103fb578063583e0568146104345780635d60c7be146104685780636ddd17131461048857806370a08231146104a757600080fd5b806327c8f83514610347578063311028af14610375578063313ce5671461038b57806339509351146103a757806349bd5a5e146103c757600080fd5b806318160ddd116101f857806318160ddd146102c75780631b9152bf146102e65780631f3fed8f146102fb578063231b02681461031157806323b872dd1461032757600080fd5b806306fdde0314610235578063095ea7b3146102605780630b78f9c0146102905780630bc488c5146102b257600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106eb565b6040516102579190611cf2565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611d55565b61077d565b6040519015158152602001610257565b34801561029c57600080fd5b506102b06102ab366004611d81565b610797565b005b3480156102be57600080fd5b506102b06107aa565b3480156102d357600080fd5b506002545b604051908152602001610257565b3480156102f257600080fd5b506102b0610a7b565b34801561030757600080fd5b506102d860115481565b34801561031d57600080fd5b506102d8600f5481565b34801561033357600080fd5b50610280610342366004611da3565b610af8565b34801561035357600080fd5b5061035d61dead81565b6040516001600160a01b039091168152602001610257565b34801561038157600080fd5b506102d860085481565b34801561039757600080fd5b5060405160128152602001610257565b3480156103b357600080fd5b506102806103c2366004611d55565b610b1c565b3480156103d357600080fd5b5061035d7f000000000000000000000000b55c8cf02f2b1dd81740d47a985709f1a80fcadf81565b34801561040757600080fd5b50610280610416366004611de4565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561044057600080fd5b5061035d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561047457600080fd5b5060065461035d906001600160a01b031681565b34801561049457600080fd5b50600c5461028090610100900460ff1681565b3480156104b357600080fd5b506102d86104c2366004611de4565b6001600160a01b031660009081526020819052604090205490565b3480156104e957600080fd5b506102b0610b3e565b3480156104fe57600080fd5b506102b0610b52565b34801561051357600080fd5b506102b0610522366004611e0f565b610b7e565b34801561053357600080fd5b5060075461035d906001600160a01b031681565b34801561055357600080fd5b506005546001600160a01b031661035d565b34801561057157600080fd5b5061024a610bb1565b34801561058657600080fd5b506102b0610595366004611e0f565b610bc0565b3480156105a657600080fd5b506102806105b5366004611d55565b610c7d565b3480156105c657600080fd5b506102806105d5366004611d55565b610cf8565b3480156105e657600080fd5b506102b06105f5366004611e48565b610d06565b34801561060657600080fd5b506102b0610615366004611e0f565b610d26565b34801561062657600080fd5b506102d860095481565b34801561063c57600080fd5b506102b0610d8d565b34801561065157600080fd5b506102d8610660366004611e61565b610df7565b34801561067157600080fd5b506102d8600b5481565b34801561068757600080fd5b506102b0610696366004611de4565b610e22565b3480156106a757600080fd5b506102b06106b6366004611de4565b610fc9565b3480156106c757600080fd5b506102d8600a5481565b3480156106dd57600080fd5b50600c546102809060ff1681565b6060600380546106fa90611e8f565b80601f016020809104026020016040519081016040528092919081815260200182805461072690611e8f565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b60003361078b81858561103f565b60019150505b92915050565b61079f611163565b600d91909155600e55565b6107b2611163565b600c5460ff16156108045760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b60448201526064015b60405180910390fd5b610831307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60085461103f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719473061088c604b610886306001600160a01b031660009081526020819052604090205490565b906111bd565b6000806108a16005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610909573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061092e9190611ec9565b5050600654600b5430925063a9059cbb916001600160a01b03169061095490600a611239565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190611ef7565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301527f000000000000000000000000b55c8cf02f2b1dd81740d47a985709f1a80fcadf169063095ea7b3906044016020604051808303816000875af1158015610a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a789190611ef7565b50565b610a83611163565b60004711610acc5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379032ba34103a379031b632b0b960511b60448201526064016107fb565b60405133904780156108fc02916000818181858888f19350505050158015610a78573d6000803e3d6000fd5b600033610b06858285611245565b610b118585856112bf565b506001949350505050565b60003361078b818585610b2f8383610df7565b610b399190611f2a565b61103f565b610b46611163565b610b506000611871565b565b610b5a611163565b6000610b6560025490565b6009819055600a555069021e19e0c9bab2400000600b55565b610b86611163565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6060600480546106fa90611e8f565b610bc8611163565b7f000000000000000000000000b55c8cf02f2b1dd81740d47a985709f1a80fcadf6001600160a01b0316826001600160a01b031603610c6f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107fb565b610c7982826118c3565b5050565b60003381610c8b8286610df7565b905083811015610ceb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107fb565b610b11828686840361103f565b60003361078b8185856112bf565b610d0e611163565b610d2081670de0b6b3a7640000611f3d565b600b5550565b610d2e611163565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d95611163565b600c5460ff1615610de25760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b60448201526064016107fb565b43600f55600c805461ffff1916610101179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2a611163565b306001600160a01b03821603610e8c5760405162461bcd60e51b815260206004820152602160248201527f546f6b656e3a2063616e277420636c65617220636f6e747261637420746f6b656044820152603760f91b60648201526084016107fb565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ed3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef79190611f54565b905060008111610f535760405162461bcd60e51b815260206004820152602160248201527f546f6b656e3a206e6f7420656e6f75676820746f6b656e7320746f20636c65616044820152603960f91b60648201526084016107fb565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610fa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc49190611ef7565b505050565b610fd1611163565b6001600160a01b0381166110365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b610a7881611871565b6001600160a01b0383166110a15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107fb565b6001600160a01b0382166111025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fb565b6000606482111561121c5760405162461bcd60e51b8152602060048201526024808201527f50657263656e74616765206d757374206265206265747765656e203020616e646044820152630203130360e41b60648201526084016107fb565b60646112288385611f3d565b6112329190611f6d565b9392505050565b60006112328284611f3d565b60006112518484610df7565b905060001981146112b957818110156112ac5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107fb565b6112b9848484840361103f565b50505050565b6001600160a01b0383166112e55760405162461bcd60e51b81526004016107fb90611f8f565b6001600160a01b03821661130b5760405162461bcd60e51b81526004016107fb90611fd4565b8060000361131f57610fc483836000611917565b6005546001600160a01b0384811691161480159061134b57506005546001600160a01b03838116911614155b801561135f57506001600160a01b03821615155b801561137657506001600160a01b03821661dead14155b801561138c5750600754600160a01b900460ff16155b1561168557600c5460ff1661141f576001600160a01b03831660009081526012602052604090205460ff16806113da57506001600160a01b03821660009081526012602052604090205460ff165b61141f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107fb565b6001600160a01b03831660009081526014602052604090205460ff16801561146057506001600160a01b03821660009081526013602052604090205460ff16155b15611544576009548111156114d55760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107fb565b600a546001600160a01b0383166000908152602081905260409020546114fb9083611f2a565b111561153f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fb565b611685565b6001600160a01b03821660009081526014602052604090205460ff16801561158557506001600160a01b03831660009081526013602052604090205460ff16155b156115fb5760095481111561153f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107fb565b6001600160a01b03821660009081526013602052604090205460ff1661168557600a546001600160a01b0383166000908152602081905260409020546116419083611f2a565b11156116855760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fb565b3060009081526020819052604081205490506000600b5482101580156116b9575043601054600f546116b79190611f2a565b105b90508080156116cf5750600c54610100900460ff165b80156116e55750600754600160a01b900460ff16155b801561170a57506001600160a01b03851660009081526014602052604090205460ff16155b801561172f57506001600160a01b03851660009081526012602052604090205460ff16155b801561175457506001600160a01b03841660009081526012602052604090205460ff16155b15611782576007805460ff60a01b1916600160a01b179055611774611a41565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806117d057506001600160a01b03851660009081526012602052604090205460ff165b156117d9575060005b6000811561185d576001600160a01b03861660009081526014602052604081205460ff161561180b5750600e54611810565b50600d545b611825606461181f8884611239565b90611b1a565b915081601160008282546118399190611f2a565b9091555050811561184f5761184f883084611917565b6118598287612017565b9550505b611868878787611917565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661193d5760405162461bcd60e51b81526004016107fb90611f8f565b6001600160a01b0382166119635760405162461bcd60e51b81526004016107fb90611fd4565b6001600160a01b038316600090815260208190526040902054818110156119db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107fb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112b9565b30600090815260208190526040812054601154909180831580611a62575082155b15611a6d5750505050565b600b54841015611a7d5783611a81565b600b545b915047611a8d83611b26565b6000611a994783611ce6565b90506000611ab68661181f6011548561123990919063ffffffff16565b600060118190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b50505050505050505050565b60006112328284611f6d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5b57611b5b61202a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd9190612040565b81600181518110611c1057611c1061202a565b60200260200101906001600160a01b031690816001600160a01b031681525050611c5b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461103f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cb090859060009086903090429060040161205d565b600060405180830381600087803b158015611cca57600080fd5b505af1158015611cde573d6000803e3d6000fd5b505050505050565b60006112328284612017565b600060208083528351808285015260005b81811015611d1f57858101830151858201604001528201611d03565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7857600080fd5b60008060408385031215611d6857600080fd5b8235611d7381611d40565b946020939093013593505050565b60008060408385031215611d9457600080fd5b50508035926020909101359150565b600080600060608486031215611db857600080fd5b8335611dc381611d40565b92506020840135611dd381611d40565b929592945050506040919091013590565b600060208284031215611df657600080fd5b813561123281611d40565b8015158114610a7857600080fd5b60008060408385031215611e2257600080fd5b8235611e2d81611d40565b91506020830135611e3d81611e01565b809150509250929050565b600060208284031215611e5a57600080fd5b5035919050565b60008060408385031215611e7457600080fd5b8235611e7f81611d40565b91506020830135611e3d81611d40565b600181811c90821680611ea357607f821691505b602082108103611ec357634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215611ede57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611f0957600080fd5b815161123281611e01565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079157610791611f14565b808202811582820484141761079157610791611f14565b600060208284031215611f6657600080fd5b5051919050565b600082611f8a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561079157610791611f14565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561205257600080fd5b815161123281611d40565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120ad5784516001600160a01b031683529383019391830191600101612088565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220be44d8226d926a7222bd3a54c268411f50b7e6226b54e0802ae2f04e830fd68464736f6c63430008130033

Deployed Bytecode Sourcemap

31178:9603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19990:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22341:201;;;;;;;;;;-1:-1:-1;22341:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;22341:201:0;1023:187:1;39692:135:0;;;;;;;;;;-1:-1:-1;39692:135:0;;;;;:::i;:::-;;:::i;:::-;;33550:509;;;;;;;;;;;;;:::i;21110:108::-;;;;;;;;;;-1:-1:-1;21198:12:0;;21110:108;;;1614:25:1;;;1602:2;1587:18;21110:108:0;1468:177:1;39504:180:0;;;;;;;;;;;;;:::i;31984:33::-;;;;;;;;;;;;;;;;31905:25;;;;;;;;;;;;;;;;23122:295;;;;;;;;;;-1:-1:-1;23122:295:0;;;;;:::i;:::-;;:::i;31445:53::-;;;;;;;;;;;;31491:6;31445:53;;;;;-1:-1:-1;;;;;2275:32:1;;;2257:51;;2245:2;2230:18;31445:53:0;2111:203:1;31537:51:0;;;;;;;;;;;;;;;;20952:93;;;;;;;;;;-1:-1:-1;20952:93:0;;21035:2;2461:36:1;;2449:2;2434:18;20952:93:0;2319:184:1;23826:238:0;;;;;;;;;;-1:-1:-1;23826:238:0;;;;;:::i;:::-;;:::i;31327:38::-;;;;;;;;;;;;;;;35152:126;;;;;;;;;;-1:-1:-1;35152:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35242:28:0;35218:4;35242:28;;;:19;:28;;;;;;;;;35152:126;31268:52;;;;;;;;;;;;;;;31372:29;;;;;;;;;;-1:-1:-1;31372:29:0;;;;-1:-1:-1;;;;;31372:29:0;;;31796:31;;;;;;;;;;-1:-1:-1;31796:31:0;;;;;;;;;;;21281:127;;;;;;;;;;-1:-1:-1;21281:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21382:18:0;21355:7;21382:18;;;;;;;;;;;;21281:127;18393:103;;;;;;;;;;;;;:::i;38874:237::-;;;;;;;;;;;;;:::i;34279:167::-;;;;;;;;;;-1:-1:-1;34279:167:0;;;;;:::i;:::-;;:::i;31408:30::-;;;;;;;;;;-1:-1:-1;31408:30:0;;;;-1:-1:-1;;;;;31408:30:0;;;17745:87;;;;;;;;;;-1:-1:-1;17818:6:0;;-1:-1:-1;;;;;17818:6:0;17745:87;;20209:104;;;;;;;;;;;;;:::i;34644:304::-;;;;;;;;;;-1:-1:-1;34644:304:0;;;;;:::i;:::-;;:::i;24567:436::-;;;;;;;;;;-1:-1:-1;24567:436:0;;;;;:::i;:::-;;:::i;21614:193::-;;;;;;;;;;-1:-1:-1;21614:193:0;;;;;:::i;:::-;;:::i;39835:127::-;;;;;;;;;;-1:-1:-1;39835:127:0;;;;;:::i;:::-;;:::i;34454:182::-;;;;;;;;;;-1:-1:-1;34454:182:0;;;;;:::i;:::-;;:::i;31595:51::-;;;;;;;;;;;;;;;;34067:204;;;;;;;;;;;;;:::i;21870:151::-;;;;;;;;;;-1:-1:-1;21870:151:0;;;;;:::i;:::-;;:::i;31700:49::-;;;;;;;;;;;;;;;;39119:377;;;;;;;;;;-1:-1:-1;39119:377:0;;;;;:::i;:::-;;:::i;18651:201::-;;;;;;;;;;-1:-1:-1;18651:201:0;;;;;:::i;:::-;;:::i;31653:40::-;;;;;;;;;;;;;;;;31758:31;;;;;;;;;;-1:-1:-1;31758:31:0;;;;;;;;19990:100;20044:13;20077:5;20070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19990:100;:::o;22341:201::-;22424:4;212:10;22480:32;212:10;22496:7;22505:6;22480:8;:32::i;:::-;22530:4;22523:11;;;22341:201;;;;;:::o;39692:135::-;17631:13;:11;:13::i;:::-;39774:6:::1;:16:::0;;;;39801:7:::1;:18:::0;39692:135::o;33550:509::-;17631:13;:11;:13::i;:::-;33615:11:::1;::::0;::::1;;33614:12;33606:47;;;::::0;-1:-1:-1;;;33606:47:0;;4668:2:1;33606:47:0::1;::::0;::::1;4650:21:1::0;4707:2;4687:18;;;4680:30;-1:-1:-1;;;4726:18:1;;;4719:53;4789:18;;33606:47:0::1;;;;;;;;;33664:70;33681:4;33696:16;33715:18;;33664:8;:70::i;:::-;33745:16;-1:-1:-1::0;;;;;33745:32:0::1;;33785:21;33816:4;33822:32;33851:2;33822:24;33840:4;-1:-1:-1::0;;;;;21382:18:0;21355:7;21382:18;;;;;;;;;;;;21281:127;33822:24:::1;:28:::0;::::1;:32::i;:::-;33855:1;33857::::0;33859:7:::1;17818:6:::0;;-1:-1:-1;;;;;17818:6:0;;17745:87;33859:7:::1;33745:138;::::0;::::1;::::0;;;-1:-1:-1;;;;;;33745:138:0;;;-1:-1:-1;;;;;5177:15:1;;;33745:138:0::1;::::0;::::1;5159:34:1::0;5209:18;;;5202:34;;;;5252:18;;;5245:34;;;;5295:18;;;5288:34;5359:15;;;5338:19;;;5331:44;33867:15:0::1;5391:19:1::0;;;5384:35;5093:19;;33745:138:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;33925:14:0::1;::::0;33941:18:::1;::::0;33909:4:::1;::::0;-1:-1:-1;33894:30:0::1;::::0;-1:-1:-1;;;;;33925:14:0::1;::::0;33941:26:::1;::::0;33964:2:::1;33941:22;:26::i;:::-;33894:74;::::0;-1:-1:-1;;;;;;33894:74:0::1;::::0;;;;;;-1:-1:-1;;;;;5933:32:1;;;33894:74:0::1;::::0;::::1;5915:51:1::0;5982:18;;;5975:34;5888:18;;33894:74:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;33979:72:0::1;::::0;-1:-1:-1;;;33979:72:0;;-1:-1:-1;;;;;34017:16:0::1;5933:32:1::0;;33979:72:0::1;::::0;::::1;5915:51:1::0;-1:-1:-1;;5982:18:1;;;5975:34;33986:13:0::1;33979:29;::::0;::::1;::::0;5888:18:1;;33979:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33550:509::o:0;39504:180::-;17631:13;:11;:13::i;:::-;39586:1:::1;39562:21;:25;39554:60;;;::::0;-1:-1:-1;;;39554:60:0;;6472:2:1;39554:60:0::1;::::0;::::1;6454:21:1::0;6511:2;6491:18;;;6484:30;-1:-1:-1;;;6530:18:1;;;6523:52;6592:18;;39554:60:0::1;6270:346:1::0;39554:60:0::1;39625:51;::::0;39633:10:::1;::::0;39654:21:::1;39625:51:::0;::::1;;;::::0;::::1;::::0;;;39654:21;39633:10;39625:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;23122:295:::0;23253:4;212:10;23311:38;23327:4;212:10;23342:6;23311:15;:38::i;:::-;23360:27;23370:4;23376:2;23380:6;23360:9;:27::i;:::-;-1:-1:-1;23405:4:0;;23122:295;-1:-1:-1;;;;23122:295:0:o;23826:238::-;23914:4;212:10;23970:64;212:10;23986:7;24023:10;23995:25;212:10;23986:7;23995:9;:25::i;:::-;:38;;;;:::i;:::-;23970:8;:64::i;18393:103::-;17631:13;:11;:13::i;:::-;18458:30:::1;18485:1;18458:18;:30::i;:::-;18393:103::o:0;38874:237::-;17631:13;:11;:13::i;:::-;38927:25:::1;38955:13;21198:12:::0;;;21110:108;38955:13:::1;38979:20;:40:::0;;;39030:9:::1;:29:::0;-1:-1:-1;39091:12:0::1;39070:18;:33:::0;38874:237::o;34279:167::-;17631:13;:11;:13::i;:::-;-1:-1:-1;;;;;34392:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;34392:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34279:167::o;20209:104::-;20265:13;20298:7;20291:14;;;;;:::i;34644:304::-;17631:13;:11;:13::i;:::-;34788::::1;-1:-1:-1::0;;;;;34780:21:0::1;:4;-1:-1:-1::0;;;;;34780:21:0::1;::::0;34758:128:::1;;;::::0;-1:-1:-1;;;34758:128:0;;7085:2:1;34758:128:0::1;::::0;::::1;7067:21:1::0;7124:2;7104:18;;;7097:30;7163:34;7143:18;;;7136:62;7234:27;7214:18;;;7207:55;7279:19;;34758:128:0::1;6883:421:1::0;34758:128:0::1;34899:41;34928:4;34934:5;34899:28;:41::i;:::-;34644:304:::0;;:::o;24567:436::-;24660:4;212:10;24660:4;24743:25;212:10;24760:7;24743:9;:25::i;:::-;24716:52;;24807:15;24787:16;:35;;24779:85;;;;-1:-1:-1;;;24779:85:0;;7511:2:1;24779:85:0;;;7493:21:1;7550:2;7530:18;;;7523:30;7589:34;7569:18;;;7562:62;-1:-1:-1;;;7640:18:1;;;7633:35;7685:19;;24779:85:0;7309:401:1;24779:85:0;24900:60;24909:5;24916:7;24944:15;24925:16;:34;24900:8;:60::i;21614:193::-;21693:4;212:10;21749:28;212:10;21766:2;21770:6;21749:9;:28::i;39835:127::-;17631:13;:11;:13::i;:::-;39934:20:::1;:7:::0;39945:8:::1;39934:20;:::i;:::-;39913:18;:41:::0;-1:-1:-1;39835:127:0:o;34454:182::-;17631:13;:11;:13::i;:::-;-1:-1:-1;;;;;34539:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34539:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34594:34;;1163:41:1;;;34594:34:0::1;::::0;1136:18:1;34594:34:0::1;;;;;;;34454:182:::0;;:::o;34067:204::-;17631:13;:11;:13::i;:::-;34131:11:::1;::::0;::::1;;34130:12;34122:47;;;::::0;-1:-1:-1;;;34122:47:0;;4668:2:1;34122:47:0::1;::::0;::::1;4650:21:1::0;4707:2;4687:18;;;4680:30;-1:-1:-1;;;4726:18:1;;;4719:53;4789:18;;34122:47:0::1;4466:347:1::0;34122:47:0::1;34193:12;34180:10;:25:::0;34216:11:::1;:18:::0;;-1:-1:-1;;34245:18:0;;;;;34067:204::o;21870:151::-;-1:-1:-1;;;;;21986:18:0;;;21959:7;21986:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21870:151::o;39119:377::-;17631:13;:11;:13::i;:::-;39224:4:::1;-1:-1:-1::0;;;;;39200:29:0;::::1;::::0;39192:75:::1;;;::::0;-1:-1:-1;;;39192:75:0;;8090:2:1;39192:75:0::1;::::0;::::1;8072:21:1::0;8129:2;8109:18;;;8102:30;8168:34;8148:18;;;8141:62;-1:-1:-1;;;8219:18:1;;;8212:31;8260:19;;39192:75:0::1;7888:397:1::0;39192:75:0::1;39302:45;::::0;-1:-1:-1;;;39302:45:0;;39341:4:::1;39302:45;::::0;::::1;2257:51:1::0;39278:21:0::1;::::0;-1:-1:-1;;;;;39302:30:0;::::1;::::0;::::1;::::0;2230:18:1;;39302:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39278:69;;39382:1;39366:13;:17;39358:63;;;::::0;-1:-1:-1;;;39358:63:0;;8681:2:1;39358:63:0::1;::::0;::::1;8663:21:1::0;8720:2;8700:18;;;8693:30;8759:34;8739:18;;;8732:62;-1:-1:-1;;;8810:18:1;;;8803:31;8851:19;;39358:63:0::1;8479:397:1::0;39358:63:0::1;39432:56;::::0;-1:-1:-1;;;39432:56:0;;39462:10:::1;39432:56;::::0;::::1;5915:51:1::0;5982:18;;;5975:34;;;-1:-1:-1;;;;;39432:29:0;::::1;::::0;::::1;::::0;5888:18:1;;39432:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39181:315;39119:377:::0;:::o;18651:201::-;17631:13;:11;:13::i;:::-;-1:-1:-1;;;;;18740:22:0;::::1;18732:73;;;::::0;-1:-1:-1;;;18732:73:0;;9083:2:1;18732:73:0::1;::::0;::::1;9065:21:1::0;9122:2;9102:18;;;9095:30;9161:34;9141:18;;;9134:62;-1:-1:-1;;;9212:18:1;;;9205:36;9258:19;;18732:73:0::1;8881:402:1::0;18732:73:0::1;18816:28;18835:8;18816:18;:28::i;28594:380::-:0;-1:-1:-1;;;;;28730:19:0;;28722:68;;;;-1:-1:-1;;;28722:68:0;;9490:2:1;28722:68:0;;;9472:21:1;9529:2;9509:18;;;9502:30;9568:34;9548:18;;;9541:62;-1:-1:-1;;;9619:18:1;;;9612:34;9663:19;;28722:68:0;9288:400:1;28722:68:0;-1:-1:-1;;;;;28809:21:0;;28801:68;;;;-1:-1:-1;;;28801:68:0;;9895:2:1;28801:68:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;-1:-1:-1;;;10024:18:1;;;10017:32;10066:19;;28801:68:0;9693:398:1;28801:68:0;-1:-1:-1;;;;;28882:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28934:32;;1614:25:1;;;28934:32:0;;1587:18:1;28934:32:0;;;;;;;28594:380;;;:::o;17910:132::-;17818:6;;-1:-1:-1;;;;;17818:6:0;212:10;17974:23;17966:68;;;;-1:-1:-1;;;17966:68:0;;10298:2:1;17966:68:0;;;10280:21:1;;;10317:18;;;10310:30;10376:34;10356:18;;;10349:62;10428:18;;17966:68:0;10096:356:1;10533:172:0;10591:7;10624:3;10619:1;:8;;10611:57;;;;-1:-1:-1;;;10611:57:0;;10659:2:1;10611:57:0;;;10641:21:1;10698:2;10678:18;;;10671:30;10737:34;10717:18;;;10710:62;-1:-1:-1;;;10788:18:1;;;10781:34;10832:19;;10611:57:0;10457:400:1;10611:57:0;10694:3;10686:5;10690:1;10686;:5;:::i;:::-;:11;;;;:::i;:::-;10679:18;10533:172;-1:-1:-1;;;10533:172:0:o;8221:98::-;8279:7;8306:5;8310:1;8306;:5;:::i;29265:453::-;29400:24;29427:25;29437:5;29444:7;29427:9;:25::i;:::-;29400:52;;-1:-1:-1;;29467:16:0;:37;29463:248;;29549:6;29529:16;:26;;29521:68;;;;-1:-1:-1;;;29521:68:0;;11286:2:1;29521:68:0;;;11268:21:1;11325:2;11305:18;;;11298:30;11364:31;11344:18;;;11337:59;11413:18;;29521:68:0;11084:353:1;29521:68:0;29633:51;29642:5;29649:7;29677:6;29658:16;:25;29633:8;:51::i;:::-;29389:329;29265:453;;;:::o;35286:3092::-;-1:-1:-1;;;;;35418:18:0;;35410:68;;;;-1:-1:-1;;;35410:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35497:16:0;;35489:64;;;;-1:-1:-1;;;35489:64:0;;;;;;;:::i;:::-;35570:6;35580:1;35570:11;35566:93;;35598:28;35614:4;35620:2;35624:1;35598:15;:28::i;35566:93::-;17818:6;;-1:-1:-1;;;;;35701:15:0;;;17818:6;;35701:15;;;;:49;;-1:-1:-1;17818:6:0;;-1:-1:-1;;;;;35737:13:0;;;17818:6;;35737:13;;35701:49;:86;;;;-1:-1:-1;;;;;;35771:16:0;;;;35701:86;:128;;;;-1:-1:-1;;;;;;35808:21:0;;35822:6;35808:21;;35701:128;:158;;;;-1:-1:-1;35851:8:0;;-1:-1:-1;;;35851:8:0;;;;35850:9;35701:158;35679:1503;;;35899:11;;;;35894:221;;-1:-1:-1;;;;;35969:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;35998:23:0;;;;;;:19;:23;;;;;;;;35969:52;35935:160;;;;-1:-1:-1;;;35935:160:0;;12454:2:1;35935:160:0;;;12436:21:1;12493:2;12473:18;;;12466:30;-1:-1:-1;;;12512:18:1;;;12505:52;12574:18;;35935:160:0;12252:346:1;35935:160:0;-1:-1:-1;;;;;36161:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;36218:35:0;;;;;;:31;:35;;;;;;;;36217:36;36161:92;36135:1032;;;36340:20;;36330:6;:30;;36296:169;;;;-1:-1:-1;;;36296:169:0;;12805:2:1;36296:169:0;;;12787:21:1;12844:2;12824:18;;;12817:30;12883:34;12863:18;;;12856:62;-1:-1:-1;;;12934:18:1;;;12927:51;12995:19;;36296:169:0;12603:417:1;36296:169:0;36548:9;;-1:-1:-1;;;;;21382:18:0;;21355:7;21382:18;;;;;;;;;;;36522:22;;:6;:22;:::i;:::-;:35;;36488:140;;;;-1:-1:-1;;;36488:140:0;;13227:2:1;36488:140:0;;;13209:21:1;13266:2;13246:18;;;13239:30;-1:-1:-1;;;13285:18:1;;;13278:49;13344:18;;36488:140:0;13025:343:1;36488:140:0;36135:1032;;;-1:-1:-1;;;;;36699:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;36754:37:0;;;;;;:31;:37;;;;;;;;36753:38;36699:92;36673:494;;;36852:20;;36842:6;:30;;36834:97;;;;-1:-1:-1;;;36834:97:0;;13575:2:1;36834:97:0;;;13557:21:1;13614:2;13594:18;;;13587:30;13653:34;13633:18;;;13626:62;-1:-1:-1;;;13704:18:1;;;13697:52;13766:19;;36834:97:0;13373:418:1;36673:494:0;-1:-1:-1;;;;;37020:35:0;;;;;;:31;:35;;;;;;;;37015:152;;37114:9;;-1:-1:-1;;;;;21382:18:0;;21355:7;21382:18;;;;;;;;;;;37088:22;;:6;:22;:::i;:::-;:35;;37080:67;;;;-1:-1:-1;;;37080:67:0;;13227:2:1;37080:67:0;;;13209:21:1;13266:2;13246:18;;;13239:30;-1:-1:-1;;;13285:18:1;;;13278:49;13344:18;;37080:67:0;13025:343:1;37080:67:0;37243:4;37194:28;21382:18;;;;;;;;;;;37194:55;;37262:12;37301:18;;37277:20;:42;;:89;;;;;37354:12;37334:17;;37323:10;;:28;;;;:::i;:::-;:43;37277:89;37262:104;;37397:7;:35;;;;-1:-1:-1;37421:11:0;;;;;;;37397:35;:61;;;;-1:-1:-1;37450:8:0;;-1:-1:-1;;;37450:8:0;;;;37449:9;37397:61;:110;;;;-1:-1:-1;;;;;;37476:31:0;;;;;;:25;:31;;;;;;;;37475:32;37397:110;:153;;;;-1:-1:-1;;;;;;37525:25:0;;;;;;:19;:25;;;;;;;;37524:26;37397:153;:194;;;;-1:-1:-1;;;;;;37568:23:0;;;;;;:19;:23;;;;;;;;37567:24;37397:194;37379:326;;;37618:8;:15;;-1:-1:-1;;;;37618:15:0;-1:-1:-1;;;37618:15:0;;;37650:10;:8;:10::i;:::-;37677:8;:16;;-1:-1:-1;;;;37677:16:0;;;37379:326;37733:8;;-1:-1:-1;;;;;37758:25:0;;37717:12;37758:25;;;:19;:25;;;;;;37733:8;-1:-1:-1;;;37733:8:0;;;;;37732:9;;37758:25;;:52;;-1:-1:-1;;;;;;37787:23:0;;;;;;:19;:23;;;;;;;;37758:52;37754:100;;;-1:-1:-1;37837:5:0;37754:100;37866:12;37899:7;37895:428;;;-1:-1:-1;;;;;37960:29:0;;37923:18;37960:29;;;:25;:29;;;;;;;;37956:150;;;-1:-1:-1;38023:7:0;;37956:150;;;-1:-1:-1;38084:6:0;;37956:150;38125:31;38152:3;38125:22;:6;38136:10;38125;:22::i;:::-;:26;;:31::i;:::-;38118:38;;38189:4;38167:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;38210:8:0;;38206:83;;38235:42;38251:4;38265;38272;38235:15;:42::i;:::-;38301:14;38311:4;38301:14;;:::i;:::-;;;37908:415;37895:428;38335:33;38351:4;38357:2;38361:6;38335:15;:33::i;:::-;35399:2979;;;;35286:3092;;;:::o;19012:191::-;19105:6;;;-1:-1:-1;;;;;19122:17:0;;;-1:-1:-1;;;;;;19122:17:0;;;;;;;19155:40;;19105:6;;;19122:17;19105:6;;19155:40;;19086:16;;19155:40;19075:128;19012:191;:::o;34956:188::-;-1:-1:-1;;;;;35039:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35039:39:0;;;;;;;;;;35096:40;;35039:39;;:31;35096:40;;;34956:188;;:::o;25473:840::-;-1:-1:-1;;;;;25604:18:0;;25596:68;;;;-1:-1:-1;;;25596:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25683:16:0;;25675:64;;;;-1:-1:-1;;;25675:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25825:15:0;;25803:19;25825:15;;;;;;;;;;;25859:21;;;;25851:72;;;;-1:-1:-1;;;25851:72:0;;14131:2:1;25851:72:0;;;14113:21:1;14170:2;14150:18;;;14143:30;14209:34;14189:18;;;14182:62;-1:-1:-1;;;14260:18:1;;;14253:36;14306:19;;25851:72:0;13929:402:1;25851:72:0;-1:-1:-1;;;;;25959:15:0;;;:9;:15;;;;;;;;;;;25977:20;;;25959:38;;26177:13;;;;;;;;;;:23;;;;;;26229:26;;1614:25:1;;;26177:13:0;;26229:26;;1587:18:1;26229:26:0;;;;;;;26268:37;39119:377;39970:808;40053:4;40009:23;21382:18;;;;;;;;;;;40098;;21382;;40009:23;40184:20;;;:46;;-1:-1:-1;40208:22:0;;40184:46;40180:203;;;40243:7;;;;39970:808::o;40180:203::-;40318:18;;40299:15;:37;;:76;;40360:15;40299:76;;;40339:18;;40299:76;40284:91;;40419:21;40449:30;40466:12;40449:16;:30::i;:::-;40488:18;40509:44;:21;40535:17;40509:25;:44::i;:::-;40488:65;;40562:23;40588:73;40637:17;40588:34;40603:18;;40588:10;:14;;:34;;;;:::i;:73::-;40691:1;40670:18;:22;;;40723:15;;40715:57;;40562:99;;-1:-1:-1;;;;;;40723:15:0;;40562:99;;40715:57;40691:1;40715:57;40562:99;40723:15;40715:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;39970:808:0:o;8620:98::-;8678:7;8705:5;8709:1;8705;:5;:::i;38386:480::-;38478:16;;;38492:1;38478:16;;;;;;;;38454:21;;38478:16;;;;;;;;;;-1:-1:-1;38478:16:0;38454:40;;38523:4;38505;38510:1;38505:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;38505:23:0;;;-1:-1:-1;;;;;38505:23:0;;;;;38549:16;-1:-1:-1;;;;;38549:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38539:4;38544:1;38539:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;38539:33:0;;;-1:-1:-1;;;;;38539:33:0;;;;;38585:63;38602:4;38617:16;38636:11;38585:8;:63::i;:::-;38661:197;;-1:-1:-1;;;38661:197:0;;-1:-1:-1;;;;;38661:16:0;:67;;;;:197;;38743:11;;38769:1;;38785:4;;38812;;38832:15;;38661:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38441:425;38386:480;:::o;7864:98::-;7922:7;7949:5;7953:1;7949;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:248::-;1283:6;1291;1344:2;1332:9;1323:7;1319:23;1315:32;1312:52;;;1360:1;1357;1350:12;1312:52;-1:-1:-1;;1383:23:1;;;1453:2;1438:18;;;1425:32;;-1:-1:-1;1215:248:1:o;1650:456::-;1727:6;1735;1743;1796:2;1784:9;1775:7;1771:23;1767:32;1764:52;;;1812:1;1809;1802:12;1764:52;1851:9;1838:23;1870:31;1895:5;1870:31;:::i;:::-;1920:5;-1:-1:-1;1977:2:1;1962:18;;1949:32;1990:33;1949:32;1990:33;:::i;:::-;1650:456;;2042:7;;-1:-1:-1;;;2096:2:1;2081:18;;;;2068:32;;1650:456::o;2508:247::-;2567:6;2620:2;2608:9;2599:7;2595:23;2591:32;2588:52;;;2636:1;2633;2626:12;2588:52;2675:9;2662:23;2694:31;2719:5;2694:31;:::i;2993:118::-;3079:5;3072:13;3065:21;3058:5;3055:32;3045:60;;3101:1;3098;3091:12;3116:382;3181:6;3189;3242:2;3230:9;3221:7;3217:23;3213:32;3210:52;;;3258:1;3255;3248:12;3210:52;3297:9;3284:23;3316:31;3341:5;3316:31;:::i;:::-;3366:5;-1:-1:-1;3423:2:1;3408:18;;3395:32;3436:30;3395:32;3436:30;:::i;:::-;3485:7;3475:17;;;3116:382;;;;;:::o;3503:180::-;3562:6;3615:2;3603:9;3594:7;3590:23;3586:32;3583:52;;;3631:1;3628;3621:12;3583:52;-1:-1:-1;3654:23:1;;3503:180;-1:-1:-1;3503:180:1:o;3688:388::-;3756:6;3764;3817:2;3805:9;3796:7;3792:23;3788:32;3785:52;;;3833:1;3830;3823:12;3785:52;3872:9;3859:23;3891:31;3916:5;3891:31;:::i;:::-;3941:5;-1:-1:-1;3998:2:1;3983:18;;3970:32;4011:33;3970:32;4011:33;:::i;4081:380::-;4160:1;4156:12;;;;4203;;;4224:61;;4278:4;4270:6;4266:17;4256:27;;4224:61;4331:2;4323:6;4320:14;4300:18;4297:38;4294:161;;4377:10;4372:3;4368:20;4365:1;4358:31;4412:4;4409:1;4402:15;4440:4;4437:1;4430:15;4294:161;;4081:380;;;:::o;5430:306::-;5518:6;5526;5534;5587:2;5575:9;5566:7;5562:23;5558:32;5555:52;;;5603:1;5600;5593:12;5555:52;5632:9;5626:16;5616:26;;5682:2;5671:9;5667:18;5661:25;5651:35;;5726:2;5715:9;5711:18;5705:25;5695:35;;5430:306;;;;;:::o;6020:245::-;6087:6;6140:2;6128:9;6119:7;6115:23;6111:32;6108:52;;;6156:1;6153;6146:12;6108:52;6188:9;6182:16;6207:28;6229:5;6207:28;:::i;6621:127::-;6682:10;6677:3;6673:20;6670:1;6663:31;6713:4;6710:1;6703:15;6737:4;6734:1;6727:15;6753:125;6818:9;;;6839:10;;;6836:36;;;6852:18;;:::i;7715:168::-;7788:9;;;7819;;7836:15;;;7830:22;;7816:37;7806:71;;7857:18;;:::i;8290:184::-;8360:6;8413:2;8401:9;8392:7;8388:23;8384:32;8381:52;;;8429:1;8426;8419:12;8381:52;-1:-1:-1;8452:16:1;;8290:184;-1:-1:-1;8290:184:1:o;10862:217::-;10902:1;10928;10918:132;;10972:10;10967:3;10963:20;10960:1;10953:31;11007:4;11004:1;10997:15;11035:4;11032:1;11025:15;10918:132;-1:-1:-1;11064:9:1;;10862:217::o;11442:401::-;11644:2;11626:21;;;11683:2;11663:18;;;11656:30;11722:34;11717:2;11702:18;;11695:62;-1:-1:-1;;;11788:2:1;11773:18;;11766:35;11833:3;11818:19;;11442:401::o;11848:399::-;12050:2;12032:21;;;12089:2;12069:18;;;12062:30;12128:34;12123:2;12108:18;;12101:62;-1:-1:-1;;;12194:2:1;12179:18;;12172:33;12237:3;12222:19;;11848:399::o;13796:128::-;13863:9;;;13884:11;;;13881:37;;;13898:18;;:::i;14678:127::-;14739:10;14734:3;14730:20;14727:1;14720:31;14770:4;14767:1;14760:15;14794:4;14791:1;14784:15;14810:251;14880:6;14933:2;14921:9;14912:7;14908:23;14904:32;14901:52;;;14949:1;14946;14939:12;14901:52;14981:9;14975:16;15000:31;15025:5;15000:31;:::i;15066:980::-;15328:4;15376:3;15365:9;15361:19;15407:6;15396:9;15389:25;15433:2;15471:6;15466:2;15455:9;15451:18;15444:34;15514:3;15509:2;15498:9;15494:18;15487:31;15538:6;15573;15567:13;15604:6;15596;15589:22;15642:3;15631:9;15627:19;15620:26;;15681:2;15673:6;15669:15;15655:29;;15702:1;15712:195;15726:6;15723:1;15720:13;15712:195;;;15791:13;;-1:-1:-1;;;;;15787:39:1;15775:52;;15882:15;;;;15847:12;;;;15823:1;15741:9;15712:195;;;-1:-1:-1;;;;;;;15963:32:1;;;;15958:2;15943:18;;15936:60;-1:-1:-1;;;16027:3:1;16012:19;16005:35;15924:3;15066:980;-1:-1:-1;;;15066:980:1:o

Swarm Source

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