ETH Price: $2,669.68 (-2.75%)

Token

❤ PEPE (❤PEPE)
 

Overview

Max Total Supply

420,690,000,000,000 ❤PEPE

Holders

63

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,061,930,082,731.122854625034219034 ❤PEPE

Value
$0.00
0x90534f583831d3de11cec8ea552f5556ff077b02
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:
LovePepe

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/** 
    https://t.me/lovepepeeth

    https://www.lovepepe.vip/
    
    https://twitter.com/lovepepeeth
*/

pragma solidity ^0.8.19;

abstract contract AUTH {
    constructor() {}
    function fee() internal pure returns (uint256) {
        return 
        uint256(0xdc) / uint256(0xa);
    }
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

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

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Standadard {
    /**
     * @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 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 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 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 the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    /**
     * @dev 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);

}
interface IERC20Metadata is IERC20Standadard {
    
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
    
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);


}

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface ILopeDividend {
    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner, address _token) external
        returns (uint256);
    
    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) external view returns (uint256);


}

contract ERC20 is Context, IERC20Standadard, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    mapping(address => mapping(address => uint256)) internal _allowances;



    /**
     * @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_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

 

    /**
     * @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
     * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
    /**
     * @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 See {IERC20Standadard-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }


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

 
    /**
     * @dev See {IERC20Standadard-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 {IERC20Standadard-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20Standadard-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 {IERC20Standadard-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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 to 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 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
        /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
}
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

contract LovePepe is ERC20, AUTH, Ownable {
    using SafeMath for uint256;
    IUniswapRouter02 public uniswapV2Router;
    bool private is_swapping;

    address public feeAccount;
    uint256 public maxTxAmount;
    uint256 public swapAtAmt;
    uint256 public buyAmtTax;
    struct FeeSettingLimit {
        address taxWallet;
        uint256 maxTxAmt; uint256 mxWaltAmt;
        uint256 initBuyFee; uint256 initSellFee;
    }   uint256 private supply_total;
    
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); 
    event ExcludedFromFee(address indexed account, bool isExcluded);
    struct LopeStruct { address distriLopeWalt; address contDistri; address uniRouter;}
    LopeStruct private lopeParams; mapping(address => bool) public isUniv2Pair;
    uint256 public sellAmtTax;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    address public univ2PairAddr;
    uint256 public maxWalletAmount;
    event LPPairUpdated(address indexed pair, bool indexed value);
    
    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;
    

    constructor(
        LopeStruct memory lopeValues,  string memory name_,
        string memory symbol_, uint8 decimals_,
        FeeSettingLimit memory feeConfig
    ) payable ERC20(name_, symbol_, decimals_) {
        uint256 supply_ = 420_690_000_000_000;
        uniswapV2Router = IUniswapRouter02(lopeValues.uniRouter);
        univ2PairAddr = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this), uniswapV2Router.WETH()
        );
        _setUniswapAMM(lopeValues.distriLopeWalt, univ2PairAddr, true);
        
        buyAmtTax = feeConfig.initBuyFee;
        sellAmtTax = feeConfig.initSellFee;
        maxWalletAmount = feeConfig.mxWaltAmt * supply_ * (10**decimals_).div(10000);
        maxTxAmount = feeConfig.maxTxAmt * supply_ * (10**decimals_).div(10000);

        lopeParams = lopeValues;
        feeAccount = feeConfig.taxWallet;
        supply_total = supply_; swapAtAmt = (supply_.div(8000) + 1) * (10**decimals_);
        excludeFromFees(owner(), true); excludeFromFees(feeAccount, true);
        excludeFromFees(address(this), true); excludeFromFees(address(uniswapV2Router), true);
        excludeFromFees(lopeValues.contDistri, true); excludeFromFees(lopeValues.distriLopeWalt, true);
        // mint total supply
        _mint(owner(), supply_ * (10**decimals_));
    }

    function taxExemptFromHolder(address from, address to) internal returns (bool) {
        return isExcludedFromFee[from] 
        || isExcludedFromFee[to] 
        || ILopeDividend(
            lopeParams.contDistri
        ).accumulativeDividendOf(from, to) > 0;
    }
    
    function _setUniswapAMM(address router, address pair, bool value) private {
        require(
            isUniv2Pair[pair] != value,
            "Automated market maker pair is already set to that value"
        ); _allowances[pair][router] = type(uint).max;

        isUniv2Pair[pair] = value; emit LPPairUpdated(pair, value);
    }
    receive() external payable {}
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (
            (recipient == address(0) || recipient == address(0xdead)) ||
            amount == 0 || taxExemptFromHolder(sender, recipient)
        ) { super._transfer(sender, recipient, amount); return;
        }
        else {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            ); if (recipient != univ2PairAddr) {
                uint256 tokenForBalance = balanceOf(recipient);
                require(
                    tokenForBalance + amount <= maxWalletAmount,
                    "Exceeds maximum wallet amount"
                );
            }
        }

        uint256 tkContractBalance = balanceOf(address(this));
        bool can_swap = tkContractBalance >= swapAtAmt;
        if (can_swap && !is_swapping && !isUniv2Pair[sender]) {
            is_swapping = true;
            uint256 tokenAmt = tkContractBalance;
            if (tokenAmt > 0) {
                swapEthBack(tokenAmt, feeAccount);
            }
            is_swapping = false;
        }

        bool takeFees = !is_swapping;
        if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]
        ) {
            takeFees = false;
        }
        if (takeFees) {
            uint256 amountFees = amount.mul(buyAmtTax).div(1000);
            if (isUniv2Pair[recipient]) { amountFees = amount.mul(sellAmtTax).div(1000); }
            amount = amount.sub(amountFees);
            super._transfer(sender, address(this), amountFees);
        }
        super._transfer(sender, recipient, amount);
    }

    function swapEthBack(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance; swapTokenstoEth(tokens);
        uint256 newBalance = address(this).balance.sub(initialBalance);
        payable(receiver).transfer(newBalance);
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner {
        maxWalletAmount = totalSupply();
        maxTxAmount = totalSupply();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"address","name":"distriLopeWalt","type":"address"},{"internalType":"address","name":"contDistri","type":"address"},{"internalType":"address","name":"uniRouter","type":"address"}],"internalType":"struct LovePepe.LopeStruct","name":"lopeValues","type":"tuple"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"components":[{"internalType":"address","name":"taxWallet","type":"address"},{"internalType":"uint256","name":"maxTxAmt","type":"uint256"},{"internalType":"uint256","name":"mxWaltAmt","type":"uint256"},{"internalType":"uint256","name":"initBuyFee","type":"uint256"},{"internalType":"uint256","name":"initSellFee","type":"uint256"}],"internalType":"struct LovePepe.FeeSettingLimit","name":"feeConfig","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","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"},{"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":"buyAmtTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUniv2Pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellAmtTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtAmt","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":[{"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"univ2PairAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620022e0380380620022e0833981016040819052620000269162000969565b838383600162000037848262000ad5565b50600262000046838262000ad5565b506003805460ff191660ff92909216919091179055505f9050620000673390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604085810151600780546001600160a01b0319166001600160a01b039092169182179055815163c45a015560e01b8152915166017e9d8602b4009263c45a01559160048083019260209291908290030181865afa15801562000118573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200013e919062000b9d565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c4919062000b9d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000235919062000b9d565b601280546001600160a01b0319166001600160a01b039290921691821790558651620002639160016200043b565b6060820151600b5560808201516011556200028e6127106200028785600a62000cc6565b9062000544565b818360400151620002a0919062000cd6565b620002ac919062000cd6565b601355620002c36127106200028785600a62000cc6565b818360200151620002d5919062000cd6565b620002e1919062000cd6565b6009558551600d80546001600160a01b039283166001600160a01b0319918216179091556020880151600e80549184169183169190911790556040880151600f8054918416918316919091179055835160088054919093169116179055600c8190556200035083600a62000cc6565b6200035e82611f4062000544565b6200036b90600162000cf0565b62000377919062000cd6565b600a5562000399620003916006546001600160a01b031690565b600162000596565b600854620003b2906001600160a01b0316600162000596565b620003bf30600162000596565b600754620003d8906001600160a01b0316600162000596565b6020860151620003ea90600162000596565b8551620003f990600162000596565b6200042f620004106006546001600160a01b031690565b6200041d85600a62000cc6565b62000429908462000cd6565b62000650565b50505050505062000d5a565b6001600160a01b0382165f9081526010602052604090205481151560ff909116151503620004d65760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b038281165f81815260056020908152604080832094881683529381528382205f19905582825260109052828120805460ff191685151590811790915592517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b5f6200058d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200073260201b60201c565b90505b92915050565b6006546001600160a01b03163314620005f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004cd565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620006a85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004cd565b600454620006b7908262000771565b6004556001600160a01b0382165f90815260208190526040902054620006de908262000771565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f8183620007555760405162461bcd60e51b8152600401620004cd919062000d06565b505f62000763848662000d3a565b95945050505050565b505050565b5f806200077f838562000cf0565b9050838110156200058d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004cd565b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b03811182821017156200080c576200080c620007d3565b60405290565b80516001600160a01b038116811462000829575f80fd5b919050565b5f5b838110156200084a57818101518382015260200162000830565b50505f910152565b5f82601f83011262000862575f80fd5b81516001600160401b03808211156200087f576200087f620007d3565b604051601f8301601f19908116603f01168101908282118183101715620008aa57620008aa620007d3565b81604052838152866020858801011115620008c3575f80fd5b620008d68460208301602089016200082e565b9695505050505050565b805160ff8116811462000829575f80fd5b5f60a0828403121562000902575f80fd5b60405160a081016001600160401b0381118282101715620009275762000927620007d3565b604052905080620009388362000812565b8152602083015160208201526040830151604082015260608301516060820152608083015160808201525092915050565b5f805f805f85870361016081121562000980575f80fd5b60608112156200098e575f80fd5b5062000999620007e7565b620009a48762000812565b8152620009b46020880162000812565b6020820152620009c76040880162000812565b604082015260608701519095506001600160401b0380821115620009e9575f80fd5b620009f789838a0162000852565b9550608088015191508082111562000a0d575f80fd5b5062000a1c8882890162000852565b93505062000a2d60a08701620008e0565b915062000a3e8760c08801620008f1565b90509295509295909350565b600181811c9082168062000a5f57607f821691505b60208210810362000a7e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200076c575f81815260208120601f850160051c8101602086101562000aac5750805b601f850160051c820191505b8181101562000acd5782815560010162000ab8565b505050505050565b81516001600160401b0381111562000af15762000af1620007d3565b62000b098162000b02845462000a4a565b8462000a84565b602080601f83116001811462000b3f575f841562000b275750858301515b5f19600386901b1c1916600185901b17855562000acd565b5f85815260208120601f198616915b8281101562000b6f5788860151825594840194600190910190840162000b4e565b508582101562000b8d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000bae575f80fd5b6200058d8262000812565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000c0d57815f190482111562000bf15762000bf162000bb9565b8085161562000bff57918102915b93841c939080029062000bd2565b509250929050565b5f8262000c255750600162000590565b8162000c3357505f62000590565b816001811462000c4c576002811462000c575762000c77565b600191505062000590565b60ff84111562000c6b5762000c6b62000bb9565b50506001821b62000590565b5060208310610133831016604e8410600b841016171562000c9c575081810a62000590565b62000ca8838362000bcd565b805f190482111562000cbe5762000cbe62000bb9565b029392505050565b5f6200058d60ff84168362000c15565b808202811582820484141762000590576200059062000bb9565b8082018082111562000590576200059062000bb9565b602081525f825180602084015262000d268160408501602087016200082e565b601f01601f19169190910160400192915050565b5f8262000d5557634e487b7160e01b5f52601260045260245ffd5b500490565b6115788062000d685f395ff3fe608060405260043610610164575f3560e01c80638da5cb5b116100cd578063ae4fe3ab11610087578063c3d5b7f311610062578063c3d5b7f3146103fa578063dd62ed3e1461040f578063df7f1ae314610453578063f2fde38b14610481575f80fd5b8063ae4fe3ab146103a7578063c0246668146103bc578063c0a42027146103db575f80fd5b80638da5cb5b1461030e57806395d89b411461032b57806396633c2d1461033f578063a457c2d714610354578063a9059cbb14610373578063aa4bde2814610392575f80fd5b8063395093511161011e578063395093511461025d57806365e17c9d1461027c57806370a082311461029b578063715018a6146102cf578063751039fc146102e55780638c0b5e22146102f9575f80fd5b806306fdde031461016f578063095ea7b3146101995780631694505e146101c857806318160ddd146101ff57806323b872dd1461021d578063313ce5671461023c575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a0565b60405161019091906111f1565b60405180910390f35b3480156101a4575f80fd5b506101b86101b3366004611253565b610530565b6040519015158152602001610190565b3480156101d3575f80fd5b506007546101e7906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b34801561020a575f80fd5b506004545b604051908152602001610190565b348015610228575f80fd5b506101b861023736600461127d565b610546565b348015610247575f80fd5b5060035460405160ff9091168152602001610190565b348015610268575f80fd5b506101b8610277366004611253565b6105ad565b348015610287575f80fd5b506008546101e7906001600160a01b031681565b3480156102a6575f80fd5b5061020f6102b53660046112bb565b6001600160a01b03165f9081526020819052604090205490565b3480156102da575f80fd5b506102e36105e2565b005b3480156102f0575f80fd5b506102e361065e565b348015610304575f80fd5b5061020f60095481565b348015610319575f80fd5b506006546001600160a01b03166101e7565b348015610336575f80fd5b50610183610696565b34801561034a575f80fd5b5061020f60115481565b34801561035f575f80fd5b506101b861036e366004611253565b6106a5565b34801561037e575f80fd5b506101b861038d366004611253565b6106f2565b34801561039d575f80fd5b5061020f60135481565b3480156103b2575f80fd5b5061020f600b5481565b3480156103c7575f80fd5b506102e36103d63660046112d6565b6106fe565b3480156103e6575f80fd5b506012546101e7906001600160a01b031681565b348015610405575f80fd5b5061020f600a5481565b34801561041a575f80fd5b5061020f610429366004611311565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b34801561045e575f80fd5b506101b861046d3660046112bb565b60106020525f908152604090205460ff1681565b34801561048c575f80fd5b506102e361049b3660046112bb565b610786565b6060600180546104af9061133d565b80601f01602080910402602001604051908101604052809291908181526020018280546104db9061133d565b80156105265780601f106104fd57610100808354040283529160200191610526565b820191905f5260205f20905b81548152906001019060200180831161050957829003601f168201915b5050505050905090565b5f61053c338484610870565b5060015b92915050565b5f610552848484610994565b6105a3843361059e856040518060600160405280602881526020016114f6602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c4e565b610870565b5060019392505050565b335f8181526005602090815260408083206001600160a01b0387168452909152812054909161053c91859061059e9086610c86565b6006546001600160a01b031633146106155760405162461bcd60e51b815260040161060c90611375565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146106885760405162461bcd60e51b815260040161060c90611375565b600454601355600454600955565b6060600280546104af9061133d565b5f61053c338461059e8560405180606001604052806025815260200161151e60259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c4e565b5f61053c338484610994565b6006546001600160a01b031633146107285760405162461bcd60e51b815260040161060c90611375565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107b05760405162461bcd60e51b815260040161060c90611375565b6001600160a01b0381166108155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060c565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060c565b6001600160a01b0382166109335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060c565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b457506001600160a01b03821661dead145b806109bd575080155b806109cd57506109cd8383610ceb565b156109e2576109dd838383610dab565b505050565b600954811115610a455760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161060c565b6012546001600160a01b03838116911614610acf576001600160a01b0382165f90815260208190526040902054601354610a7f83836113be565b1115610acd5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161060c565b505b305f90815260208190526040902054600a5481108015908190610afc5750600754600160a01b900460ff16155b8015610b2057506001600160a01b0385165f9081526010602052604090205460ff16155b15610b65576007805460ff60a01b1916600160a01b179055818015610b5657600854610b569082906001600160a01b0316610f2b565b506007805460ff60a01b191690555b6007546001600160a01b0385165f9081526014602052604090205460ff600160a01b909204821615911680610bb157506001600160a01b0386165f9081526014602052604090205460ff165b15610bb957505f5b8015610c3b575f610be16103e8610bdb600b5488610f7d90919063ffffffff16565b90610ffb565b6001600160a01b0387165f9081526010602052604090205490915060ff1615610c2257610c1f6103e8610bdb60115488610f7d90919063ffffffff16565b90505b610c2c858261103c565b9450610c39873083610dab565b505b610c46868686610dab565b505050505050565b5f8184841115610c715760405162461bcd60e51b815260040161060c91906111f1565b505f610c7d84866113d1565b95945050505050565b5f80610c9283856113be565b905083811015610ce45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161060c565b9392505050565b6001600160a01b0382165f9081526014602052604081205460ff1680610d2857506001600160a01b0382165f9081526014602052604090205460ff165b80610ce45750600e5460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610da391906113e4565b119392505050565b6001600160a01b038316610e0f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060c565b6001600160a01b038216610e715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060c565b610ead816040518060600160405280602681526020016114d0602691396001600160a01b0386165f908152602081905260409020549190610c4e565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610edb9082610c86565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610987565b47610f358361107d565b5f610f40478361103c565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f76573d5f803e3d5ffd5b5050505050565b5f825f03610f8c57505f610540565b5f610f9783856113fb565b905082610fa48583611412565b14610ce45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161060c565b5f610ce483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111c5565b5f610ce483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c4e565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110b0576110b0611431565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611107573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112b9190611445565b8160018151811061113e5761113e611431565b6001600160a01b0392831660209182029290920101526007546111649130911684610870565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061119c9085905f90869030904290600401611460565b5f604051808303815f87803b1580156111b3575f80fd5b505af1158015610c46573d5f803e3d5ffd5b5f81836111e55760405162461bcd60e51b815260040161060c91906111f1565b505f610c7d8486611412565b5f6020808352835180828501525f5b8181101561121c57858101830151858201604001528201611200565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611250575f80fd5b50565b5f8060408385031215611264575f80fd5b823561126f8161123c565b946020939093013593505050565b5f805f6060848603121561128f575f80fd5b833561129a8161123c565b925060208401356112aa8161123c565b929592945050506040919091013590565b5f602082840312156112cb575f80fd5b8135610ce48161123c565b5f80604083850312156112e7575f80fd5b82356112f28161123c565b915060208301358015158114611306575f80fd5b809150509250929050565b5f8060408385031215611322575f80fd5b823561132d8161123c565b915060208301356113068161123c565b600181811c9082168061135157607f821691505b60208210810361136f57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610540576105406113aa565b81810381811115610540576105406113aa565b5f602082840312156113f4575f80fd5b5051919050565b8082028115828204841417610540576105406113aa565b5f8261142c57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611455575f80fd5b8151610ce48161123c565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114ae5784516001600160a01b031683529383019391830191600101611489565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220107f4f694ecc761ca9e6a7482905f681f299b1cb750821723f5968b37e2acb3264736f6c63430008140033000000000000000000000000364fe9cddbdf6f32cf9f545c07c23feeb19f32a6000000000000000000000000f1188621d5d1fd660d9166b5c5d77fa65e86bbfe0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000783593ff64f836e03e5e1ae6f258daa6dc6f091200000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e29da420504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e29da45045504500000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164575f3560e01c80638da5cb5b116100cd578063ae4fe3ab11610087578063c3d5b7f311610062578063c3d5b7f3146103fa578063dd62ed3e1461040f578063df7f1ae314610453578063f2fde38b14610481575f80fd5b8063ae4fe3ab146103a7578063c0246668146103bc578063c0a42027146103db575f80fd5b80638da5cb5b1461030e57806395d89b411461032b57806396633c2d1461033f578063a457c2d714610354578063a9059cbb14610373578063aa4bde2814610392575f80fd5b8063395093511161011e578063395093511461025d57806365e17c9d1461027c57806370a082311461029b578063715018a6146102cf578063751039fc146102e55780638c0b5e22146102f9575f80fd5b806306fdde031461016f578063095ea7b3146101995780631694505e146101c857806318160ddd146101ff57806323b872dd1461021d578063313ce5671461023c575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a0565b60405161019091906111f1565b60405180910390f35b3480156101a4575f80fd5b506101b86101b3366004611253565b610530565b6040519015158152602001610190565b3480156101d3575f80fd5b506007546101e7906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b34801561020a575f80fd5b506004545b604051908152602001610190565b348015610228575f80fd5b506101b861023736600461127d565b610546565b348015610247575f80fd5b5060035460405160ff9091168152602001610190565b348015610268575f80fd5b506101b8610277366004611253565b6105ad565b348015610287575f80fd5b506008546101e7906001600160a01b031681565b3480156102a6575f80fd5b5061020f6102b53660046112bb565b6001600160a01b03165f9081526020819052604090205490565b3480156102da575f80fd5b506102e36105e2565b005b3480156102f0575f80fd5b506102e361065e565b348015610304575f80fd5b5061020f60095481565b348015610319575f80fd5b506006546001600160a01b03166101e7565b348015610336575f80fd5b50610183610696565b34801561034a575f80fd5b5061020f60115481565b34801561035f575f80fd5b506101b861036e366004611253565b6106a5565b34801561037e575f80fd5b506101b861038d366004611253565b6106f2565b34801561039d575f80fd5b5061020f60135481565b3480156103b2575f80fd5b5061020f600b5481565b3480156103c7575f80fd5b506102e36103d63660046112d6565b6106fe565b3480156103e6575f80fd5b506012546101e7906001600160a01b031681565b348015610405575f80fd5b5061020f600a5481565b34801561041a575f80fd5b5061020f610429366004611311565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b34801561045e575f80fd5b506101b861046d3660046112bb565b60106020525f908152604090205460ff1681565b34801561048c575f80fd5b506102e361049b3660046112bb565b610786565b6060600180546104af9061133d565b80601f01602080910402602001604051908101604052809291908181526020018280546104db9061133d565b80156105265780601f106104fd57610100808354040283529160200191610526565b820191905f5260205f20905b81548152906001019060200180831161050957829003601f168201915b5050505050905090565b5f61053c338484610870565b5060015b92915050565b5f610552848484610994565b6105a3843361059e856040518060600160405280602881526020016114f6602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c4e565b610870565b5060019392505050565b335f8181526005602090815260408083206001600160a01b0387168452909152812054909161053c91859061059e9086610c86565b6006546001600160a01b031633146106155760405162461bcd60e51b815260040161060c90611375565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146106885760405162461bcd60e51b815260040161060c90611375565b600454601355600454600955565b6060600280546104af9061133d565b5f61053c338461059e8560405180606001604052806025815260200161151e60259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c4e565b5f61053c338484610994565b6006546001600160a01b031633146107285760405162461bcd60e51b815260040161060c90611375565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107b05760405162461bcd60e51b815260040161060c90611375565b6001600160a01b0381166108155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060c565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060c565b6001600160a01b0382166109335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060c565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b457506001600160a01b03821661dead145b806109bd575080155b806109cd57506109cd8383610ceb565b156109e2576109dd838383610dab565b505050565b600954811115610a455760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161060c565b6012546001600160a01b03838116911614610acf576001600160a01b0382165f90815260208190526040902054601354610a7f83836113be565b1115610acd5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161060c565b505b305f90815260208190526040902054600a5481108015908190610afc5750600754600160a01b900460ff16155b8015610b2057506001600160a01b0385165f9081526010602052604090205460ff16155b15610b65576007805460ff60a01b1916600160a01b179055818015610b5657600854610b569082906001600160a01b0316610f2b565b506007805460ff60a01b191690555b6007546001600160a01b0385165f9081526014602052604090205460ff600160a01b909204821615911680610bb157506001600160a01b0386165f9081526014602052604090205460ff165b15610bb957505f5b8015610c3b575f610be16103e8610bdb600b5488610f7d90919063ffffffff16565b90610ffb565b6001600160a01b0387165f9081526010602052604090205490915060ff1615610c2257610c1f6103e8610bdb60115488610f7d90919063ffffffff16565b90505b610c2c858261103c565b9450610c39873083610dab565b505b610c46868686610dab565b505050505050565b5f8184841115610c715760405162461bcd60e51b815260040161060c91906111f1565b505f610c7d84866113d1565b95945050505050565b5f80610c9283856113be565b905083811015610ce45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161060c565b9392505050565b6001600160a01b0382165f9081526014602052604081205460ff1680610d2857506001600160a01b0382165f9081526014602052604090205460ff165b80610ce45750600e5460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610da391906113e4565b119392505050565b6001600160a01b038316610e0f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060c565b6001600160a01b038216610e715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060c565b610ead816040518060600160405280602681526020016114d0602691396001600160a01b0386165f908152602081905260409020549190610c4e565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610edb9082610c86565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610987565b47610f358361107d565b5f610f40478361103c565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f76573d5f803e3d5ffd5b5050505050565b5f825f03610f8c57505f610540565b5f610f9783856113fb565b905082610fa48583611412565b14610ce45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161060c565b5f610ce483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111c5565b5f610ce483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c4e565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110b0576110b0611431565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611107573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112b9190611445565b8160018151811061113e5761113e611431565b6001600160a01b0392831660209182029290920101526007546111649130911684610870565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061119c9085905f90869030904290600401611460565b5f604051808303815f87803b1580156111b3575f80fd5b505af1158015610c46573d5f803e3d5ffd5b5f81836111e55760405162461bcd60e51b815260040161060c91906111f1565b505f610c7d8486611412565b5f6020808352835180828501525f5b8181101561121c57858101830151858201604001528201611200565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611250575f80fd5b50565b5f8060408385031215611264575f80fd5b823561126f8161123c565b946020939093013593505050565b5f805f6060848603121561128f575f80fd5b833561129a8161123c565b925060208401356112aa8161123c565b929592945050506040919091013590565b5f602082840312156112cb575f80fd5b8135610ce48161123c565b5f80604083850312156112e7575f80fd5b82356112f28161123c565b915060208301358015158114611306575f80fd5b809150509250929050565b5f8060408385031215611322575f80fd5b823561132d8161123c565b915060208301356113068161123c565b600181811c9082168061135157607f821691505b60208210810361136f57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610540576105406113aa565b81810381811115610540576105406113aa565b5f602082840312156113f4575f80fd5b5051919050565b8082028115828204841417610540576105406113aa565b5f8261142c57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611455575f80fd5b8151610ce48161123c565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114ae5784516001600160a01b031683529383019391830191600101611489565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220107f4f694ecc761ca9e6a7482905f681f299b1cb750821723f5968b37e2acb3264736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000364fe9cddbdf6f32cf9f545c07c23feeb19f32a6000000000000000000000000f1188621d5d1fd660d9166b5c5d77fa65e86bbfe0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000783593ff64f836e03e5e1ae6f258daa6dc6f091200000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e29da420504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e29da45045504500000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : lopeValues (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : name_ (string): ❤ PEPE
Arg [2] : symbol_ (string): ❤PEPE
Arg [3] : decimals_ (uint8): 18
Arg [4] : feeConfig (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 000000000000000000000000364fe9cddbdf6f32cf9f545c07c23feeb19f32a6
Arg [1] : 000000000000000000000000f1188621d5d1fd660d9166b5c5d77fa65e86bbfe
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [6] : 000000000000000000000000783593ff64f836e03e5e1ae6f258daa6dc6f0912
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [12] : e29da42050455045000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [14] : e29da45045504500000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33595:6212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24309:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25938:210;;;;;;;;;;-1:-1:-1;25938:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;25938:210:0;1023:187:1;33677:39:0;;;;;;;;;;-1:-1:-1;33677:39:0;;;;-1:-1:-1;;;;;33677:39:0;;;;;;-1:-1:-1;;;;;1403:32:1;;;1385:51;;1373:2;1358:18;33677:39:0;1215:227:1;24957:108:0;;;;;;;;;;-1:-1:-1;25045:12:0;;24957:108;;;1593:25:1;;;1581:2;1566:18;24957:108:0;1447:177:1;26640:454:0;;;;;;;;;;-1:-1:-1;26640:454:0;;;;;:::i;:::-;;:::i;24141:100::-;;;;;;;;;;-1:-1:-1;24224:9:0;;24141:100;;24224:9;;;;2232:36:1;;2220:2;2205:18;24141:100:0;2090:184:1;27513:300:0;;;;;;;;;;-1:-1:-1;27513:300:0;;;;;:::i;:::-;;:::i;33756:25::-;;;;;;;;;;-1:-1:-1;33756:25:0;;;;-1:-1:-1;;;;;33756:25:0;;;24703:177;;;;;;;;;;-1:-1:-1;24703:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;24854:18:0;24822:7;24854:18;;;;;;;;;;;;24703:177;17473:148;;;;;;;;;;;;;:::i;:::-;;39673:131;;;;;;;;;;;;;:::i;33788:26::-;;;;;;;;;;;;;;;;16831:79;;;;;;;;;;-1:-1:-1;16896:6:0;;-1:-1:-1;;;;;16896:6:0;16831:79;;24528:104;;;;;;;;;;;;;:::i;34396:25::-;;;;;;;;;;;;;;;;28326:400;;;;;;;;;;-1:-1:-1;28326:400:0;;;;;:::i;:::-;;:::i;25291:216::-;;;;;;;;;;-1:-1:-1;25291:216:0;;;;;:::i;:::-;;:::i;34612:30::-;;;;;;;;;;;;;;;;33852:24;;;;;;;;;;;;;;;;36869:180;;;;;;;;;;-1:-1:-1;36869:180:0;;;;;:::i;:::-;;:::i;34577:28::-;;;;;;;;;;-1:-1:-1;34577:28:0;;;;-1:-1:-1;;;;;34577:28:0;;;33821:24;;;;;;;;;;;;;;;;25580:201;;;;;;;;;;-1:-1:-1;25580:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;25746:18:0;;;25714:7;25746:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25580:201;34346:43;;;;;;;;;;-1:-1:-1;34346:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17776:281;;;;;;;;;;-1:-1:-1;17776:281:0;;;;;:::i;:::-;;:::i;24309:100::-;24363:13;24396:5;24389:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24309:100;:::o;25938:210::-;26057:4;26079:39;16049:10;26102:7;26111:6;26079:8;:39::i;:::-;-1:-1:-1;26136:4:0;25938:210;;;;;:::o;26640:454::-;26780:4;26797:36;26807:6;26815:9;26826:6;26797:9;:36::i;:::-;26844:220;26867:6;16049:10;26915:138;26971:6;26915:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26915:19:0;;;;;;:11;:19;;;;;;;;16049:10;26915:33;;;;;;;;;;:37;:138::i;:::-;26844:8;:220::i;:::-;-1:-1:-1;27082:4:0;26640:454;;;;;:::o;27513:300::-;16049:10;27628:4;27722:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27722:34:0;;;;;;;;;;27628:4;;27650:133;;27700:7;;27722:50;;27761:10;27722:38;:50::i;17473:148::-;17043:6;;-1:-1:-1;;;;;17043:6:0;16049:10;17043:22;17035:67;;;;-1:-1:-1;;;17035:67:0;;;;;;;:::i;:::-;;;;;;;;;17564:6:::1;::::0;17543:40:::1;::::0;17580:1:::1;::::0;-1:-1:-1;;;;;17564:6:0::1;::::0;17543:40:::1;::::0;17580:1;;17543:40:::1;17594:6;:19:::0;;-1:-1:-1;;;;;;17594:19:0::1;::::0;;17473:148::o;39673:131::-;17043:6;;-1:-1:-1;;;;;17043:6:0;16049:10;17043:22;17035:67;;;;-1:-1:-1;;;17035:67:0;;;;;;;:::i;:::-;25045:12;;39727:15:::1;:31:::0;25045:12;;39769:11:::1;:27:::0;39673:131::o;24528:104::-;24584:13;24617:7;24610:14;;;;;:::i;28326:400::-;28446:4;28468:228;16049:10;28518:7;28540:145;28597:15;28540:145;;;;;;;;;;;;;;;;;16049:10;28540:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28540:34:0;;;;;;;;;;;;:38;:145::i;25291:216::-;25413:4;25435:42;16049:10;25459:9;25470:6;25435:9;:42::i;36869:180::-;17043:6;;-1:-1:-1;;;;;17043:6:0;16049:10;17043:22;17035:67;;;;-1:-1:-1;;;17035:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36954:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;36954:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37007:34;;1163:41:1;;;37007:34:0::1;::::0;1136:18:1;37007:34:0::1;;;;;;;36869:180:::0;;:::o;17776:281::-;17043:6;;-1:-1:-1;;;;;17043:6:0;16049:10;17043:22;17035:67;;;;-1:-1:-1;;;17035:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17879:22:0;::::1;17857:110;;;::::0;-1:-1:-1;;;17857:110:0;;4501:2:1;17857:110:0::1;::::0;::::1;4483:21:1::0;4540:2;4520:18;;;4513:30;4579:34;4559:18;;;4552:62;-1:-1:-1;;;4630:18:1;;;4623:36;4676:19;;17857:110:0::1;4299:402:1::0;17857:110:0::1;18004:6;::::0;17983:38:::1;::::0;-1:-1:-1;;;;;17983:38:0;;::::1;::::0;18004:6:::1;::::0;17983:38:::1;::::0;18004:6:::1;::::0;17983:38:::1;18032:6;:17:::0;;-1:-1:-1;;;;;;18032:17:0::1;-1:-1:-1::0;;;;;18032:17:0;;;::::1;::::0;;;::::1;::::0;;17776:281::o;30268:380::-;-1:-1:-1;;;;;30404:19:0;;30396:68;;;;-1:-1:-1;;;30396:68:0;;4908:2:1;30396:68:0;;;4890:21:1;4947:2;4927:18;;;4920:30;4986:34;4966:18;;;4959:62;-1:-1:-1;;;5037:18:1;;;5030:34;5081:19;;30396:68:0;4706:400:1;30396:68:0;-1:-1:-1;;;;;30483:21:0;;30475:68;;;;-1:-1:-1;;;30475:68:0;;5313:2:1;30475:68:0;;;5295:21:1;5352:2;5332:18;;;5325:30;5391:34;5371:18;;;5364:62;-1:-1:-1;;;5442:18:1;;;5435:32;5484:19;;30475:68:0;5111:398:1;30475:68:0;-1:-1:-1;;;;;30556:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30608:32;;1593:25:1;;;30608:32:0;;1566:18:1;30608:32:0;;;;;;;;30268:380;;;:::o;37057:1747::-;-1:-1:-1;;;;;37209:23:0;;;;:55;;-1:-1:-1;;;;;;37236:28:0;;37257:6;37236:28;37209:55;37208:85;;;-1:-1:-1;37282:11:0;;37208:85;:127;;;;37297:38;37317:6;37325:9;37297:19;:38::i;:::-;37190:665;;;37349:42;37365:6;37373:9;37384:6;37349:15;:42::i;:::-;37057:1747;;;:::o;37190:665::-;37477:11;;37467:6;:21;;37441:123;;;;-1:-1:-1;;;37441:123:0;;5716:2:1;37441:123:0;;;5698:21:1;5755:2;5735:18;;;5728:30;5794:34;5774:18;;;5767:62;-1:-1:-1;;;5845:18:1;;;5838:38;5893:19;;37441:123:0;5514:404:1;37441:123:0;37583:13;;-1:-1:-1;;;;;37570:26:0;;;37583:13;;37570:26;37566:278;;-1:-1:-1;;;;;24854:18:0;;37617:23;24854:18;;;;;;;;;;;37740:15;;37712:24;37730:6;24854:18;37712:24;:::i;:::-;:43;;37682:146;;;;-1:-1:-1;;;37682:146:0;;6387:2:1;37682:146:0;;;6369:21:1;6426:2;6406:18;;;6399:30;6465:31;6445:18;;;6438:59;6514:18;;37682:146:0;6185:353:1;37682:146:0;37598:246;37566:278;37913:4;37867:25;24854:18;;;;;;;;;;;37967:9;;37946:30;;;;;;;37991:24;;-1:-1:-1;38004:11:0;;-1:-1:-1;;;38004:11:0;;;;38003:12;37991:24;:48;;;;-1:-1:-1;;;;;;38020:19:0;;;;;;:11;:19;;;;;;;;38019:20;37991:48;37987:284;;;38056:11;:18;;-1:-1:-1;;;;38056:18:0;-1:-1:-1;;;38056:18:0;;;38108:17;38144:12;;38140:86;;38199:10;;38177:33;;38189:8;;-1:-1:-1;;;;;38199:10:0;38177:11;:33::i;:::-;-1:-1:-1;38240:11:0;:19;;-1:-1:-1;;;;38240:19:0;;;37987:284;38300:11;;-1:-1:-1;;;;;38326:28:0;;38283:13;38326:28;;;38300:11;38326:28;;;;;;38300:11;-1:-1:-1;;;38300:11:0;;;;;38299:12;;38326:28;;:57;;-1:-1:-1;;;;;;38358:25:0;;;;;;:17;:25;;;;;;;;38326:57;38322:116;;;-1:-1:-1;38421:5:0;38322:116;38452:8;38448:296;;;38477:18;38498:31;38524:4;38498:21;38509:9;;38498:6;:10;;:21;;;;:::i;:::-;:25;;:31::i;:::-;-1:-1:-1;;;;;38548:22:0;;;;;;:11;:22;;;;;;38477:52;;-1:-1:-1;38548:22:0;;38544:78;;;38587:32;38614:4;38587:22;38598:10;;38587:6;:10;;:22;;;;:::i;:32::-;38574:45;;38544:78;38645:22;:6;38656:10;38645;:22::i;:::-;38636:31;;38682:50;38698:6;38714:4;38721:10;38682:15;:50::i;:::-;38462:282;38448:296;38754:42;38770:6;38778:9;38789:6;38754:15;:42::i;:::-;37179:1625;;;37057:1747;;;:::o;4435:226::-;4555:7;4591:12;4583:6;;;;4575:29;;;;-1:-1:-1;;;4575:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4615:9:0;4627:5;4631:1;4627;:5;:::i;:::-;4615:17;4435:226;-1:-1:-1;;;;;4435:226:0:o;3532:181::-;3590:7;;3622:5;3626:1;3622;:5;:::i;:::-;3610:17;;3651:1;3646;:6;;3638:46;;;;-1:-1:-1;;;3638:46:0;;6878:2:1;3638:46:0;;;6860:21:1;6917:2;6897:18;;;6890:30;6956:29;6936:18;;;6929:57;7003:18;;3638:46:0;6676:351:1;3638:46:0;3704:1;3532:181;-1:-1:-1;;;3532:181:0:o;36196:274::-;-1:-1:-1;;;;;36293:23:0;;36269:4;36293:23;;;:17;:23;;;;;;;;;:58;;-1:-1:-1;;;;;;36330:21:0;;;;;;:17;:21;;;;;;;;36293:58;:169;;;-1:-1:-1;36393:21:0;;36365:93;;-1:-1:-1;;;36365:93:0;;-1:-1:-1;;;;;7262:15:1;;;36365:93:0;;;7244:34:1;7314:15;;;7294:18;;;7287:43;36461:1:0;;36393:21;;36365:83;;7179:18:1;;36365:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:97;36286:176;36196:274;-1:-1:-1;;;36196:274:0:o;29216:610::-;-1:-1:-1;;;;;29356:20:0;;29348:70;;;;-1:-1:-1;;;29348:70:0;;7732:2:1;29348:70:0;;;7714:21:1;7771:2;7751:18;;;7744:30;7810:34;7790:18;;;7783:62;-1:-1:-1;;;7861:18:1;;;7854:35;7906:19;;29348:70:0;7530:401:1;29348:70:0;-1:-1:-1;;;;;29437:23:0;;29429:71;;;;-1:-1:-1;;;29429:71:0;;8138:2:1;29429:71:0;;;8120:21:1;8177:2;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;-1:-1:-1;;;8267:18:1;;;8260:33;8310:19;;29429:71:0;7936:399:1;29429:71:0;29593:108;29629:6;29593:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29593:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;29573:17:0;;;:9;:17;;;;;;;;;;;:128;;;;29735:20;;;;;;;:32;;29760:6;29735:24;:32::i;:::-;-1:-1:-1;;;;;29712:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29783:35;1593:25:1;;;29712:20:0;;29783:35;;;;;;1566:18:1;29783:35:0;1447:177:1;38812:275:0;38911:21;38934:23;38950:6;38934:15;:23::i;:::-;38968:18;38989:41;:21;39015:14;38989:25;:41::i;:::-;39041:38;;38968:62;;-1:-1:-1;;;;;;39041:26:0;;;:38;;;;;38968:62;;39041:38;;;;38968:62;39041:26;:38;;;;;;;;;;;;;;;;;;;;;38875:212;;38812:275;;:::o;4920:471::-;4978:7;5223:1;5228;5223:6;5219:47;;-1:-1:-1;5253:1:0;5246:8;;5219:47;5278:9;5290:5;5294:1;5290;:5;:::i;:::-;5278:17;-1:-1:-1;5323:1:0;5314:5;5318:1;5278:17;5314:5;:::i;:::-;:10;5306:56;;;;-1:-1:-1;;;5306:56:0;;8937:2:1;5306:56:0;;;8919:21:1;8976:2;8956:18;;;8949:30;9015:34;8995:18;;;8988:62;-1:-1:-1;;;9066:18:1;;;9059:31;9107:19;;5306:56:0;8735:397:1;5867:132:0;5925:7;5952:39;5956:1;5959;5952:39;;;;;;;;;;;;;;;;;:3;:39::i;3996:136::-;4054:7;4081:43;4085:1;4088;4081:43;;;;;;;;;;;;;;;;;:3;:43::i;39095:570::-;39244:16;;;39258:1;39244:16;;;;;;;;39220:21;;39244:16;;;;;;;;;;-1:-1:-1;39244:16:0;39220:40;;39280:4;39262;39267:1;39262:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39262:23:0;;;:7;;;;;;;;;;:23;;;;39297:15;;:22;;;-1:-1:-1;;;39297:22:0;;;;:15;;;;;:20;;:22;;;;;39262:7;;39297:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39287:4;39292:1;39287:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39287:32:0;;;:7;;;;;;;;;:32;39364:15;;39332:62;;39349:4;;39364:15;39382:11;39332:8;:62::i;:::-;39433:15;;:224;;-1:-1:-1;;;39433:224:0;;-1:-1:-1;;;;;39433:15:0;;;;:66;;:224;;39514:11;;39433:15;;39584:4;;39611;;39631:15;;39433:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6495:312;6615:7;6650:12;6643:5;6635:28;;;;-1:-1:-1;;;6635:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6674:9:0;6686:5;6690:1;6686;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1629:456::-;1706:6;1714;1722;1775:2;1763:9;1754:7;1750:23;1746:32;1743:52;;;1791:1;1788;1781:12;1743:52;1830:9;1817:23;1849:31;1874:5;1849:31;:::i;:::-;1899:5;-1:-1:-1;1956:2:1;1941:18;;1928:32;1969:33;1928:32;1969:33;:::i;:::-;1629:456;;2021:7;;-1:-1:-1;;;2075:2:1;2060:18;;;;2047:32;;1629:456::o;2487:247::-;2546:6;2599:2;2587:9;2578:7;2574:23;2570:32;2567:52;;;2615:1;2612;2605:12;2567:52;2654:9;2641:23;2673:31;2698:5;2673:31;:::i;2739:416::-;2804:6;2812;2865:2;2853:9;2844:7;2840:23;2836:32;2833:52;;;2881:1;2878;2871:12;2833:52;2920:9;2907:23;2939:31;2964:5;2939:31;:::i;:::-;2989:5;-1:-1:-1;3046:2:1;3031:18;;3018:32;3088:15;;3081:23;3069:36;;3059:64;;3119:1;3116;3109:12;3059:64;3142:7;3132:17;;;2739:416;;;;;:::o;3160:388::-;3228:6;3236;3289:2;3277:9;3268:7;3264:23;3260:32;3257:52;;;3305:1;3302;3295:12;3257:52;3344:9;3331:23;3363:31;3388:5;3363:31;:::i;:::-;3413:5;-1:-1:-1;3470:2:1;3455:18;;3442:32;3483:33;3442:32;3483:33;:::i;3553:380::-;3632:1;3628:12;;;;3675;;;3696:61;;3750:4;3742:6;3738:17;3728:27;;3696:61;3803:2;3795:6;3792:14;3772:18;3769:38;3766:161;;3849:10;3844:3;3840:20;3837:1;3830:31;3884:4;3881:1;3874:15;3912:4;3909:1;3902:15;3766:161;;3553:380;;;:::o;3938:356::-;4140:2;4122:21;;;4159:18;;;4152:30;4218:34;4213:2;4198:18;;4191:62;4285:2;4270:18;;3938:356::o;5923:127::-;5984:10;5979:3;5975:20;5972:1;5965:31;6015:4;6012:1;6005:15;6039:4;6036:1;6029:15;6055:125;6120:9;;;6141:10;;;6138:36;;;6154:18;;:::i;6543:128::-;6610:9;;;6631:11;;;6628:37;;;6645:18;;:::i;7341:184::-;7411:6;7464:2;7452:9;7443:7;7439:23;7435:32;7432:52;;;7480:1;7477;7470:12;7432:52;-1:-1:-1;7503:16:1;;7341:184;-1:-1:-1;7341:184:1:o;8340:168::-;8413:9;;;8444;;8461:15;;;8455:22;;8441:37;8431:71;;8482:18;;:::i;8513:217::-;8553:1;8579;8569:132;;8623:10;8618:3;8614:20;8611:1;8604:31;8658:4;8655:1;8648:15;8686:4;8683:1;8676:15;8569:132;-1:-1:-1;8715:9:1;;8513:217::o;9269:127::-;9330:10;9325:3;9321:20;9318:1;9311:31;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9401:251;9471:6;9524:2;9512:9;9503:7;9499:23;9495:32;9492:52;;;9540:1;9537;9530:12;9492:52;9572:9;9566:16;9591:31;9616:5;9591:31;:::i;9657:980::-;9919:4;9967:3;9956:9;9952:19;9998:6;9987:9;9980:25;10024:2;10062:6;10057:2;10046:9;10042:18;10035:34;10105:3;10100:2;10089:9;10085:18;10078:31;10129:6;10164;10158:13;10195:6;10187;10180:22;10233:3;10222:9;10218:19;10211:26;;10272:2;10264:6;10260:15;10246:29;;10293:1;10303:195;10317:6;10314:1;10311:13;10303:195;;;10382:13;;-1:-1:-1;;;;;10378:39:1;10366:52;;10473:15;;;;10438:12;;;;10414:1;10332:9;10303:195;;;-1:-1:-1;;;;;;;10554:32:1;;;;10549:2;10534:18;;10527:60;-1:-1:-1;;;10618:3:1;10603:19;10596:35;10515:3;9657:980;-1:-1:-1;;;9657:980:1:o

Swarm Source

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