ETH Price: $2,969.73 (-1.67%)
 

Overview

Max Total Supply

1,000,000,000,000,000 SHIBL

Holders

63

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
ShibaInuLeverage

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-02-14
*/

/****
Telegram: https://t.me/ShibaInuLeverage
Twitter: https://twitter.com/ShibLeverage
Website: https://shibltoken.com
*****/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;

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

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Shiba Inu Leverage", "SHIBL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x03f7724180AA6b939894B5Ca4314783B0b36b329); //0x03f7724180AA6b939894B5Ca4314783B0b36b329 shibaswap

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), SHIB);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buyDevFee = 10;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 35;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1_000_000_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 200; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 200; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0x3D7a69EF10Ef11B064b66e797aCBE7FFA8F62437); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 100);
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 100);
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


    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 (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of SHIB
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForSHIB(contractBalance);
    }

}

Contract Security Audit

Contract ABI

API
[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"SHIB","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b0319167395ad61b0a150d79219dcf64e1e6cc01f0b64c4ce179055600b80546201000162ffffff199091161790553480156200004a57600080fd5b506040805180820182526012815271536869626120496e75204c6576657261676560701b60208083019182528351808501909452600584526414d212509360da1b908401528151919291620000a291600391620005b1565b508051620000b8906004906020840190620005b1565b505050620000d5620000cf6200035260201b60201c565b62000356565b7303f7724180aa6b939894b5ca4314783b0b36b329620000f7816001620003a8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000142573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000168919062000657565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000657565b6001600160a01b031660a0819052620001fb906001620003a8565b600a60006023816d314dc6448d9338c15b0a0000000060c8620002208260026200069f565b6200022c9190620006c1565b60085560c86200023e8260026200069f565b6200024a9190620006c1565b600a556127106200025d8260056200069f565b620002699190620006c1565b600955600d859055600e849055620002828486620006e4565b600c55601083905560118290556200029b8284620006e4565b600f55600780546001600160a01b031916733d7a69ef10ef11b064b66e797acbe7ffa8f62437179055620002e3620002db6005546001600160a01b031690565b600162000422565b620002f030600162000422565b620002ff61dead600162000422565b6200031e620003166005546001600160a01b031690565b6001620003a8565b6200032b306001620003a8565b6200033a61dead6001620003a8565b620003463382620004cc565b5050505050506200073b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003f75760405162461bcd60e51b815260206004820181905260248201526000805160206200261183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200046d5760405162461bcd60e51b81526020600482018190526024820152600080516020620026118339815191526044820152606401620003ee565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ee565b8060026000828254620005389190620006e4565b90915550506001600160a01b0382166000908152602081905260408120805483929062000567908490620006e4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005bf90620006ff565b90600052602060002090601f016020900481019282620005e357600085556200062e565b82601f10620005fe57805160ff19168380011785556200062e565b828001600101855582156200062e579182015b828111156200062e57825182559160200191906001019062000611565b506200063c92915062000640565b5090565b5b808211156200063c576000815560010162000641565b6000602082840312156200066a57600080fd5b81516001600160a01b03811681146200068257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006bc57620006bc62000689565b500290565b600082620006df57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006fa57620006fa62000689565b500190565b600181811c908216806200071457607f821691505b6020821081036200073557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611e7f620007926000396000818161041d0152818161127601528181611487015281816115970152818161164001526116fa015260008181610320015281816119de0152611a1d0152611e7f6000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c18bc195116100b6578063e24b85e71161007a578063e24b85e71461072d578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc1951461067b578063c8c8ebe41461069b578063d257b34f146106b1578063d85ba063146106d1578063dd62ed3e146106e757600080fd5b80639c3b4fdc116100fd5780639c3b4fdc146105f0578063a0d82dc514610606578063a9059cbb1461061c578063bbc0c7421461063c578063c02466681461065b57600080fd5b80638a8c523c146105685780638da5cb5b1461057d5780638ea5220f1461059b578063924de9b7146105bb57806395d89b41146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611a95565b6107c5565b005b34801561028f57600080fd5b50610298610822565b6040516102a59190611ab7565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611b23565b6108b4565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611b4d565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611b4d565b6108ca565b3480156103a557600080fd5b506102816103b4366004611b68565b610951565b3480156103c557600080fd5b506102ce6103d4366004611b81565b610a2e565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611b4d565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611a95565b610ad8565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611b4d565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610b28565b34801561053f57600080fd5b506102ce610b5e565b34801561055457600080fd5b50610281610563366004611bcd565b610b9b565b34801561057457600080fd5b50610281610bf0565b34801561058957600080fd5b506005546001600160a01b0316610342565b3480156105a757600080fd5b50600754610342906001600160a01b031681565b3480156105c757600080fd5b506102816105d6366004611c00565b610c2d565b3480156105e757600080fd5b50610298610c73565b3480156105fc57600080fd5b5061036b600d5481565b34801561061257600080fd5b5061036b60105481565b34801561062857600080fd5b506102ce610637366004611b23565b610c82565b34801561064857600080fd5b50600b546102ce90610100900460ff1681565b34801561066757600080fd5b50610281610676366004611bcd565b610c8f565b34801561068757600080fd5b50610281610696366004611b68565b610d18565b3480156106a757600080fd5b5061036b60085481565b3480156106bd57600080fd5b506102ce6106cc366004611b68565b610de9565b3480156106dd57600080fd5b5061036b600c5481565b3480156106f357600080fd5b5061036b610702366004611c1b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073957600080fd5b50600654610342906001600160a01b031681565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611b4d565b610f40565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611c45565b60405180910390fd5b6010829055601181905561080c8183611c90565b600f8190556064101561081e57600080fd5b5050565b60606003805461083190611ca8565b80601f016020809104026020016040519081016040528092919081815260200182805461085d90611ca8565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60006108c1338484610fdb565b50600192915050565b6005546001600160a01b031633146108f45760405162461bcd60e51b81526004016107ef90611c45565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461097b5760405162461bcd60e51b81526004016107ef90611c45565b670de0b6b3a76400006103e861099060025490565b61099b906001611ce2565b6109a59190611d01565b6109af9190611d01565b811015610a165760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a2881670de0b6b3a7640000611ce2565b60085550565b6000610a3b8484846110ff565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ac05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610acd8533858403610fdb565b506001949350505050565b6005546001600160a01b03163314610b025760405162461bcd60e51b81526004016107ef90611c45565b600d829055600e819055610b168183611c90565b600c8190556064101561081e57600080fd5b6005546001600160a01b03163314610b525760405162461bcd60e51b81526004016107ef90611c45565b610b5c6000611742565b565b6005546000906001600160a01b03163314610b8b5760405162461bcd60e51b81526004016107ef90611c45565b50600b805460ff19169055600190565b6005546001600160a01b03163314610bc55760405162461bcd60e51b81526004016107ef90611c45565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c1a5760405162461bcd60e51b81526004016107ef90611c45565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c575760405162461bcd60e51b81526004016107ef90611c45565b600b8054911515620100000262ff000019909216919091179055565b60606004805461083190611ca8565b60006108c13384846110ff565b6005546001600160a01b03163314610cb95760405162461bcd60e51b81526004016107ef90611c45565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d425760405162461bcd60e51b81526004016107ef90611c45565b670de0b6b3a76400006103e8610d5760025490565b610d62906005611ce2565b610d6c9190611d01565b610d769190611d01565b811015610dd15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610de381670de0b6b3a7640000611ce2565b600a5550565b6005546000906001600160a01b03163314610e165760405162461bcd60e51b81526004016107ef90611c45565b620186a0610e2360025490565b610e2e906001611ce2565b610e389190611d01565b821015610ea55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610eb160025490565b610ebc906005611ce2565b610ec69190611d01565b821115610f325760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610f6a5760405162461bcd60e51b81526004016107ef90611c45565b6001600160a01b038116610fcf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b610fd881611742565b50565b6001600160a01b03831661103d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b03821661109e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111255760405162461bcd60e51b81526004016107ef90611d23565b6001600160a01b03821661114b5760405162461bcd60e51b81526004016107ef90611d68565b806000036111645761115f83836000611794565b505050565b600b5460ff161561143c576005546001600160a01b0384811691161480159061119b57506005546001600160a01b03838116911614155b80156111af57506001600160a01b03821615155b80156111c657506001600160a01b03821661dead14155b80156111dc5750600654600160a01b900460ff16155b1561143c57600b54610100900460ff16611274576001600160a01b03831660009081526012602052604090205460ff168061122f57506001600160a01b03821660009081526012602052604090205460ff165b6112745760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156112ce57506001600160a01b03821660009081526013602052604090205460ff16155b156113b2576008548111156113435760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113699083611c90565b11156113ad5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b61143c565b6001600160a01b03821660009081526013602052604090205460ff1661143c57600a546001600160a01b0383166000908152602081905260409020546113f89083611c90565b111561143c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114685750600b5462010000900460ff165b801561147e5750600654600160a01b900460ff16155b80156114bb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156114e057506001600160a01b03851660009081526012602052604090205460ff16155b801561150557506001600160a01b03841660009081526012602052604090205460ff16155b15611533576006805460ff60a01b1916600160a01b1790556115256118e9565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061158157506001600160a01b03851660009081526012602052604090205460ff165b1561158a575060005b6000806000831561172c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156115d857506000600f54115b1561163e576115fd60646115f7600f548a61193390919063ffffffff16565b90611946565b9250600f54601154846116109190611ce2565b61161a9190611d01565b9150600f546010548461162d9190611ce2565b6116379190611d01565b90506116dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561168157506000600c54115b156116dd576116a060646115f7600c548a61193390919063ffffffff16565b9250600c54600e54846116b39190611ce2565b6116bd9190611d01565b9150600c54600d54846116d09190611ce2565b6116da9190611d01565b90505b82156116ee576116ee893085611794565b811561171f5761171f307f000000000000000000000000000000000000000000000000000000000000000084611794565b6117298388611dab565b96505b611737898989611794565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117ba5760405162461bcd60e51b81526004016107ef90611d23565b6001600160a01b0382166117e05760405162461bcd60e51b81526004016107ef90611d68565b6001600160a01b038316600090815260208190526040902054818110156118585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061188f908490611c90565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118db91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119045750565b600954611912906014611ce2565b81111561192a57600954611927906014611ce2565b90505b610fd881611952565b600061193f8284611ce2565b9392505050565b600061193f8284611d01565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198757611987611dc2565b6001600160a01b0392831660209182029290920101526006548251911690829060019081106119b8576119b8611dc2565b60200260200101906001600160a01b031690816001600160a01b031681525050611a03307f000000000000000000000000000000000000000000000000000000000000000084610fdb565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611a5f928792600092889291909116904290600401611dd8565b600060405180830381600087803b158015611a7957600080fd5b505af1158015611a8d573d6000803e3d6000fd5b505050505050565b60008060408385031215611aa857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611ae457858101830151858201604001528201611ac8565b81811115611af6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f3b57600080fd5b60008060408385031215611b3657600080fd5b611b3f83611b0c565b946020939093013593505050565b600060208284031215611b5f57600080fd5b61193f82611b0c565b600060208284031215611b7a57600080fd5b5035919050565b600080600060608486031215611b9657600080fd5b611b9f84611b0c565b9250611bad60208501611b0c565b9150604084013590509250925092565b80358015158114610f3b57600080fd5b60008060408385031215611be057600080fd5b611be983611b0c565b9150611bf760208401611bbd565b90509250929050565b600060208284031215611c1257600080fd5b61193f82611bbd565b60008060408385031215611c2e57600080fd5b611c3783611b0c565b9150611bf760208401611b0c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ca357611ca3611c7a565b500190565b600181811c90821680611cbc57607f821691505b602082108103611cdc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611cfc57611cfc611c7a565b500290565b600082611d1e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611dbd57611dbd611c7a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e285784516001600160a01b031683529383019391830191600101611e03565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208294e80cb163e374282afdfc6224a51f62a143e947df6f33b14bc105b3dbc8fa64736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c18bc195116100b6578063e24b85e71161007a578063e24b85e71461072d578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc1951461067b578063c8c8ebe41461069b578063d257b34f146106b1578063d85ba063146106d1578063dd62ed3e146106e757600080fd5b80639c3b4fdc116100fd5780639c3b4fdc146105f0578063a0d82dc514610606578063a9059cbb1461061c578063bbc0c7421461063c578063c02466681461065b57600080fd5b80638a8c523c146105685780638da5cb5b1461057d5780638ea5220f1461059b578063924de9b7146105bb57806395d89b41146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611a95565b6107c5565b005b34801561028f57600080fd5b50610298610822565b6040516102a59190611ab7565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611b23565b6108b4565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611b4d565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f00000000000000000000000003f7724180aa6b939894b5ca4314783b0b36b32981565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611b4d565b6108ca565b3480156103a557600080fd5b506102816103b4366004611b68565b610951565b3480156103c557600080fd5b506102ce6103d4366004611b81565b610a2e565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f0000000000000000000000001592286eaf39820ebb2ac979b6e4e6c6138d068881565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611b4d565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611a95565b610ad8565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611b4d565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610b28565b34801561053f57600080fd5b506102ce610b5e565b34801561055457600080fd5b50610281610563366004611bcd565b610b9b565b34801561057457600080fd5b50610281610bf0565b34801561058957600080fd5b506005546001600160a01b0316610342565b3480156105a757600080fd5b50600754610342906001600160a01b031681565b3480156105c757600080fd5b506102816105d6366004611c00565b610c2d565b3480156105e757600080fd5b50610298610c73565b3480156105fc57600080fd5b5061036b600d5481565b34801561061257600080fd5b5061036b60105481565b34801561062857600080fd5b506102ce610637366004611b23565b610c82565b34801561064857600080fd5b50600b546102ce90610100900460ff1681565b34801561066757600080fd5b50610281610676366004611bcd565b610c8f565b34801561068757600080fd5b50610281610696366004611b68565b610d18565b3480156106a757600080fd5b5061036b60085481565b3480156106bd57600080fd5b506102ce6106cc366004611b68565b610de9565b3480156106dd57600080fd5b5061036b600c5481565b3480156106f357600080fd5b5061036b610702366004611c1b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073957600080fd5b50600654610342906001600160a01b031681565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611b4d565b610f40565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611c45565b60405180910390fd5b6010829055601181905561080c8183611c90565b600f8190556064101561081e57600080fd5b5050565b60606003805461083190611ca8565b80601f016020809104026020016040519081016040528092919081815260200182805461085d90611ca8565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60006108c1338484610fdb565b50600192915050565b6005546001600160a01b031633146108f45760405162461bcd60e51b81526004016107ef90611c45565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461097b5760405162461bcd60e51b81526004016107ef90611c45565b670de0b6b3a76400006103e861099060025490565b61099b906001611ce2565b6109a59190611d01565b6109af9190611d01565b811015610a165760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a2881670de0b6b3a7640000611ce2565b60085550565b6000610a3b8484846110ff565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ac05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610acd8533858403610fdb565b506001949350505050565b6005546001600160a01b03163314610b025760405162461bcd60e51b81526004016107ef90611c45565b600d829055600e819055610b168183611c90565b600c8190556064101561081e57600080fd5b6005546001600160a01b03163314610b525760405162461bcd60e51b81526004016107ef90611c45565b610b5c6000611742565b565b6005546000906001600160a01b03163314610b8b5760405162461bcd60e51b81526004016107ef90611c45565b50600b805460ff19169055600190565b6005546001600160a01b03163314610bc55760405162461bcd60e51b81526004016107ef90611c45565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c1a5760405162461bcd60e51b81526004016107ef90611c45565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c575760405162461bcd60e51b81526004016107ef90611c45565b600b8054911515620100000262ff000019909216919091179055565b60606004805461083190611ca8565b60006108c13384846110ff565b6005546001600160a01b03163314610cb95760405162461bcd60e51b81526004016107ef90611c45565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d425760405162461bcd60e51b81526004016107ef90611c45565b670de0b6b3a76400006103e8610d5760025490565b610d62906005611ce2565b610d6c9190611d01565b610d769190611d01565b811015610dd15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610de381670de0b6b3a7640000611ce2565b600a5550565b6005546000906001600160a01b03163314610e165760405162461bcd60e51b81526004016107ef90611c45565b620186a0610e2360025490565b610e2e906001611ce2565b610e389190611d01565b821015610ea55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610eb160025490565b610ebc906005611ce2565b610ec69190611d01565b821115610f325760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610f6a5760405162461bcd60e51b81526004016107ef90611c45565b6001600160a01b038116610fcf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b610fd881611742565b50565b6001600160a01b03831661103d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b03821661109e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111255760405162461bcd60e51b81526004016107ef90611d23565b6001600160a01b03821661114b5760405162461bcd60e51b81526004016107ef90611d68565b806000036111645761115f83836000611794565b505050565b600b5460ff161561143c576005546001600160a01b0384811691161480159061119b57506005546001600160a01b03838116911614155b80156111af57506001600160a01b03821615155b80156111c657506001600160a01b03821661dead14155b80156111dc5750600654600160a01b900460ff16155b1561143c57600b54610100900460ff16611274576001600160a01b03831660009081526012602052604090205460ff168061122f57506001600160a01b03821660009081526012602052604090205460ff165b6112745760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f0000000000000000000000001592286eaf39820ebb2ac979b6e4e6c6138d06886001600160a01b0316836001600160a01b03161480156112ce57506001600160a01b03821660009081526013602052604090205460ff16155b156113b2576008548111156113435760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113699083611c90565b11156113ad5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b61143c565b6001600160a01b03821660009081526013602052604090205460ff1661143c57600a546001600160a01b0383166000908152602081905260409020546113f89083611c90565b111561143c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114685750600b5462010000900460ff165b801561147e5750600654600160a01b900460ff16155b80156114bb57507f0000000000000000000000001592286eaf39820ebb2ac979b6e4e6c6138d06886001600160a01b0316846001600160a01b0316145b80156114e057506001600160a01b03851660009081526012602052604090205460ff16155b801561150557506001600160a01b03841660009081526012602052604090205460ff16155b15611533576006805460ff60a01b1916600160a01b1790556115256118e9565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061158157506001600160a01b03851660009081526012602052604090205460ff165b1561158a575060005b6000806000831561172c577f0000000000000000000000001592286eaf39820ebb2ac979b6e4e6c6138d06886001600160a01b0316886001600160a01b03161480156115d857506000600f54115b1561163e576115fd60646115f7600f548a61193390919063ffffffff16565b90611946565b9250600f54601154846116109190611ce2565b61161a9190611d01565b9150600f546010548461162d9190611ce2565b6116379190611d01565b90506116dd565b7f0000000000000000000000001592286eaf39820ebb2ac979b6e4e6c6138d06886001600160a01b0316896001600160a01b031614801561168157506000600c54115b156116dd576116a060646115f7600c548a61193390919063ffffffff16565b9250600c54600e54846116b39190611ce2565b6116bd9190611d01565b9150600c54600d54846116d09190611ce2565b6116da9190611d01565b90505b82156116ee576116ee893085611794565b811561171f5761171f307f0000000000000000000000001592286eaf39820ebb2ac979b6e4e6c6138d068884611794565b6117298388611dab565b96505b611737898989611794565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117ba5760405162461bcd60e51b81526004016107ef90611d23565b6001600160a01b0382166117e05760405162461bcd60e51b81526004016107ef90611d68565b6001600160a01b038316600090815260208190526040902054818110156118585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061188f908490611c90565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118db91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119045750565b600954611912906014611ce2565b81111561192a57600954611927906014611ce2565b90505b610fd881611952565b600061193f8284611ce2565b9392505050565b600061193f8284611d01565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198757611987611dc2565b6001600160a01b0392831660209182029290920101526006548251911690829060019081106119b8576119b8611dc2565b60200260200101906001600160a01b031690816001600160a01b031681525050611a03307f00000000000000000000000003f7724180aa6b939894b5ca4314783b0b36b32984610fdb565b600754604051635c11d79560e01b81526001600160a01b037f00000000000000000000000003f7724180aa6b939894b5ca4314783b0b36b329811692635c11d79592611a5f928792600092889291909116904290600401611dd8565b600060405180830381600087803b158015611a7957600080fd5b505af1158015611a8d573d6000803e3d6000fd5b505050505050565b60008060408385031215611aa857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611ae457858101830151858201604001528201611ac8565b81811115611af6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f3b57600080fd5b60008060408385031215611b3657600080fd5b611b3f83611b0c565b946020939093013593505050565b600060208284031215611b5f57600080fd5b61193f82611b0c565b600060208284031215611b7a57600080fd5b5035919050565b600080600060608486031215611b9657600080fd5b611b9f84611b0c565b9250611bad60208501611b0c565b9150604084013590509250925092565b80358015158114610f3b57600080fd5b60008060408385031215611be057600080fd5b611be983611b0c565b9150611bf760208401611bbd565b90509250929050565b600060208284031215611c1257600080fd5b61193f82611bbd565b60008060408385031215611c2e57600080fd5b611c3783611b0c565b9150611bf760208401611b0c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ca357611ca3611c7a565b500190565b600181811c90821680611cbc57607f821691505b602082108103611cdc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611cfc57611cfc611c7a565b500290565b600082611d1e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611dbd57611dbd611c7a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e285784516001600160a01b031683529383019391830191600101611e03565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208294e80cb163e374282afdfc6224a51f62a143e947df6f33b14bc105b3dbc8fa64736f6c634300080e0033

Deployed Bytecode Sourcemap

23418:10607:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28728:286;;;;;;;;;;-1:-1:-1;28728:286:0;;;;;:::i;:::-;;:::i;:::-;;8274:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10441:169;;;;;;;;;;-1:-1:-1;10441:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;10441:169:0;1306:187:1;24388:63:0;;;;;;;;;;-1:-1:-1;24388:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23504:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;23504:51:0;1689:229:1;9394:108:0;;;;;;;;;;-1:-1:-1;9482:12:0;;9394:108;;;2069:25:1;;;2057:2;2042:18;9394:108:0;1923:177:1;29212:189:0;;;;;;;;;;-1:-1:-1;29212:189:0;;;;;:::i;:::-;;:::i;27523:275::-;;;;;;;;;;-1:-1:-1;27523:275:0;;;;;:::i;:::-;;:::i;11092:492::-;;;;;;;;;;-1:-1:-1;11092:492:0;;;;;:::i;:::-;;:::i;23607:53::-;;;;;;;;;;;;23653:6;23607:53;;9236:93;;;;;;;;;;-1:-1:-1;9236:93:0;;9319:2;2973:36:1;;2961:2;2946:18;9236:93:0;2831:184:1;23562:38:0;;;;;;;;;;;;;;;23918:33;;;;;;;;;;-1:-1:-1;23918:33:0;;;;;;;;29411:126;;;;;;;;;;-1:-1:-1;29411:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29501:28:0;29477:4;29501:28;;;:19;:28;;;;;;;;;29411:126;28441:279;;;;;;;;;;-1:-1:-1;28441:279:0;;;;;:::i;:::-;;:::i;24141:28::-;;;;;;;;;;;;;;;;23998:30;;;;;;;;;;-1:-1:-1;23998:30:0;;;;;;;;;;;9565:127;;;;;;;;;;-1:-1:-1;9565:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9666:18:0;9639:7;9666:18;;;;;;;;;;;;9565:127;1509:103;;;;;;;;;;;;;:::i;26827:121::-;;;;;;;;;;;;;:::i;28070:167::-;;;;;;;;;;-1:-1:-1;28070:167:0;;;;;:::i;:::-;;:::i;26663:112::-;;;;;;;;;;;;;:::i;858:87::-;;;;;;;;;;-1:-1:-1;931:6:0;;-1:-1:-1;;;;;931:6:0;858:87;;23770:24;;;;;;;;;;-1:-1:-1;23770:24:0;;;;-1:-1:-1;;;;;23770:24:0;;;28333:100;;;;;;;;;;-1:-1:-1;28333:100:0;;;;;:::i;:::-;;:::i;8493:104::-;;;;;;;;;;;;;:::i;24071:24::-;;;;;;;;;;;;;;;;24176:25;;;;;;;;;;;;;;;;9905:175;;;;;;;;;;-1:-1:-1;9905:175:0;;;;;:::i;:::-;;:::i;23958:33::-;;;;;;;;;;-1:-1:-1;23958:33:0;;;;;;;;;;;29022:182;;;;;;;;;;-1:-1:-1;29022:182:0;;;;;:::i;:::-;;:::i;27806:256::-;;;;;;;;;;-1:-1:-1;27806:256:0;;;;;:::i;:::-;;:::i;23803:35::-;;;;;;;;;;;;;;;;27018:497;;;;;;;;;;-1:-1:-1;27018:497:0;;;;;:::i;:::-;;:::i;24037:27::-;;;;;;;;;;;;;;;;10143:151;;;;;;;;;;-1:-1:-1;10143:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10259:18:0;;;10232:7;10259:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10143:151;23667:64;;;;;;;;;;-1:-1:-1;23667:64:0;;;;-1:-1:-1;;;;;23667:64:0;;;23845:33;;;;;;;;;;;;;;;;24102:30;;;;;;;;;;;;;;;;1767:201;;;;;;;;;;-1:-1:-1;1767:201:0;;;;;:::i;:::-;;:::i;24208:31::-;;;;;;;;;;;;;;;;23885:24;;;;;;;;;;;;;;;;28728:286;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;;;;;;;;;28847:10:::1;:20:::0;;;28878:16:::1;:32:::0;;;28937:29:::1;28897:13:::0;28860:7;28937:29:::1;:::i;:::-;28921:13;:45:::0;;;29002:3:::1;-1:-1:-1::0;28985:20:0::1;28977:29;;;::::0;::::1;;28728:286:::0;;:::o;8274:100::-;8328:13;8361:5;8354:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8274:100;:::o;10441:169::-;10524:4;10541:39;310:10;10564:7;10573:6;10541:8;:39::i;:::-;-1:-1:-1;10598:4:0;10441:169;;;;:::o;29212:189::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;29348:9:::1;::::0;29317:41:::1;::::0;-1:-1:-1;;;;;29348:9:0;;::::1;::::0;29317:41;::::1;::::0;::::1;::::0;29348:9:::1;::::0;29317:41:::1;29369:9;:24:::0;;-1:-1:-1;;;;;;29369:24:0::1;-1:-1:-1::0;;;;;29369:24:0;;;::::1;::::0;;;::::1;::::0;;29212:189::o;27523:275::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;27660:4:::1;27652;27631:13;9482:12:::0;;;9394:108;27631:13:::1;:17;::::0;27647:1:::1;27631:17;:::i;:::-;27630:26;;;;:::i;:::-;27629:35;;;;:::i;:::-;27619:6;:45;;27597:142;;;::::0;-1:-1:-1;;;27597:142:0;;5502:2:1;27597:142:0::1;::::0;::::1;5484:21:1::0;5541:2;5521:18;;;5514:30;5580:34;5560:18;;;5553:62;-1:-1:-1;;;5631:18:1;;;5624:45;5686:19;;27597:142:0::1;5300:411:1::0;27597:142:0::1;27773:17;:6:::0;27783::::1;27773:17;:::i;:::-;27750:20;:40:::0;-1:-1:-1;27523:275:0:o;11092:492::-;11232:4;11249:36;11259:6;11267:9;11278:6;11249:9;:36::i;:::-;-1:-1:-1;;;;;11325:19:0;;11298:24;11325:19;;;:11;:19;;;;;;;;310:10;11325:33;;;;;;;;11377:26;;;;11369:79;;;;-1:-1:-1;;;11369:79:0;;5918:2:1;11369:79:0;;;5900:21:1;5957:2;5937:18;;;5930:30;5996:34;5976:18;;;5969:62;-1:-1:-1;;;6047:18:1;;;6040:38;6095:19;;11369:79:0;5716:404:1;11369:79:0;11484:57;11493:6;310:10;11534:6;11515:16;:25;11484:8;:57::i;:::-;-1:-1:-1;11572:4:0;;11092:492;-1:-1:-1;;;;11092:492:0:o;28441:279::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;28559:9:::1;:19:::0;;;28589:15:::1;:31:::0;;;28646:27:::1;28607:13:::0;28571:7;28646:27:::1;:::i;:::-;28631:12;:42:::0;;;28708:3:::1;-1:-1:-1::0;28692:19:0::1;28684:28;;;::::0;::::1;1509:103:::0;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;1574:30:::1;1601:1;1574:18;:30::i;:::-;1509:103::o:0;26827:121::-;931:6;;26879:4;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;-1:-1:-1;26896:14:0::1;:22:::0;;-1:-1:-1;;26896:22:0::1;::::0;;;26827:121;:::o;28070:167::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28183:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28183:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28070:167::o;26663:112::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;26718:13:::1;:20:::0;;-1:-1:-1;;26749:18:0;;;;;26663:112::o;28333:100::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;28404:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28404:21:0;;::::1;::::0;;;::::1;::::0;;28333:100::o;8493:104::-;8549:13;8582:7;8575:14;;;;;:::i;9905:175::-;9991:4;10008:42;310:10;10032:9;10043:6;10008:9;:42::i;29022:182::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29107:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29107:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29162:34;;1446:41:1;;;29162:34:0::1;::::0;1419:18:1;29162:34:0::1;;;;;;;29022:182:::0;;:::o;27806:256::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;27946:4:::1;27938;27917:13;9482:12:::0;;;9394:108;27917:13:::1;:17;::::0;27933:1:::1;27917:17;:::i;:::-;27916:26;;;;:::i;:::-;27915:35;;;;:::i;:::-;27905:6;:45;;27883:131;;;::::0;-1:-1:-1;;;27883:131:0;;6327:2:1;27883:131:0::1;::::0;::::1;6309:21:1::0;6366:2;6346:18;;;6339:30;6405:34;6385:18;;;6378:62;-1:-1:-1;;;6456:18:1;;;6449:34;6500:19;;27883:131:0::1;6125:400:1::0;27883:131:0::1;28037:17;:6:::0;28047::::1;28037:17;:::i;:::-;28025:9;:29:::0;-1:-1:-1;27806:256:0:o;27018:497::-;931:6;;27126:4;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;27205:6:::1;27184:13;9482:12:::0;;;9394:108;27184:13:::1;:17;::::0;27200:1:::1;27184:17;:::i;:::-;27183:28;;;;:::i;:::-;27170:9;:41;;27148:144;;;::::0;-1:-1:-1;;;27148:144:0;;6732:2:1;27148:144:0::1;::::0;::::1;6714:21:1::0;6771:2;6751:18;;;6744:30;6810:34;6790:18;;;6783:62;-1:-1:-1;;;6861:18:1;;;6854:51;6922:19;;27148:144:0::1;6530:417:1::0;27148:144:0::1;27360:4;27339:13;9482:12:::0;;;9394:108;27339:13:::1;:17;::::0;27355:1:::1;27339:17;:::i;:::-;27338:26;;;;:::i;:::-;27325:9;:39;;27303:141;;;::::0;-1:-1:-1;;;27303:141:0;;7154:2:1;27303:141:0::1;::::0;::::1;7136:21:1::0;7193:2;7173:18;;;7166:30;7232:34;7212:18;;;7205:62;-1:-1:-1;;;7283:18:1;;;7276:50;7343:19;;27303:141:0::1;6952:416:1::0;27303:141:0::1;-1:-1:-1::0;27455:18:0::1;:30:::0;;;27503:4:::1;1149:1;27018:497:::0;;;:::o;1767:201::-;931:6;;-1:-1:-1;;;;;931:6:0;310:10;1078:23;1070:68;;;;-1:-1:-1;;;1070:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1856:22:0;::::1;1848:73;;;::::0;-1:-1:-1;;;1848:73:0;;7575:2:1;1848:73:0::1;::::0;::::1;7557:21:1::0;7614:2;7594:18;;;7587:30;7653:34;7633:18;;;7626:62;-1:-1:-1;;;7704:18:1;;;7697:36;7750:19;;1848:73:0::1;7373:402:1::0;1848:73:0::1;1932:28;1951:8;1932:18;:28::i;:::-;1767:201:::0;:::o;13933:380::-;-1:-1:-1;;;;;14069:19:0;;14061:68;;;;-1:-1:-1;;;14061:68:0;;7982:2:1;14061:68:0;;;7964:21:1;8021:2;8001:18;;;7994:30;8060:34;8040:18;;;8033:62;-1:-1:-1;;;8111:18:1;;;8104:34;8155:19;;14061:68:0;7780:400:1;14061:68:0;-1:-1:-1;;;;;14148:21:0;;14140:68;;;;-1:-1:-1;;;14140:68:0;;8387:2:1;14140:68:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:32;8558:19;;14140:68:0;8185:398:1;14140:68:0;-1:-1:-1;;;;;14221:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14273:32;;2069:25:1;;;14273:32:0;;2042:18:1;14273:32:0;;;;;;;13933:380;;;:::o;29545:3547::-;-1:-1:-1;;;;;29677:18:0;;29669:68;;;;-1:-1:-1;;;29669:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29756:16:0;;29748:64;;;;-1:-1:-1;;;29748:64:0;;;;;;;:::i;:::-;29829:6;29839:1;29829:11;29825:93;;29857:28;29873:4;29879:2;29883:1;29857:15;:28::i;:::-;29545:3547;;;:::o;29825:93::-;29934:14;;;;29930:1298;;;931:6;;-1:-1:-1;;;;;29987:15:0;;;931:6;;29987:15;;;;:49;;-1:-1:-1;931:6:0;;-1:-1:-1;;;;;30023:13:0;;;931:6;;30023:13;;29987:49;:86;;;;-1:-1:-1;;;;;;30057:16:0;;;;29987:86;:128;;;;-1:-1:-1;;;;;;30094:21:0;;30108:6;30094:21;;29987:128;:158;;;;-1:-1:-1;30137:8:0;;-1:-1:-1;;;30137:8:0;;;;30136:9;29987:158;29965:1252;;;30185:13;;;;;;;30180:223;;-1:-1:-1;;;;;30257:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30286:23:0;;;;;;:19;:23;;;;;;;;30257:52;30223:160;;;;-1:-1:-1;;;30223:160:0;;9600:2:1;30223:160:0;;;9582:21:1;9639:2;9619:18;;;9612:30;-1:-1:-1;;;9658:18:1;;;9651:52;9720:18;;30223:160:0;9398:346:1;30223:160:0;30485:13;-1:-1:-1;;;;;30477:21:0;:4;-1:-1:-1;;;;;30477:21:0;;:82;;;;-1:-1:-1;;;;;;30524:35:0;;;;;;:31;:35;;;;;;;;30523:36;30477:82;30451:751;;;30646:20;;30636:6;:30;;30602:169;;;;-1:-1:-1;;;30602:169:0;;9951:2:1;30602:169:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;-1:-1:-1;;;10080:18:1;;;10073:51;10141:19;;30602:169:0;9749:417:1;30602:169:0;30854:9;;-1:-1:-1;;;;;9666:18:0;;9639:7;9666:18;;;;;;;;;;;30828:22;;:6;:22;:::i;:::-;:35;;30794:140;;;;-1:-1:-1;;;30794:140:0;;10373:2:1;30794:140:0;;;10355:21:1;10412:2;10392:18;;;10385:30;-1:-1:-1;;;10431:18:1;;;10424:49;10490:18;;30794:140:0;10171:343:1;30794:140:0;30451:751;;;-1:-1:-1;;;;;30982:35:0;;;;;;:31;:35;;;;;;;;30977:225;;31102:9;;-1:-1:-1;;;;;9666:18:0;;9639:7;9666:18;;;;;;;;;;;31076:22;;:6;:22;:::i;:::-;:35;;31042:140;;;;-1:-1:-1;;;31042:140:0;;10373:2:1;31042:140:0;;;10355:21:1;10412:2;10392:18;;;10385:30;-1:-1:-1;;;10431:18:1;;;10424:49;10490:18;;31042:140:0;10171:343:1;31042:140:0;31289:4;31240:28;9666:18;;;;;;;;;;;31347;;31323:42;;;;;;;31396:35;;-1:-1:-1;31420:11:0;;;;;;;31396:35;:61;;;;-1:-1:-1;31449:8:0;;-1:-1:-1;;;31449:8:0;;;;31448:9;31396:61;:97;;;;;31480:13;-1:-1:-1;;;;;31474:19:0;:2;-1:-1:-1;;;;;31474:19:0;;31396:97;:140;;;;-1:-1:-1;;;;;;31511:25:0;;;;;;:19;:25;;;;;;;;31510:26;31396:140;:181;;;;-1:-1:-1;;;;;;31554:23:0;;;;;;:19;:23;;;;;;;;31553:24;31396:181;31378:313;;;31604:8;:15;;-1:-1:-1;;;;31604:15:0;-1:-1:-1;;;31604:15:0;;;31636:10;:8;:10::i;:::-;31663:8;:16;;-1:-1:-1;;;;31663:16:0;;;31378:313;31719:8;;-1:-1:-1;;;;;31829:25:0;;31703:12;31829:25;;;:19;:25;;;;;;31719:8;-1:-1:-1;;;31719:8:0;;;;;31718:9;;31829:25;;:52;;-1:-1:-1;;;;;;31858:23:0;;;;;;:19;:23;;;;;;;;31829:52;31825:100;;;-1:-1:-1;31908:5:0;31825:100;31937:12;31964:26;32005:20;32118:7;32114:925;;;32176:13;-1:-1:-1;;;;;32170:19:0;:2;-1:-1:-1;;;;;32170:19:0;;:40;;;;;32209:1;32193:13;;:17;32170:40;32166:583;;;32238:34;32268:3;32238:25;32249:13;;32238:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32231:41;;32340:13;;32320:16;;32313:4;:23;;;;:::i;:::-;32312:41;;;;:::i;:::-;32291:62;;32409:13;;32395:10;;32388:4;:17;;;;:::i;:::-;32387:35;;;;:::i;:::-;32372:50;;32166:583;;;32492:13;-1:-1:-1;;;;;32484:21:0;:4;-1:-1:-1;;;;;32484:21:0;;:41;;;;;32524:1;32509:12;;:16;32484:41;32480:269;;;32553:33;32582:3;32553:24;32564:12;;32553:6;:10;;:24;;;;:::i;:33::-;32546:40;;32653:12;;32634:15;;32627:4;:22;;;;:::i;:::-;32626:39;;;;:::i;:::-;32605:60;;32721:12;;32708:9;;32701:4;:16;;;;:::i;:::-;32700:33;;;;:::i;:::-;32685:48;;32480:269;32769:7;;32765:90;;32797:42;32813:4;32827;32834;32797:15;:42::i;:::-;32873:22;;32869:128;;32916:65;32940:4;32947:13;32962:18;32916:15;:65::i;:::-;33013:14;33023:4;33013:14;;:::i;:::-;;;32114:925;33051:33;33067:4;33073:2;33077:6;33051:15;:33::i;:::-;29658:3434;;;;;;29545:3547;;;:::o;2128:191::-;2221:6;;;-1:-1:-1;;;;;2238:17:0;;;-1:-1:-1;;;;;;2238:17:0;;;;;;;2271:40;;2221:6;;;2238:17;2221:6;;2271:40;;2202:16;;2271:40;2191:128;2128:191;:::o;12074:733::-;-1:-1:-1;;;;;12214:20:0;;12206:70;;;;-1:-1:-1;;;12206:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12295:23:0;;12287:71;;;;-1:-1:-1;;;12287:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12455:17:0;;12431:21;12455:17;;;;;;;;;;;12491:23;;;;12483:74;;;;-1:-1:-1;;;12483:74:0;;10851:2:1;12483:74:0;;;10833:21:1;10890:2;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;-1:-1:-1;;;10980:18:1;;;10973:36;11026:19;;12483:74:0;10649:402:1;12483:74:0;-1:-1:-1;;;;;12593:17:0;;;:9;:17;;;;;;;;;;;12613:22;;;12593:42;;12657:20;;;;;;;;:30;;12629:6;;12593:9;12657:30;;12629:6;;12657:30;:::i;:::-;;;;;;;;12722:9;-1:-1:-1;;;;;12705:35:0;12714:6;-1:-1:-1;;;;;12705:35:0;;12733:6;12705:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;12705:35:0;;;;;;;;12195:612;12074:733;;;:::o;33680:340::-;33763:4;33719:23;9666:18;;;;;;;;;;;;33784:20;;;33780:59;;33821:7;33680:340::o;33780:59::-;33873:18;;:23;;33894:2;33873:23;:::i;:::-;33855:15;:41;33851:115;;;33931:18;;:23;;33952:2;33931:23;:::i;:::-;33913:41;;33851:115;33978:34;33996:15;33978:17;:34::i;19386:98::-;19444:7;19471:5;19475:1;19471;:5;:::i;:::-;19464:12;19386:98;-1:-1:-1;;;19386:98:0:o;19785:::-;19843:7;19870:5;19874:1;19870;:5;:::i;33100:572::-;33251:16;;;33265:1;33251:16;;;;;;;;33227:21;;33251:16;;;;;;;;;;-1:-1:-1;33251:16:0;33227:40;;33296:4;33278;33283:1;33278:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33278:23:0;;;:7;;;;;;;;;:23;33322:4;;33312:7;;33322:4;;;33312;;33322;;33312:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33312:14:0;;;-1:-1:-1;;;;;33312:14:0;;;;;33339:62;33356:4;33371:15;33389:11;33339:8;:62::i;:::-;33614:9;;33440:224;;-1:-1:-1;;;33440:224:0;;-1:-1:-1;;;;;33440:15:0;:69;;;;;:224;;33524:11;;33550:1;;33595:4;;33614:9;;;;;33638:15;;33440:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33156:516;33100:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4520:380::-;4599:1;4595:12;;;;4642;;;4663:61;;4717:4;4709:6;4705:17;4695:27;;4663:61;4770:2;4762:6;4759:14;4739:18;4736:38;4733:161;;4816:10;4811:3;4807:20;4804:1;4797:31;4851:4;4848:1;4841:15;4879:4;4876:1;4869:15;4733:161;;4520:380;;;:::o;4905:168::-;4945:7;5011:1;5007;5003:6;4999:14;4996:1;4993:21;4988:1;4981:9;4974:17;4970:45;4967:71;;;5018:18;;:::i;:::-;-1:-1:-1;5058:9:1;;4905:168::o;5078:217::-;5118:1;5144;5134:132;;5188:10;5183:3;5179:20;5176:1;5169:31;5223:4;5220:1;5213:15;5251:4;5248:1;5241:15;5134:132;-1:-1:-1;5280:9:1;;5078:217::o;8588:401::-;8790:2;8772:21;;;8829:2;8809:18;;;8802:30;8868:34;8863:2;8848:18;;8841:62;-1:-1:-1;;;8934:2:1;8919:18;;8912:35;8979:3;8964:19;;8588:401::o;8994:399::-;9196:2;9178:21;;;9235:2;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;-1:-1:-1;;;9340:2:1;9325:18;;9318:33;9383:3;9368:19;;8994:399::o;10519:125::-;10559:4;10587:1;10584;10581:8;10578:34;;;10592:18;;:::i;:::-;-1:-1:-1;10629:9:1;;10519:125::o;11188:127::-;11249:10;11244:3;11240:20;11237:1;11230:31;11280:4;11277:1;11270:15;11304:4;11301:1;11294:15;11320:980;11582:4;11630:3;11619:9;11615:19;11661:6;11650:9;11643:25;11687:2;11725:6;11720:2;11709:9;11705:18;11698:34;11768:3;11763:2;11752:9;11748:18;11741:31;11792:6;11827;11821:13;11858:6;11850;11843:22;11896:3;11885:9;11881:19;11874:26;;11935:2;11927:6;11923:15;11909:29;;11956:1;11966:195;11980:6;11977:1;11974:13;11966:195;;;12045:13;;-1:-1:-1;;;;;12041:39:1;12029:52;;12136:15;;;;12101:12;;;;12077:1;11995:9;11966:195;;;-1:-1:-1;;;;;;;12217:32:1;;;;12212:2;12197:18;;12190:60;-1:-1:-1;;;12281:3:1;12266:19;12259:35;12178:3;11320:980;-1:-1:-1;;;11320:980:1:o

Swarm Source

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