ETH Price: $2,523.41 (-0.07%)

Token

Wuff Inu (WUFF)
 

Overview

Max Total Supply

1,000,000,000,000 WUFF

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
310,107,102.626778344087974482 WUFF

Value
$0.00
0xd68cfc06c6e6037d0c3c4a9cbe71f5dc19c44059
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:
WuffInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-11
*/

/*******

$Wuff Inu - Bringing back the dog meme nostalgia! 

$Wuff Inu is new hyper-deflationary dog token that is bringing back the original dog memecoin nostalgia with its high supply, hyper deflationary tokenomics and marketing strategy to spend every penny of the dev/marketing wallet on the project. We’re also donating to many dog charities and releasing 1000 awesome pixelated NFT’s for anyone holding 1% supply to mint a max of 2 for free!

$WUFF is designed to profit investors whilst contributing to the betterment of dog shelters worldwide! Thus, we've designed our tokenomics to be hyper-deflationary with taxes constantly burning tokens out of supply and constantly filling up the marketing/dev wallet to ensure longterm success of $WUFF!

Tokenomics:
1 Trillion Supply: 1,000,000,000,000
Tax: 3/3
Max Buy: 1%
Max Wallet: 2%

Socials:
TG: https://t.me/wuffinu
Twitter: https://twitter.com/wuffinu
Medium: https://medium.com/@wuffinu/wuff-inu-bringing-back-the-dog-meme-nostalgia-6903eee714ad
Web: https://wuffinu.dog/

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

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);
    }
}
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);
}
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);
}
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 {}
}
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 WuffInu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address public burnAddress = deadAddress;

    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 buyBurnFee;


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


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

    // 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("Wuff Inu", "WUFF") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 4;
        uint256 _buyLiquidityFee = 0;
        uint256  _buyBurnFee = 0;


        uint256 _sellDevFee = 10;
        uint256  _sellBurnFee = 0;

        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1000_000_000_000 * 1e18;

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

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

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellBurnFee = _sellBurnFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + buyBurnFee;

        devWallet = address(0x73722AE2c5d901cCcFf620a32414eE36fec13055); // Dev Wallet

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

    function setDeadAddress(address addy) public onlyOwner{
            burnAddress = addy;
    }

    // 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, uint256 _burnFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyBurnFee = _burnFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + _burnFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee, uint256 _sellBurnFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellBurnFee = _sellBurnFee;

        sellTotalFees = sellDevFee + sellLiquidityFee + sellBurnFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

    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."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //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;
        uint256 tokensForBurn = 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;
                tokensForBurn = (fees * sellBurnFee) / sellTotalFees;

            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
                tokensForBurn = (fees * buyBurnFee) / buyTotalFees;

            }

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

            if(tokensForBurn > 0){
                super._transfer(address(this), burnAddress, tokensForBurn);
            }

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForUSDC(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"USDC","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":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","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":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"addy","type":"address"}],"name":"setDeadAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"internalType":"uint256","name":"_burnFee","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"},{"internalType":"uint256","name":"_sellBurnFee","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"}]

60c0604052600680546001600160a01b031990811673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179091556007805490911661dead179055600c80546201000162ffffff199091161790553480156200005a57600080fd5b5060408051808201825260088152675775666620496e7560c01b6020808301918252835180850190945260048452632baaa32360e11b908401528151919291620000a791600391620005ff565b508051620000bd906004906020840190620005ff565b505050620000da620000d4620003a060201b60201c565b620003a4565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000fc816001620003f6565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200014257600080fd5b505afa15801562000157573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017d9190620006a5565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b158015620001ca57600080fd5b505af1158015620001df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002059190620006a5565b6001600160a01b031660a081905262000220906001620003f6565b6004600080600a81806c0c9f2c9cd04674edea40000000606462000246826001620006ed565b6200025291906200070f565b600955606462000264826002620006ed565b6200027091906200070f565b600b5561271062000283826005620006ed565b6200028f91906200070f565b600a55600e879055600f869055601085905584620002ae878962000732565b620002ba919062000732565b600d55601284905560138290556014839055601054620002db838662000732565b620002e7919062000732565b601155600880546001600160a01b0319167373722ae2c5d901cccff620a32414ee36fec130551790556200032f620003276005546001600160a01b031690565b600162000470565b6200033c30600162000470565b6200034b61dead600162000470565b6200036a620003626005546001600160a01b031690565b6001620003f6565b62000377306001620003f6565b6200038661dead6001620003f6565b6200039233826200051a565b50505050505050506200078a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004455760405162461bcd60e51b815260206004820181905260248201526000805160206200284583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004bb5760405162461bcd60e51b815260206004820181905260248201526000805160206200284583398151915260448201526064016200043c565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200043c565b806002600082825462000586919062000732565b90915550506001600160a01b03821660009081526020819052604081208054839290620005b590849062000732565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200060d906200074d565b90600052602060002090601f0160209004810192826200063157600085556200067c565b82601f106200064c57805160ff19168380011785556200067c565b828001600101855582156200067c579182015b828111156200067c5782518255916020019190600101906200065f565b506200068a9291506200068e565b5090565b5b808211156200068a57600081556001016200068f565b600060208284031215620006b857600080fd5b81516001600160a01b0381168114620006d057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200070a576200070a620006d7565b500290565b6000826200072d57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007485762000748620006d7565b500190565b600181811c908216806200076257607f821691505b602082108114156200078457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612064620007e160003960008181610429015281816113f90152818161160a0152818161171b015281816117e101526118b801526000818161032a01528181611bb80152611bf701526120646000f3fe6080604052600436106102815760003560e01c80638a8c523c1161014f578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146107cf578063e71dc3f5146107e5578063f11a24d3146107fb578063f2fde38b14610811578063f637434214610831578063f8b45b051461084757600080fd5b8063c17b5b8c146106fd578063c18bc1951461071d578063c8c8ebe41461073d578063d257b34f14610753578063d85ba06314610773578063dd62ed3e1461078957600080fd5b80639c3b4fdc116101135780639c3b4fdc1461065c578063a0d82dc514610672578063a9059cbb14610688578063adb873bd146106a8578063bbc0c742146106be578063c0246668146106dd57600080fd5b80638a8c523c146105d45780638da5cb5b146105e95780638ea5220f14610607578063924de9b71461062757806395d89b411461064757600080fd5b80634a62bb65116101f3578063715018a6116101ac578063715018a61461052a578063751039fc1461053f5780637571336a1461055457806377975e0b146105745780638095d5641461059457806389a30271146105b457600080fd5b80634a62bb651461044b5780634fbee193146104655780636a486a8e1461049e5780636ddd1713146104b457806370a08231146104d457806370d5ae051461050a57600080fd5b80631816467f116102455780631816467f14610383578063203e727e146103a557806323b872dd146103c557806327c8f835146103e5578063313ce567146103fb57806349bd5a5e1461041757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a261085d565b6040516102af9190611c6f565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611cdb565b6108ef565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611d05565b60166020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b506103a361039e366004611d05565b610905565b005b3480156103b157600080fd5b506103a36103c0366004611d20565b610995565b3480156103d157600080fd5b506102d86103e0366004611d39565b610a72565b3480156103f157600080fd5b5061034c61dead81565b34801561040757600080fd5b50604051601281526020016102af565b34801561042357600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b50600c546102d89060ff1681565b34801561047157600080fd5b506102d8610480366004611d05565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104aa57600080fd5b5061037560115481565b3480156104c057600080fd5b50600c546102d89062010000900460ff1681565b3480156104e057600080fd5b506103756104ef366004611d05565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5060075461034c906001600160a01b031681565b34801561053657600080fd5b506103a3610b1c565b34801561054b57600080fd5b506102d8610b52565b34801561056057600080fd5b506103a361056f366004611d85565b610b8f565b34801561058057600080fd5b506103a361058f366004611d05565b610be4565b3480156105a057600080fd5b506103a36105af366004611db8565b610c30565b3480156105c057600080fd5b5060065461034c906001600160a01b031681565b3480156105e057600080fd5b506103a3610cd8565b3480156105f557600080fd5b506005546001600160a01b031661034c565b34801561061357600080fd5b5060085461034c906001600160a01b031681565b34801561063357600080fd5b506103a3610642366004611de4565b610d15565b34801561065357600080fd5b506102a2610d5b565b34801561066857600080fd5b50610375600e5481565b34801561067e57600080fd5b5061037560125481565b34801561069457600080fd5b506102d86106a3366004611cdb565b610d6a565b3480156106b457600080fd5b5061037560145481565b3480156106ca57600080fd5b50600c546102d890610100900460ff1681565b3480156106e957600080fd5b506103a36106f8366004611d85565b610d77565b34801561070957600080fd5b506103a3610718366004611db8565b610e00565b34801561072957600080fd5b506103a3610738366004611d20565b610ea3565b34801561074957600080fd5b5061037560095481565b34801561075f57600080fd5b506102d861076e366004611d20565b610f74565b34801561077f57600080fd5b50610375600d5481565b34801561079557600080fd5b506103756107a4366004611dff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107db57600080fd5b50610375600a5481565b3480156107f157600080fd5b5061037560105481565b34801561080757600080fd5b50610375600f5481565b34801561081d57600080fd5b506103a361082c366004611d05565b6110cb565b34801561083d57600080fd5b5061037560135481565b34801561085357600080fd5b50610375600b5481565b60606003805461086c90611e29565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611e29565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc338484611166565b50600192915050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611e64565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bf5760405162461bcd60e51b815260040161092f90611e64565b670de0b6b3a76400006103e86109d460025490565b6109df906001611eaf565b6109e99190611ece565b6109f39190611ece565b811015610a5a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161092f565b610a6c81670de0b6b3a7640000611eaf565b60095550565b6000610a7f84848461128a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161092f565b610b118533858403611166565b506001949350505050565b6005546001600160a01b03163314610b465760405162461bcd60e51b815260040161092f90611e64565b610b50600061191f565b565b6005546000906001600160a01b03163314610b7f5760405162461bcd60e51b815260040161092f90611e64565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb95760405162461bcd60e51b815260040161092f90611e64565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161092f90611e64565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5a5760405162461bcd60e51b815260040161092f90611e64565b600e839055600f829055601081905580610c748385611ef0565b610c7e9190611ef0565b600d819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260040161092f90611e64565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161092f90611e64565b600c8054911515620100000262ff000019909216919091179055565b60606004805461086c90611e29565b60006108fc33848461128a565b6005546001600160a01b03163314610da15760405162461bcd60e51b815260040161092f90611e64565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092f90611e64565b60128390556013829055601481905580610e448385611ef0565b610e4e9190611ef0565b6011819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b6005546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161092f90611e64565b670de0b6b3a76400006103e8610ee260025490565b610eed906005611eaf565b610ef79190611ece565b610f019190611ece565b811015610f5c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161092f565b610f6e81670de0b6b3a7640000611eaf565b600b5550565b6005546000906001600160a01b03163314610fa15760405162461bcd60e51b815260040161092f90611e64565b620186a0610fae60025490565b610fb9906001611eaf565b610fc39190611ece565b8210156110305760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e861103c60025490565b611047906005611eaf565b6110519190611ece565b8211156110bd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600a81905560015b919050565b6005546001600160a01b031633146110f55760405162461bcd60e51b815260040161092f90611e64565b6001600160a01b03811661115a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b6111638161191f565b50565b6001600160a01b0383166111c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b0382166112295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112b05760405162461bcd60e51b815260040161092f90611f08565b6001600160a01b0382166112d65760405162461bcd60e51b815260040161092f90611f4d565b806112e757610cd383836000611971565b600c5460ff16156115bf576005546001600160a01b0384811691161480159061131e57506005546001600160a01b03838116911614155b801561133257506001600160a01b03821615155b801561134957506001600160a01b03821661dead14155b801561135f5750600754600160a01b900460ff16155b156115bf57600c54610100900460ff166113f7576001600160a01b03831660009081526015602052604090205460ff16806113b257506001600160a01b03821660009081526015602052604090205460ff165b6113f75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561145157506001600160a01b03821660009081526016602052604090205460ff16155b15611535576009548111156114c65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600b546001600160a01b0383166000908152602081905260409020546114ec9083611ef0565b11156115305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6115bf565b6001600160a01b03821660009081526016602052604090205460ff166115bf57600b546001600160a01b03831660009081526020819052604090205461157b9083611ef0565b11156115bf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600a54811080159081906115eb5750600c5462010000900460ff165b80156116015750600754600160a01b900460ff16155b801561163e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561166357506001600160a01b03851660009081526015602052604090205460ff16155b801561168857506001600160a01b03841660009081526015602052604090205460ff16155b156116b6576007805460ff60a01b1916600160a01b1790556116a8611ac6565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b90920482161591168061170457506001600160a01b03851660009081526015602052604090205460ff165b1561170d575060005b6000806000808415611908577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561175c57506000601154115b156117df57611781606461177b6011548b611b0d90919063ffffffff16565b90611b20565b9350601154601354856117949190611eaf565b61179e9190611ece565b9250601154601254856117b19190611eaf565b6117bb9190611ece565b9150601154601454856117ce9190611eaf565b6117d89190611ece565b905061189b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168a6001600160a01b031614801561182257506000600d54115b1561189b57611841606461177b600d548b611b0d90919063ffffffff16565b9350600d54600f54856118549190611eaf565b61185e9190611ece565b9250600d54600e54856118719190611eaf565b61187b9190611ece565b9150600d546010548561188e9190611eaf565b6118989190611ece565b90505b83156118ac576118ac8a3086611971565b82156118dd576118dd307f000000000000000000000000000000000000000000000000000000000000000085611971565b80156118fb576007546118fb9030906001600160a01b031683611971565b6119058489611f90565b97505b6119138a8a8a611971565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119975760405162461bcd60e51b815260040161092f90611f08565b6001600160a01b0382166119bd5760405162461bcd60e51b815260040161092f90611f4d565b6001600160a01b03831660009081526020819052604090205481811015611a355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a6c908490611ef0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab891815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611ade5750565b600a54611aec906014611eaf565b811115611b0457600a54611b01906014611eaf565b90505b61116381611b2c565b6000611b198284611eaf565b9392505050565b6000611b198284611ece565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b6157611b61611fa7565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b9257611b92611fa7565b60200260200101906001600160a01b031690816001600160a01b031681525050611bdd307f000000000000000000000000000000000000000000000000000000000000000084611166565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611c39928792600092889291909116904290600401611fbd565b600060405180830381600087803b158015611c5357600080fd5b505af1158015611c67573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c9c57858101830151858201604001528201611c80565b81811115611cae576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110c657600080fd5b60008060408385031215611cee57600080fd5b611cf783611cc4565b946020939093013593505050565b600060208284031215611d1757600080fd5b611b1982611cc4565b600060208284031215611d3257600080fd5b5035919050565b600080600060608486031215611d4e57600080fd5b611d5784611cc4565b9250611d6560208501611cc4565b9150604084013590509250925092565b803580151581146110c657600080fd5b60008060408385031215611d9857600080fd5b611da183611cc4565b9150611daf60208401611d75565b90509250929050565b600080600060608486031215611dcd57600080fd5b505081359360208301359350604090920135919050565b600060208284031215611df657600080fd5b611b1982611d75565b60008060408385031215611e1257600080fd5b611e1b83611cc4565b9150611daf60208401611cc4565b600181811c90821680611e3d57607f821691505b60208210811415611e5e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ec957611ec9611e99565b500290565b600082611eeb57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611f0357611f03611e99565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611fa257611fa2611e99565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561200d5784516001600160a01b031683529383019391830191600101611fe8565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122010102d611be1c610d1901f15800eb63fdf569451506928d1c2d99de35bed41f264736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638a8c523c1161014f578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146107cf578063e71dc3f5146107e5578063f11a24d3146107fb578063f2fde38b14610811578063f637434214610831578063f8b45b051461084757600080fd5b8063c17b5b8c146106fd578063c18bc1951461071d578063c8c8ebe41461073d578063d257b34f14610753578063d85ba06314610773578063dd62ed3e1461078957600080fd5b80639c3b4fdc116101135780639c3b4fdc1461065c578063a0d82dc514610672578063a9059cbb14610688578063adb873bd146106a8578063bbc0c742146106be578063c0246668146106dd57600080fd5b80638a8c523c146105d45780638da5cb5b146105e95780638ea5220f14610607578063924de9b71461062757806395d89b411461064757600080fd5b80634a62bb65116101f3578063715018a6116101ac578063715018a61461052a578063751039fc1461053f5780637571336a1461055457806377975e0b146105745780638095d5641461059457806389a30271146105b457600080fd5b80634a62bb651461044b5780634fbee193146104655780636a486a8e1461049e5780636ddd1713146104b457806370a08231146104d457806370d5ae051461050a57600080fd5b80631816467f116102455780631816467f14610383578063203e727e146103a557806323b872dd146103c557806327c8f835146103e5578063313ce567146103fb57806349bd5a5e1461041757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a261085d565b6040516102af9190611c6f565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611cdb565b6108ef565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611d05565b60166020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b506103a361039e366004611d05565b610905565b005b3480156103b157600080fd5b506103a36103c0366004611d20565b610995565b3480156103d157600080fd5b506102d86103e0366004611d39565b610a72565b3480156103f157600080fd5b5061034c61dead81565b34801561040757600080fd5b50604051601281526020016102af565b34801561042357600080fd5b5061034c7f0000000000000000000000003757f4b300d49eef7c8f4594f00307f1efb9109381565b34801561045757600080fd5b50600c546102d89060ff1681565b34801561047157600080fd5b506102d8610480366004611d05565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104aa57600080fd5b5061037560115481565b3480156104c057600080fd5b50600c546102d89062010000900460ff1681565b3480156104e057600080fd5b506103756104ef366004611d05565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5060075461034c906001600160a01b031681565b34801561053657600080fd5b506103a3610b1c565b34801561054b57600080fd5b506102d8610b52565b34801561056057600080fd5b506103a361056f366004611d85565b610b8f565b34801561058057600080fd5b506103a361058f366004611d05565b610be4565b3480156105a057600080fd5b506103a36105af366004611db8565b610c30565b3480156105c057600080fd5b5060065461034c906001600160a01b031681565b3480156105e057600080fd5b506103a3610cd8565b3480156105f557600080fd5b506005546001600160a01b031661034c565b34801561061357600080fd5b5060085461034c906001600160a01b031681565b34801561063357600080fd5b506103a3610642366004611de4565b610d15565b34801561065357600080fd5b506102a2610d5b565b34801561066857600080fd5b50610375600e5481565b34801561067e57600080fd5b5061037560125481565b34801561069457600080fd5b506102d86106a3366004611cdb565b610d6a565b3480156106b457600080fd5b5061037560145481565b3480156106ca57600080fd5b50600c546102d890610100900460ff1681565b3480156106e957600080fd5b506103a36106f8366004611d85565b610d77565b34801561070957600080fd5b506103a3610718366004611db8565b610e00565b34801561072957600080fd5b506103a3610738366004611d20565b610ea3565b34801561074957600080fd5b5061037560095481565b34801561075f57600080fd5b506102d861076e366004611d20565b610f74565b34801561077f57600080fd5b50610375600d5481565b34801561079557600080fd5b506103756107a4366004611dff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107db57600080fd5b50610375600a5481565b3480156107f157600080fd5b5061037560105481565b34801561080757600080fd5b50610375600f5481565b34801561081d57600080fd5b506103a361082c366004611d05565b6110cb565b34801561083d57600080fd5b5061037560135481565b34801561085357600080fd5b50610375600b5481565b60606003805461086c90611e29565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611e29565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc338484611166565b50600192915050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611e64565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bf5760405162461bcd60e51b815260040161092f90611e64565b670de0b6b3a76400006103e86109d460025490565b6109df906001611eaf565b6109e99190611ece565b6109f39190611ece565b811015610a5a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161092f565b610a6c81670de0b6b3a7640000611eaf565b60095550565b6000610a7f84848461128a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161092f565b610b118533858403611166565b506001949350505050565b6005546001600160a01b03163314610b465760405162461bcd60e51b815260040161092f90611e64565b610b50600061191f565b565b6005546000906001600160a01b03163314610b7f5760405162461bcd60e51b815260040161092f90611e64565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb95760405162461bcd60e51b815260040161092f90611e64565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161092f90611e64565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5a5760405162461bcd60e51b815260040161092f90611e64565b600e839055600f829055601081905580610c748385611ef0565b610c7e9190611ef0565b600d819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260040161092f90611e64565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161092f90611e64565b600c8054911515620100000262ff000019909216919091179055565b60606004805461086c90611e29565b60006108fc33848461128a565b6005546001600160a01b03163314610da15760405162461bcd60e51b815260040161092f90611e64565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092f90611e64565b60128390556013829055601481905580610e448385611ef0565b610e4e9190611ef0565b6011819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b6005546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161092f90611e64565b670de0b6b3a76400006103e8610ee260025490565b610eed906005611eaf565b610ef79190611ece565b610f019190611ece565b811015610f5c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161092f565b610f6e81670de0b6b3a7640000611eaf565b600b5550565b6005546000906001600160a01b03163314610fa15760405162461bcd60e51b815260040161092f90611e64565b620186a0610fae60025490565b610fb9906001611eaf565b610fc39190611ece565b8210156110305760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e861103c60025490565b611047906005611eaf565b6110519190611ece565b8211156110bd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600a81905560015b919050565b6005546001600160a01b031633146110f55760405162461bcd60e51b815260040161092f90611e64565b6001600160a01b03811661115a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b6111638161191f565b50565b6001600160a01b0383166111c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b0382166112295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112b05760405162461bcd60e51b815260040161092f90611f08565b6001600160a01b0382166112d65760405162461bcd60e51b815260040161092f90611f4d565b806112e757610cd383836000611971565b600c5460ff16156115bf576005546001600160a01b0384811691161480159061131e57506005546001600160a01b03838116911614155b801561133257506001600160a01b03821615155b801561134957506001600160a01b03821661dead14155b801561135f5750600754600160a01b900460ff16155b156115bf57600c54610100900460ff166113f7576001600160a01b03831660009081526015602052604090205460ff16806113b257506001600160a01b03821660009081526015602052604090205460ff165b6113f75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b7f0000000000000000000000003757f4b300d49eef7c8f4594f00307f1efb910936001600160a01b0316836001600160a01b031614801561145157506001600160a01b03821660009081526016602052604090205460ff16155b15611535576009548111156114c65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600b546001600160a01b0383166000908152602081905260409020546114ec9083611ef0565b11156115305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6115bf565b6001600160a01b03821660009081526016602052604090205460ff166115bf57600b546001600160a01b03831660009081526020819052604090205461157b9083611ef0565b11156115bf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600a54811080159081906115eb5750600c5462010000900460ff165b80156116015750600754600160a01b900460ff16155b801561163e57507f0000000000000000000000003757f4b300d49eef7c8f4594f00307f1efb910936001600160a01b0316846001600160a01b0316145b801561166357506001600160a01b03851660009081526015602052604090205460ff16155b801561168857506001600160a01b03841660009081526015602052604090205460ff16155b156116b6576007805460ff60a01b1916600160a01b1790556116a8611ac6565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b90920482161591168061170457506001600160a01b03851660009081526015602052604090205460ff165b1561170d575060005b6000806000808415611908577f0000000000000000000000003757f4b300d49eef7c8f4594f00307f1efb910936001600160a01b0316896001600160a01b031614801561175c57506000601154115b156117df57611781606461177b6011548b611b0d90919063ffffffff16565b90611b20565b9350601154601354856117949190611eaf565b61179e9190611ece565b9250601154601254856117b19190611eaf565b6117bb9190611ece565b9150601154601454856117ce9190611eaf565b6117d89190611ece565b905061189b565b7f0000000000000000000000003757f4b300d49eef7c8f4594f00307f1efb910936001600160a01b03168a6001600160a01b031614801561182257506000600d54115b1561189b57611841606461177b600d548b611b0d90919063ffffffff16565b9350600d54600f54856118549190611eaf565b61185e9190611ece565b9250600d54600e54856118719190611eaf565b61187b9190611ece565b9150600d546010548561188e9190611eaf565b6118989190611ece565b90505b83156118ac576118ac8a3086611971565b82156118dd576118dd307f0000000000000000000000003757f4b300d49eef7c8f4594f00307f1efb9109385611971565b80156118fb576007546118fb9030906001600160a01b031683611971565b6119058489611f90565b97505b6119138a8a8a611971565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119975760405162461bcd60e51b815260040161092f90611f08565b6001600160a01b0382166119bd5760405162461bcd60e51b815260040161092f90611f4d565b6001600160a01b03831660009081526020819052604090205481811015611a355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a6c908490611ef0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab891815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611ade5750565b600a54611aec906014611eaf565b811115611b0457600a54611b01906014611eaf565b90505b61116381611b2c565b6000611b198284611eaf565b9392505050565b6000611b198284611ece565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b6157611b61611fa7565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b9257611b92611fa7565b60200260200101906001600160a01b031690816001600160a01b031681525050611bdd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611166565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611c39928792600092889291909116904290600401611fbd565b600060405180830381600087803b158015611c5357600080fd5b505af1158015611c67573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c9c57858101830151858201604001528201611c80565b81811115611cae576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110c657600080fd5b60008060408385031215611cee57600080fd5b611cf783611cc4565b946020939093013593505050565b600060208284031215611d1757600080fd5b611b1982611cc4565b600060208284031215611d3257600080fd5b5035919050565b600080600060608486031215611d4e57600080fd5b611d5784611cc4565b9250611d6560208501611cc4565b9150604084013590509250925092565b803580151581146110c657600080fd5b60008060408385031215611d9857600080fd5b611da183611cc4565b9150611daf60208401611d75565b90509250929050565b600080600060608486031215611dcd57600080fd5b505081359360208301359350604090920135919050565b600060208284031215611df657600080fd5b611b1982611d75565b60008060408385031215611e1257600080fd5b611e1b83611cc4565b9150611daf60208401611cc4565b600181811c90821680611e3d57607f821691505b60208210811415611e5e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ec957611ec9611e99565b500290565b600082611eeb57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611f0357611f03611e99565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611fa257611fa2611e99565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561200d5784516001600160a01b031683529383019391830191600101611fe8565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122010102d611be1c610d1901f15800eb63fdf569451506928d1c2d99de35bed41f264736f6c63430008090033

Deployed Bytecode Sourcemap

21688:11573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7074:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9241:169;;;;;;;;;;-1:-1:-1;9241:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9241:169:0;1053:187:1;22765:63:0;;;;;;;;;;-1:-1:-1;22765:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21765:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1626:32:1;;;1608:51;;1596:2;1581:18;21765:51:0;1436:229:1;8194:108:0;;;;;;;;;;-1:-1:-1;8282:12:0;;8194:108;;;1816:25:1;;;1804:2;1789:18;8194:108:0;1670:177:1;28006:189:0;;;;;;;;;;-1:-1:-1;28006:189:0;;;;;:::i;:::-;;:::i;:::-;;26117:275;;;;;;;;;;-1:-1:-1;26117:275:0;;;;;:::i;:::-;;:::i;9892:492::-;;;;;;;;;;-1:-1:-1;9892:492:0;;;;;:::i;:::-;;:::i;21868:53::-;;;;;;;;;;;;21914:6;21868:53;;8036:93;;;;;;;;;;-1:-1:-1;8036:93:0;;8119:2;2720:36:1;;2708:2;2693:18;8036:93:0;2578:184:1;21823:38:0;;;;;;;;;;;;;;;22226:33;;;;;;;;;;-1:-1:-1;22226:33:0;;;;;;;;28205:126;;;;;;;;;;-1:-1:-1;28205:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;28295:28:0;28271:4;28295:28;;;:19;:28;;;;;;;;;28205:126;22483:28;;;;;;;;;;;;;;;;22306:30;;;;;;;;;;-1:-1:-1;22306:30:0;;;;;;;;;;;8365:127;;;;;;;;;;-1:-1:-1;8365:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8466:18:0;8439:7;8466:18;;;;;;;;;;;;8365:127;21999:40;;;;;;;;;;-1:-1:-1;21999:40:0;;;;-1:-1:-1;;;;;21999:40:0;;;2386:103;;;;;;;;;;;;;:::i;25318:121::-;;;;;;;;;;;;;:::i;26664:167::-;;;;;;;;;;-1:-1:-1;26664:167:0;;;;;:::i;:::-;;:::i;25447:95::-;;;;;;;;;;-1:-1:-1;25447:95:0;;;;;:::i;:::-;;:::i;27035:372::-;;;;;;;;;;-1:-1:-1;27035:372:0;;;;;:::i;:::-;;:::i;21928:64::-;;;;;;;;;;-1:-1:-1;21928:64:0;;;;-1:-1:-1;;;;;21928:64:0;;;25154:112;;;;;;;;;;;;;:::i;1735:87::-;;;;;;;;;;-1:-1:-1;1808:6:0;;-1:-1:-1;;;;;1808:6:0;1735:87;;22078:24;;;;;;;;;;-1:-1:-1;22078:24:0;;;;-1:-1:-1;;;;;22078:24:0;;;26927:100;;;;;;;;;;-1:-1:-1;26927:100:0;;;;;:::i;:::-;;:::i;7293:104::-;;;;;;;;;;;;;:::i;22379:24::-;;;;;;;;;;;;;;;;22518:25;;;;;;;;;;;;;;;;8705:175;;;;;;;;;;-1:-1:-1;8705:175:0;;;;;:::i;:::-;;:::i;22588:26::-;;;;;;;;;;;;;;;;22266:33;;;;;;;;;;-1:-1:-1;22266:33:0;;;;;;;;;;;27816:182;;;;;;;;;;-1:-1:-1;27816:182:0;;;;;:::i;:::-;;:::i;27415:393::-;;;;;;;;;;-1:-1:-1;27415:393:0;;;;;:::i;:::-;;:::i;26400:256::-;;;;;;;;;;-1:-1:-1;26400:256:0;;;;;:::i;:::-;;:::i;22111:35::-;;;;;;;;;;;;;;;;25612:497;;;;;;;;;;-1:-1:-1;25612:497:0;;;;;:::i;:::-;;:::i;22345:27::-;;;;;;;;;;;;;;;;8943:151;;;;;;;;;;-1:-1:-1;8943:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9059:18:0;;;9032:7;9059:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8943:151;22153:33;;;;;;;;;;;;;;;;22447:25;;;;;;;;;;;;;;;;22410:30;;;;;;;;;;;;;;;;2644:201;;;;;;;;;;-1:-1:-1;2644:201:0;;;;;:::i;:::-;;:::i;22550:31::-;;;;;;;;;;;;;;;;22193:24;;;;;;;;;;;;;;;;7074:100;7128:13;7161:5;7154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7074:100;:::o;9241:169::-;9324:4;9341:39;1191:10;9364:7;9373:6;9341:8;:39::i;:::-;-1:-1:-1;9398:4:0;9241:169;;;;:::o;28006:189::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;;;;;;;;;28142:9:::1;::::0;28111:41:::1;::::0;-1:-1:-1;;;;;28142:9:0;;::::1;::::0;28111:41;::::1;::::0;::::1;::::0;28142:9:::1;::::0;28111:41:::1;28163:9;:24:::0;;-1:-1:-1;;;;;;28163:24:0::1;-1:-1:-1::0;;;;;28163:24:0;;;::::1;::::0;;;::::1;::::0;;28006:189::o;26117:275::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;26254:4:::1;26246;26225:13;8282:12:::0;;;8194:108;26225:13:::1;:17;::::0;26241:1:::1;26225:17;:::i;:::-;26224:26;;;;:::i;:::-;26223:35;;;;:::i;:::-;26213:6;:45;;26191:142;;;::::0;-1:-1:-1;;;26191:142:0;;5437:2:1;26191:142:0::1;::::0;::::1;5419:21:1::0;5476:2;5456:18;;;5449:30;5515:34;5495:18;;;5488:62;-1:-1:-1;;;5566:18:1;;;5559:45;5621:19;;26191:142:0::1;5235:411:1::0;26191:142:0::1;26367:17;:6:::0;26377::::1;26367:17;:::i;:::-;26344:20;:40:::0;-1:-1:-1;26117:275:0:o;9892:492::-;10032:4;10049:36;10059:6;10067:9;10078:6;10049:9;:36::i;:::-;-1:-1:-1;;;;;10125:19:0;;10098:24;10125:19;;;:11;:19;;;;;;;;1191:10;10125:33;;;;;;;;10177:26;;;;10169:79;;;;-1:-1:-1;;;10169:79:0;;5853:2:1;10169:79:0;;;5835:21:1;5892:2;5872:18;;;5865:30;5931:34;5911:18;;;5904:62;-1:-1:-1;;;5982:18:1;;;5975:38;6030:19;;10169:79:0;5651:404:1;10169:79:0;10284:57;10293:6;1191:10;10334:6;10315:16;:25;10284:8;:57::i;:::-;-1:-1:-1;10372:4:0;;9892:492;-1:-1:-1;;;;9892:492:0:o;2386:103::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;2451:30:::1;2478:1;2451:18;:30::i;:::-;2386:103::o:0;25318:121::-;1808:6;;25370:4;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;-1:-1:-1;25387:14:0::1;:22:::0;;-1:-1:-1;;25387:22:0::1;::::0;;;25318:121;:::o;26664:167::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26777:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;26777:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26664:167::o;25447:95::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;25516:11:::1;:18:::0;;-1:-1:-1;;;;;;25516:18:0::1;-1:-1:-1::0;;;;;25516:18:0;;;::::1;::::0;;;::::1;::::0;;25447:95::o;27035:372::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;27171:9:::1;:19:::0;;;27201:15:::1;:31:::0;;;27243:10:::1;:21:::0;;;27256:8;27290:27:::1;27219:13:::0;27183:7;27290:27:::1;:::i;:::-;:38;;;;:::i;:::-;27275:12;:53:::0;;;27363:2:::1;-1:-1:-1::0;27347:18:0::1;27339:60;;;::::0;-1:-1:-1;;;27339:60:0;;6395:2:1;27339:60:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;27339:60:0::1;6193:353:1::0;27339:60:0::1;27035:372:::0;;;:::o;25154:112::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;25209:13:::1;:20:::0;;-1:-1:-1;;25240:18:0;;;;;25154:112::o;26927:100::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;26998:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;26998:21:0;;::::1;::::0;;;::::1;::::0;;26927:100::o;7293:104::-;7349:13;7382:7;7375:14;;;;;:::i;8705:175::-;8791:4;8808:42;1191:10;8832:9;8843:6;8808:9;:42::i;27816:182::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27901:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;27901:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27956:34;;1193:41:1;;;27956:34:0::1;::::0;1166:18:1;27956:34:0::1;;;;;;;27816:182:::0;;:::o;27415:393::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;27556:10:::1;:20:::0;;;27587:16:::1;:32:::0;;;27630:11:::1;:26:::0;;;27644:12;27685:29:::1;27606:13:::0;27569:7;27685:29:::1;:::i;:::-;:43;;;;:::i;:::-;27669:13;:59:::0;;;27764:2:::1;-1:-1:-1::0;27747:19:0::1;27739:61;;;::::0;-1:-1:-1;;;27739:61:0;;6395:2:1;27739:61:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;27739:61:0::1;6193:353:1::0;26400:256:0;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;26540:4:::1;26532;26511:13;8282:12:::0;;;8194:108;26511:13:::1;:17;::::0;26527:1:::1;26511:17;:::i;:::-;26510:26;;;;:::i;:::-;26509:35;;;;:::i;:::-;26499:6;:45;;26477:131;;;::::0;-1:-1:-1;;;26477:131:0;;6753:2:1;26477:131:0::1;::::0;::::1;6735:21:1::0;6792:2;6772:18;;;6765:30;6831:34;6811:18;;;6804:62;-1:-1:-1;;;6882:18:1;;;6875:34;6926:19;;26477:131:0::1;6551:400:1::0;26477:131:0::1;26631:17;:6:::0;26641::::1;26631:17;:::i;:::-;26619:9;:29:::0;-1:-1:-1;26400:256:0:o;25612:497::-;1808:6;;25720:4;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;25799:6:::1;25778:13;8282:12:::0;;;8194:108;25778:13:::1;:17;::::0;25794:1:::1;25778:17;:::i;:::-;25777:28;;;;:::i;:::-;25764:9;:41;;25742:144;;;::::0;-1:-1:-1;;;25742:144:0;;7158:2:1;25742:144:0::1;::::0;::::1;7140:21:1::0;7197:2;7177:18;;;7170:30;7236:34;7216:18;;;7209:62;-1:-1:-1;;;7287:18:1;;;7280:51;7348:19;;25742:144:0::1;6956:417:1::0;25742:144:0::1;25954:4;25933:13;8282:12:::0;;;8194:108;25933:13:::1;:17;::::0;25949:1:::1;25933:17;:::i;:::-;25932:26;;;;:::i;:::-;25919:9;:39;;25897:141;;;::::0;-1:-1:-1;;;25897:141:0;;7580:2:1;25897:141:0::1;::::0;::::1;7562:21:1::0;7619:2;7599:18;;;7592:30;7658:34;7638:18;;;7631:62;-1:-1:-1;;;7709:18:1;;;7702:50;7769:19;;25897:141:0::1;7378:416:1::0;25897:141:0::1;-1:-1:-1::0;26049:18:0::1;:30:::0;;;26097:4:::1;2026:1;25612:497:::0;;;:::o;2644:201::-;1808:6;;-1:-1:-1;;;;;1808:6:0;1191:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2733:22:0;::::1;2725:73;;;::::0;-1:-1:-1;;;2725:73:0;;8001:2:1;2725:73:0::1;::::0;::::1;7983:21:1::0;8040:2;8020:18;;;8013:30;8079:34;8059:18;;;8052:62;-1:-1:-1;;;8130:18:1;;;8123:36;8176:19;;2725:73:0::1;7799:402:1::0;2725:73:0::1;2809:28;2828:8;2809:18;:28::i;:::-;2644:201:::0;:::o;12733:380::-;-1:-1:-1;;;;;12869:19:0;;12861:68;;;;-1:-1:-1;;;12861:68:0;;8408:2:1;12861:68:0;;;8390:21:1;8447:2;8427:18;;;8420:30;8486:34;8466:18;;;8459:62;-1:-1:-1;;;8537:18:1;;;8530:34;8581:19;;12861:68:0;8206:400:1;12861:68:0;-1:-1:-1;;;;;12948:21:0;;12940:68;;;;-1:-1:-1;;;12940:68:0;;8813:2:1;12940:68:0;;;8795:21:1;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;-1:-1:-1;;;8942:18:1;;;8935:32;8984:19;;12940:68:0;8611:398:1;12940:68:0;-1:-1:-1;;;;;13021:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13073:32;;1816:25:1;;;13073:32:0;;1789:18:1;13073:32:0;;;;;;;12733:380;;;:::o;28339:3989::-;-1:-1:-1;;;;;28471:18:0;;28463:68;;;;-1:-1:-1;;;28463:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28550:16:0;;28542:64;;;;-1:-1:-1;;;28542:64:0;;;;;;;:::i;:::-;28623:11;28619:93;;28651:28;28667:4;28673:2;28677:1;28651:15;:28::i;28619:93::-;28728:14;;;;28724:1430;;;1808:6;;-1:-1:-1;;;;;28781:15:0;;;1808:6;;28781:15;;;;:49;;-1:-1:-1;1808:6:0;;-1:-1:-1;;;;;28817:13:0;;;1808:6;;28817:13;;28781:49;:86;;;;-1:-1:-1;;;;;;28851:16:0;;;;28781:86;:128;;;;-1:-1:-1;;;;;;28888:21:0;;28902:6;28888:21;;28781:128;:158;;;;-1:-1:-1;28931:8:0;;-1:-1:-1;;;28931:8:0;;;;28930:9;28781:158;28759:1384;;;28979:13;;;;;;;28974:223;;-1:-1:-1;;;;;29051:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;29080:23:0;;;;;;:19;:23;;;;;;;;29051:52;29017:160;;;;-1:-1:-1;;;29017:160:0;;10026:2:1;29017:160:0;;;10008:21:1;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:52;10146:18;;29017:160:0;9824:346:1;29017:160:0;29411:13;-1:-1:-1;;;;;29403:21:0;:4;-1:-1:-1;;;;;29403:21:0;;:82;;;;-1:-1:-1;;;;;;29450:35:0;;;;;;:31;:35;;;;;;;;29449:36;29403:82;29377:751;;;29572:20;;29562:6;:30;;29528:169;;;;-1:-1:-1;;;29528:169:0;;10377:2:1;29528:169:0;;;10359:21:1;10416:2;10396:18;;;10389:30;10455:34;10435:18;;;10428:62;-1:-1:-1;;;10506:18:1;;;10499:51;10567:19;;29528:169:0;10175:417:1;29528:169:0;29780:9;;-1:-1:-1;;;;;8466:18:0;;8439:7;8466:18;;;;;;;;;;;29754:22;;:6;:22;:::i;:::-;:35;;29720:140;;;;-1:-1:-1;;;29720:140:0;;10799:2:1;29720:140:0;;;10781:21:1;10838:2;10818:18;;;10811:30;-1:-1:-1;;;10857:18:1;;;10850:49;10916:18;;29720:140:0;10597:343:1;29720:140:0;29377:751;;;-1:-1:-1;;;;;29908:35:0;;;;;;:31;:35;;;;;;;;29903:225;;30028:9;;-1:-1:-1;;;;;8466:18:0;;8439:7;8466:18;;;;;;;;;;;30002:22;;:6;:22;:::i;:::-;:35;;29968:140;;;;-1:-1:-1;;;29968:140:0;;10799:2:1;29968:140:0;;;10781:21:1;10838:2;10818:18;;;10811:30;-1:-1:-1;;;10857:18:1;;;10850:49;10916:18;;29968:140:0;10597:343:1;29968:140:0;30215:4;30166:28;8466:18;;;;;;;;;;;30273;;30249:42;;;;;;;30322:35;;-1:-1:-1;30346:11:0;;;;;;;30322:35;:61;;;;-1:-1:-1;30375:8:0;;-1:-1:-1;;;30375:8:0;;;;30374:9;30322:61;:97;;;;;30406:13;-1:-1:-1;;;;;30400:19:0;:2;-1:-1:-1;;;;;30400:19:0;;30322:97;:140;;;;-1:-1:-1;;;;;;30437:25:0;;;;;;:19;:25;;;;;;;;30436:26;30322:140;:181;;;;-1:-1:-1;;;;;;30480:23:0;;;;;;:19;:23;;;;;;;;30479:24;30322:181;30304:313;;;30530:8;:15;;-1:-1:-1;;;;30530:15:0;-1:-1:-1;;;30530:15:0;;;30562:10;:8;:10::i;:::-;30589:8;:16;;-1:-1:-1;;;;30589:16:0;;;30304:313;30645:8;;-1:-1:-1;;;;;30755:25:0;;30629:12;30755:25;;;:19;:25;;;;;;30645:8;-1:-1:-1;;;30645:8:0;;;;;30644:9;;30755:25;;:52;;-1:-1:-1;;;;;;30784:23:0;;;;;;:19;:23;;;;;;;;30755:52;30751:100;;;-1:-1:-1;30834:5:0;30751:100;30863:12;30890:26;30931:20;30966:21;31080:7;31076:1199;;;31138:13;-1:-1:-1;;;;;31132:19:0;:2;-1:-1:-1;;;;;31132:19:0;;:40;;;;;31171:1;31155:13;;:17;31132:40;31128:727;;;31200:34;31230:3;31200:25;31211:13;;31200:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;31193:41;;31302:13;;31282:16;;31275:4;:23;;;;:::i;:::-;31274:41;;;;:::i;:::-;31253:62;;31371:13;;31357:10;;31350:4;:17;;;;:::i;:::-;31349:35;;;;:::i;:::-;31334:50;;31442:13;;31427:11;;31420:4;:18;;;;:::i;:::-;31419:36;;;;:::i;:::-;31403:52;;31128:727;;;31527:13;-1:-1:-1;;;;;31519:21:0;:4;-1:-1:-1;;;;;31519:21:0;;:41;;;;;31559:1;31544:12;;:16;31519:41;31515:340;;;31588:33;31617:3;31588:24;31599:12;;31588:6;:10;;:24;;;;:::i;:33::-;31581:40;;31688:12;;31669:15;;31662:4;:22;;;;:::i;:::-;31661:39;;;;:::i;:::-;31640:60;;31756:12;;31743:9;;31736:4;:16;;;;:::i;:::-;31735:33;;;;:::i;:::-;31720:48;;31825:12;;31811:10;;31804:4;:17;;;;:::i;:::-;31803:34;;;;:::i;:::-;31787:50;;31515:340;31875:7;;31871:90;;31903:42;31919:4;31933;31940;31903:15;:42::i;:::-;31979:22;;31975:128;;32022:65;32046:4;32053:13;32068:18;32022:15;:65::i;:::-;32122:17;;32119:114;;32190:11;;32159:58;;32183:4;;-1:-1:-1;;;;;32190:11:0;32203:13;32159:15;:58::i;:::-;32249:14;32259:4;32249:14;;:::i;:::-;;;31076:1199;32287:33;32303:4;32309:2;32313:6;32287:15;:33::i;:::-;28452:3876;;;;;;;28339:3989;;;:::o;3005:191::-;3098:6;;;-1:-1:-1;;;;;3115:17:0;;;-1:-1:-1;;;;;;3115:17:0;;;;;;;3148:40;;3098:6;;;3115:17;3098:6;;3148:40;;3079:16;;3148:40;3068:128;3005:191;:::o;10874:733::-;-1:-1:-1;;;;;11014:20:0;;11006:70;;;;-1:-1:-1;;;11006:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11095:23:0;;11087:71;;;;-1:-1:-1;;;11087:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11255:17:0;;11231:21;11255:17;;;;;;;;;;;11291:23;;;;11283:74;;;;-1:-1:-1;;;11283:74:0;;11277:2:1;11283:74:0;;;11259:21:1;11316:2;11296:18;;;11289:30;11355:34;11335:18;;;11328:62;-1:-1:-1;;;11406:18:1;;;11399:36;11452:19;;11283:74:0;11075:402:1;11283:74:0;-1:-1:-1;;;;;11393:17:0;;;:9;:17;;;;;;;;;;;11413:22;;;11393:42;;11457:20;;;;;;;;:30;;11429:6;;11393:9;11457:30;;11429:6;;11457:30;:::i;:::-;;;;;;;;11522:9;-1:-1:-1;;;;;11505:35:0;11514:6;-1:-1:-1;;;;;11505:35:0;;11533:6;11505:35;;;;1816:25:1;;1804:2;1789:18;;1670:177;11505:35:0;;;;;;;;10995:612;10874:733;;;:::o;32916:340::-;32999:4;32955:23;8466:18;;;;;;;;;;;;33016:59;;33057:7;32916:340::o;33016:59::-;33109:18;;:23;;33130:2;33109:23;:::i;:::-;33091:15;:41;33087:115;;;33167:18;;:23;;33188:2;33167:23;:::i;:::-;33149:41;;33087:115;33214:34;33232:15;33214:17;:34::i;17660:98::-;17718:7;17745:5;17749:1;17745;:5;:::i;:::-;17738:12;17660:98;-1:-1:-1;;;17660:98:0:o;18059:::-;18117:7;18144:5;18148:1;18144;:5;:::i;32336:572::-;32487:16;;;32501:1;32487:16;;;;;;;;32463:21;;32487:16;;;;;;;;;;-1:-1:-1;32487:16:0;32463:40;;32532:4;32514;32519:1;32514:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32514:23:0;;;:7;;;;;;;;;:23;32558:4;;32548:7;;32558:4;;;32548;;32558;;32548:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;32548:14:0;;;-1:-1:-1;;;;;32548:14:0;;;;;32575:62;32592:4;32607:15;32625:11;32575:8;:62::i;:::-;32850:9;;32676:224;;-1:-1:-1;;;32676:224:0;;-1:-1:-1;;;;;32676:15:0;:69;;;;;:224;;32760:11;;32786:1;;32831:4;;32850:9;;;;;32874:15;;32676:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32392:516;32336:572;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1852:180::-;1911:6;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;-1:-1:-1;2003:23:1;;1852:180;-1:-1:-1;1852:180:1:o;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:160::-;2832:20;;2888:13;;2881:21;2871:32;;2861:60;;2917:1;2914;2907:12;2932:254;2997:6;3005;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;:::-;3087:39;;3145:35;3176:2;3165:9;3161:18;3145:35;:::i;:::-;3135:45;;2932:254;;;;;:::o;3191:316::-;3268:6;3276;3284;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;-1:-1:-1;;3376:23:1;;;3446:2;3431:18;;3418:32;;-1:-1:-1;3497:2:1;3482:18;;;3469:32;;3191:316;-1:-1:-1;3191:316:1:o;3512:180::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:52;;;3637:1;3634;3627:12;3589:52;3660:26;3676:9;3660:26;:::i;3697:260::-;3765:6;3773;3826:2;3814:9;3805:7;3801:23;3797:32;3794:52;;;3842:1;3839;3832:12;3794:52;3865:29;3884:9;3865:29;:::i;:::-;3855:39;;3913:38;3947:2;3936:9;3932:18;3913:38;:::i;3962:380::-;4041:1;4037:12;;;;4084;;;4105:61;;4159:4;4151:6;4147:17;4137:27;;4105:61;4212:2;4204:6;4201:14;4181:18;4178:38;4175:161;;;4258:10;4253:3;4249:20;4246:1;4239:31;4293:4;4290:1;4283:15;4321:4;4318:1;4311:15;4175:161;;3962:380;;;:::o;4347:356::-;4549:2;4531:21;;;4568:18;;;4561:30;4627:34;4622:2;4607:18;;4600:62;4694:2;4679:18;;4347:356::o;4708:127::-;4769:10;4764:3;4760:20;4757:1;4750:31;4800:4;4797:1;4790:15;4824:4;4821:1;4814:15;4840:168;4880:7;4946:1;4942;4938:6;4934:14;4931:1;4928:21;4923:1;4916:9;4909:17;4905:45;4902:71;;;4953:18;;:::i;:::-;-1:-1:-1;4993:9:1;;4840:168::o;5013:217::-;5053:1;5079;5069:132;;5123:10;5118:3;5114:20;5111:1;5104:31;5158:4;5155:1;5148:15;5186:4;5183:1;5176:15;5069:132;-1:-1:-1;5215:9:1;;5013:217::o;6060:128::-;6100:3;6131:1;6127:6;6124:1;6121:13;6118:39;;;6137:18;;:::i;:::-;-1:-1:-1;6173:9:1;;6060:128::o;9014:401::-;9216:2;9198:21;;;9255:2;9235:18;;;9228:30;9294:34;9289:2;9274:18;;9267:62;-1:-1:-1;;;9360:2:1;9345:18;;9338:35;9405:3;9390:19;;9014:401::o;9420:399::-;9622:2;9604:21;;;9661:2;9641:18;;;9634:30;9700:34;9695:2;9680:18;;9673:62;-1:-1:-1;;;9766:2:1;9751:18;;9744:33;9809:3;9794:19;;9420:399::o;10945:125::-;10985:4;11013:1;11010;11007:8;11004:34;;;11018:18;;:::i;:::-;-1:-1:-1;11055:9:1;;10945:125::o;11614:127::-;11675:10;11670:3;11666:20;11663:1;11656:31;11706:4;11703:1;11696:15;11730:4;11727:1;11720:15;11746:980;12008:4;12056:3;12045:9;12041:19;12087:6;12076:9;12069:25;12113:2;12151:6;12146:2;12135:9;12131:18;12124:34;12194:3;12189:2;12178:9;12174:18;12167:31;12218:6;12253;12247:13;12284:6;12276;12269:22;12322:3;12311:9;12307:19;12300:26;;12361:2;12353:6;12349:15;12335:29;;12382:1;12392:195;12406:6;12403:1;12400:13;12392:195;;;12471:13;;-1:-1:-1;;;;;12467:39:1;12455:52;;12562:15;;;;12527:12;;;;12503:1;12421:9;12392:195;;;-1:-1:-1;;;;;;;12643:32:1;;;;12638:2;12623:18;;12616:60;-1:-1:-1;;;12707:3:1;12692:19;12685:35;12604:3;11746:980;-1:-1:-1;;;11746:980:1:o

Swarm Source

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