ETH Price: $3,508.42 (+4.07%)
Gas: 4 Gwei

Token

Shibarium Name Service (SNS)
 

Overview

Max Total Supply

100,000,000,000 SNS

Holders

1,140

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 SNS

Value
$0.00
0x55f2e85fd0c6fb9f6ccfbd9294c08c9171df13f7
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:
SNS

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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 {IERC20-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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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 {IERC20-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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 3 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 6 of 6 : SNS.sol
// https://t.me/dogtag_id

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

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

    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(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

contract SNS is ERC20, Ownable {
    uint256 public maxWalletPercent;
    uint256 public maxTransactionPercent;
    address public uniswapV2Pair;
    bool public maxWallet;
    bool public maxTransaction;
    IUniswapV2Router02 public uniswapV2Router;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private isExcludedFromMax;

    constructor() ERC20("Shibarium Name Service", "SNS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        automatedMarketMakerPairs[_uniswapV2Pair] = true;
        isExcludedFromMax[msg.sender] = true;

        maxTransaction = true;
        maxWallet = true;
        maxWalletPercent = 2;
        maxTransactionPercent = 1;

        _mint(msg.sender, 100000000000 * 10 ** 18);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        // Buy
        if (automatedMarketMakerPairs[from]) {
            if (!isExcludedFromMax[from]) {
                if (maxTransaction) {
                    require(
                        amount <= (totalSupply() * maxTransactionPercent) / 100,
                        "Max transaction limit in place"
                    );
                }
                if (maxWallet) {
                    require(
                        balanceOf(to) + amount <=
                            (totalSupply() * maxWalletPercent) / 100,
                        "Max wallet limit in place"
                    );
                }
            }
            // Sell
        } else if (automatedMarketMakerPairs[to]) {
            if (!isExcludedFromMax[from]) {
                if (maxTransaction) {
                    require(
                        amount <= (totalSupply() * maxTransactionPercent) / 100,
                        "Max transaction limit in place"
                    );
                }
            }
        }

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

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The Uniswap pair cannot be removed from automatedMarketMakerPairs"
        );
        require(
            automatedMarketMakerPairs[pair] != value,
            "Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;
    }

    function maxWalletOn(bool _on) external onlyOwner {
        maxWallet = _on;
    }

    function maxTransactionOn(bool _on) external onlyOwner {
        maxTransaction = _on;
    }

    function setMaxWalletPercent(uint256 _newPercent) external onlyOwner {
        require(_newPercent > 0, "Cannot set to zero, deactivate instead");
        maxWalletPercent = _newPercent;
    }

    function setMaxTransactionPercent(uint256 _newPercent) external onlyOwner {
        require(_newPercent > 0, "Cannot set to zero, deactivate instead");
        maxTransactionPercent = _newPercent;
    }

    function addExcludedWallet(
        address _address,
        bool _excluded
    ) external onlyOwner {
        isExcludedFromMax[_address] = _excluded;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_address","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"addExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_on","type":"bool"}],"name":"maxTransactionOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_on","type":"bool"}],"name":"maxWalletOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletPercent","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPercent","type":"uint256"}],"name":"setMaxTransactionPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPercent","type":"uint256"}],"name":"setMaxWalletPercent","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601681526020017f53686962617269756d204e616d652053657276696365000000000000000000008152506040518060400160405280600381526020017f534e53000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000669565b508060049080519060200190620000af92919062000669565b505050620000d2620000c66200042360201b60201c565b6200042b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200013457600080fd5b505afa15801562000149573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016f919062000730565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d257600080fd5b505afa158015620001e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020d919062000730565b6040518363ffffffff1660e01b81526004016200022c929190620007a5565b602060405180830381600087803b1580156200024757600080fd5b505af11580156200025c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000282919062000730565b905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506001600860146101000a81548160ff021916908315150217905550600260068190555060016007819055506200041b336c01431e0fae6d7217caa0000000620004f160201b60201c565b505062000994565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000564576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055b90620007d2565b60405180910390fd5b62000578600083836200065f60201b60201c565b80600260008282546200058c919062000822565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200063f9190620007f4565b60405180910390a36200065b600083836200066460201b60201c565b5050565b505050565b505050565b8280546200067790620008bd565b90600052602060002090601f0160209004810192826200069b5760008555620006e7565b82601f10620006b657805160ff1916838001178555620006e7565b82800160010185558215620006e7579182015b82811115620006e6578251825591602001919060010190620006c9565b5b509050620006f69190620006fa565b5090565b5b8082111562000715576000816000905550600101620006fb565b5090565b6000815190506200072a816200097a565b92915050565b6000602082840312156200074357600080fd5b6000620007538482850162000719565b91505092915050565b62000767816200087f565b82525050565b60006200077c601f8362000811565b9150620007898262000951565b602082019050919050565b6200079f81620008b3565b82525050565b6000604082019050620007bc60008301856200075c565b620007cb60208301846200075c565b9392505050565b60006020820190508181036000830152620007ed816200076d565b9050919050565b60006020820190506200080b600083018462000794565b92915050565b600082825260208201905092915050565b60006200082f82620008b3565b91506200083c83620008b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008745762000873620008f3565b5b828201905092915050565b60006200088c8262000893565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620008d657607f821691505b60208210811415620008ed57620008ec62000922565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000985816200087f565b81146200099157600080fd5b50565b6123f780620009a46000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063c3f70b5211610097578063e83298be11610071578063e83298be146104d4578063eec36021146104f0578063f2fde38b1461050c578063f8b45b0514610528576101a9565b8063c3f70b521461046a578063d51f335214610488578063dd62ed3e146104a4576101a9565b8063a457c2d7116100d3578063a457c2d7146103bc578063a9059cbb146103ec578063ad6096461461041c578063b62496f51461043a576101a9565b80638da5cb5b1461036457806395d89b41146103825780639a7a23d6146103a0576101a9565b806339509351116101665780634d82d10e116101405780634d82d10e146102f257806370a082311461030e578063715018a61461033e57806382bf293c14610348576101a9565b806339509351146102865780633d9a3d19146102b657806349bd5a5e146102d4576101a9565b806306fdde03146101ae578063095ea7b3146101cc5780631694505e146101fc57806318160ddd1461021a57806323b872dd14610238578063313ce56714610268575b600080fd5b6101b6610546565b6040516101c39190611b0b565b60405180910390f35b6101e660048036038101906101e191906117be565b6105d8565b6040516101f39190611ad5565b60405180910390f35b6102046105fb565b6040516102119190611af0565b60405180910390f35b610222610621565b60405161022f9190611ced565b60405180910390f35b610252600480360381019061024d9190611733565b61062b565b60405161025f9190611ad5565b60405180910390f35b61027061065a565b60405161027d9190611d08565b60405180910390f35b6102a0600480360381019061029b91906117be565b610663565b6040516102ad9190611ad5565b60405180910390f35b6102be61069a565b6040516102cb9190611ced565b60405180910390f35b6102dc6106a0565b6040516102e99190611aba565b60405180910390f35b61030c60048036038101906103079190611782565b6106c6565b005b610328600480360381019061032391906116ce565b610729565b6040516103359190611ced565b60405180910390f35b610346610771565b005b610362600480360381019061035d9190611823565b610785565b005b61036c6107da565b6040516103799190611aba565b60405180910390f35b61038a610804565b6040516103979190611b0b565b60405180910390f35b6103ba60048036038101906103b59190611782565b610896565b005b6103d660048036038101906103d191906117be565b610a1d565b6040516103e39190611ad5565b60405180910390f35b610406600480360381019061040191906117be565b610a94565b6040516104139190611ad5565b60405180910390f35b610424610ab7565b6040516104319190611ced565b60405180910390f35b610454600480360381019061044f91906116ce565b610abd565b6040516104619190611ad5565b60405180910390f35b610472610add565b60405161047f9190611ad5565b60405180910390f35b6104a2600480360381019061049d91906117fa565b610af0565b005b6104be60048036038101906104b991906116f7565b610b15565b6040516104cb9190611ced565b60405180910390f35b6104ee60048036038101906104e991906117fa565b610b9c565b005b61050a60048036038101906105059190611823565b610bc1565b005b610526600480360381019061052191906116ce565b610c16565b005b610530610c9a565b60405161053d9190611ad5565b60405180910390f35b60606003805461055590611ecc565b80601f016020809104026020016040519081016040528092919081815260200182805461058190611ecc565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6000806105e3610cad565b90506105f0818585610cb5565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610636610cad565b9050610643858285610e80565b61064e858585610f0c565b60019150509392505050565b60006012905090565b60008061066e610cad565b905061068f8185856106808589610b15565b61068a9190611d3f565b610cb5565b600191505092915050565b60065481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106ce6112c9565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107796112c9565b6107836000611347565b565b61078d6112c9565b600081116107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c790611c8d565b60405180910390fd5b8060068190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461081390611ecc565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90611ecc565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b61089e6112c9565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690611c0d565b60405180910390fd5b801515600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990611b8d565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610a28610cad565b90506000610a368286610b15565b905083811015610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290611ccd565b60405180910390fd5b610a888286868403610cb5565b60019250505092915050565b600080610a9f610cad565b9050610aac818585610f0c565b600191505092915050565b60075481565b600a6020528060005260406000206000915054906101000a900460ff1681565b600860159054906101000a900460ff1681565b610af86112c9565b80600860156101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba46112c9565b80600860146101000a81548160ff02191690831515021790555050565b610bc96112c9565b60008111610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390611c8d565b60405180910390fd5b8060078190555050565b610c1e6112c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590611b4d565b60405180910390fd5b610c9781611347565b50565b600860149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90611cad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611b6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e739190611ced565b60405180910390a3505050565b6000610e8c8484610b15565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f065781811015610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90611bad565b60405180910390fd5b610f058484848403610cb5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390611c6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390611b2d565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561119a57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661119557600860159054906101000a900460ff16156111085760646007546110b1610621565b6110bb9190611dc6565b6110c59190611d95565b811115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90611c2d565b60405180910390fd5b5b600860149054906101000a900460ff161561119457606460065461112a610621565b6111349190611dc6565b61113e9190611d95565b8161114884610729565b6111529190611d3f565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90611bcd565b60405180910390fd5b5b5b6112b9565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112b857600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112b757600860159054906101000a900460ff16156112b657606460075461125f610621565b6112699190611dc6565b6112739190611d95565b8111156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90611c2d565b60405180910390fd5b5b5b5b5b6112c483838361140d565b505050565b6112d1610cad565b73ffffffffffffffffffffffffffffffffffffffff166112ef6107da565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90611c4d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490611c6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490611b2d565b60405180910390fd5b6114f8838383611685565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590611bed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161166c9190611ced565b60405180910390a361167f84848461168a565b50505050565b505050565b505050565b60008135905061169e8161237c565b92915050565b6000813590506116b381612393565b92915050565b6000813590506116c8816123aa565b92915050565b6000602082840312156116e057600080fd5b60006116ee8482850161168f565b91505092915050565b6000806040838503121561170a57600080fd5b60006117188582860161168f565b92505060206117298582860161168f565b9150509250929050565b60008060006060848603121561174857600080fd5b60006117568682870161168f565b93505060206117678682870161168f565b9250506040611778868287016116b9565b9150509250925092565b6000806040838503121561179557600080fd5b60006117a38582860161168f565b92505060206117b4858286016116a4565b9150509250929050565b600080604083850312156117d157600080fd5b60006117df8582860161168f565b92505060206117f0858286016116b9565b9150509250929050565b60006020828403121561180c57600080fd5b600061181a848285016116a4565b91505092915050565b60006020828403121561183557600080fd5b6000611843848285016116b9565b91505092915050565b61185581611e20565b82525050565b61186481611e32565b82525050565b61187381611e75565b82525050565b600061188482611d23565b61188e8185611d2e565b935061189e818560208601611e99565b6118a781611f8b565b840191505092915050565b60006118bf602383611d2e565b91506118ca82611f9c565b604082019050919050565b60006118e2602683611d2e565b91506118ed82611feb565b604082019050919050565b6000611905602283611d2e565b91506119108261203a565b604082019050919050565b6000611928603883611d2e565b915061193382612089565b604082019050919050565b600061194b601d83611d2e565b9150611956826120d8565b602082019050919050565b600061196e601983611d2e565b915061197982612101565b602082019050919050565b6000611991602683611d2e565b915061199c8261212a565b604082019050919050565b60006119b4604183611d2e565b91506119bf82612179565b606082019050919050565b60006119d7601e83611d2e565b91506119e2826121ee565b602082019050919050565b60006119fa602083611d2e565b9150611a0582612217565b602082019050919050565b6000611a1d602583611d2e565b9150611a2882612240565b604082019050919050565b6000611a40602683611d2e565b9150611a4b8261228f565b604082019050919050565b6000611a63602483611d2e565b9150611a6e826122de565b604082019050919050565b6000611a86602583611d2e565b9150611a918261232d565b604082019050919050565b611aa581611e5e565b82525050565b611ab481611e68565b82525050565b6000602082019050611acf600083018461184c565b92915050565b6000602082019050611aea600083018461185b565b92915050565b6000602082019050611b05600083018461186a565b92915050565b60006020820190508181036000830152611b258184611879565b905092915050565b60006020820190508181036000830152611b46816118b2565b9050919050565b60006020820190508181036000830152611b66816118d5565b9050919050565b60006020820190508181036000830152611b86816118f8565b9050919050565b60006020820190508181036000830152611ba68161191b565b9050919050565b60006020820190508181036000830152611bc68161193e565b9050919050565b60006020820190508181036000830152611be681611961565b9050919050565b60006020820190508181036000830152611c0681611984565b9050919050565b60006020820190508181036000830152611c26816119a7565b9050919050565b60006020820190508181036000830152611c46816119ca565b9050919050565b60006020820190508181036000830152611c66816119ed565b9050919050565b60006020820190508181036000830152611c8681611a10565b9050919050565b60006020820190508181036000830152611ca681611a33565b9050919050565b60006020820190508181036000830152611cc681611a56565b9050919050565b60006020820190508181036000830152611ce681611a79565b9050919050565b6000602082019050611d026000830184611a9c565b92915050565b6000602082019050611d1d6000830184611aab565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d4a82611e5e565b9150611d5583611e5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d8a57611d89611efe565b5b828201905092915050565b6000611da082611e5e565b9150611dab83611e5e565b925082611dbb57611dba611f2d565b5b828204905092915050565b6000611dd182611e5e565b9150611ddc83611e5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611e1557611e14611efe565b5b828202905092915050565b6000611e2b82611e3e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611e8082611e87565b9050919050565b6000611e9282611e3e565b9050919050565b60005b83811015611eb7578082015181840152602081019050611e9c565b83811115611ec6576000848401525b50505050565b60006002820490506001821680611ee457607f821691505b60208210811415611ef857611ef7611f5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4d61782077616c6c6574206c696d697420696e20706c61636500000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b7f4d6178207472616e73616374696f6e206c696d697420696e20706c6163650000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742073657420746f207a65726f2c2064656163746976617465206960008201527f6e73746561640000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61238581611e20565b811461239057600080fd5b50565b61239c81611e32565b81146123a757600080fd5b50565b6123b381611e5e565b81146123be57600080fd5b5056fea2646970667358221220d965c7706fa5b1611cbee50329ec4589b75a1dc3f04404f5bab1c5100df9b69f64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063c3f70b5211610097578063e83298be11610071578063e83298be146104d4578063eec36021146104f0578063f2fde38b1461050c578063f8b45b0514610528576101a9565b8063c3f70b521461046a578063d51f335214610488578063dd62ed3e146104a4576101a9565b8063a457c2d7116100d3578063a457c2d7146103bc578063a9059cbb146103ec578063ad6096461461041c578063b62496f51461043a576101a9565b80638da5cb5b1461036457806395d89b41146103825780639a7a23d6146103a0576101a9565b806339509351116101665780634d82d10e116101405780634d82d10e146102f257806370a082311461030e578063715018a61461033e57806382bf293c14610348576101a9565b806339509351146102865780633d9a3d19146102b657806349bd5a5e146102d4576101a9565b806306fdde03146101ae578063095ea7b3146101cc5780631694505e146101fc57806318160ddd1461021a57806323b872dd14610238578063313ce56714610268575b600080fd5b6101b6610546565b6040516101c39190611b0b565b60405180910390f35b6101e660048036038101906101e191906117be565b6105d8565b6040516101f39190611ad5565b60405180910390f35b6102046105fb565b6040516102119190611af0565b60405180910390f35b610222610621565b60405161022f9190611ced565b60405180910390f35b610252600480360381019061024d9190611733565b61062b565b60405161025f9190611ad5565b60405180910390f35b61027061065a565b60405161027d9190611d08565b60405180910390f35b6102a0600480360381019061029b91906117be565b610663565b6040516102ad9190611ad5565b60405180910390f35b6102be61069a565b6040516102cb9190611ced565b60405180910390f35b6102dc6106a0565b6040516102e99190611aba565b60405180910390f35b61030c60048036038101906103079190611782565b6106c6565b005b610328600480360381019061032391906116ce565b610729565b6040516103359190611ced565b60405180910390f35b610346610771565b005b610362600480360381019061035d9190611823565b610785565b005b61036c6107da565b6040516103799190611aba565b60405180910390f35b61038a610804565b6040516103979190611b0b565b60405180910390f35b6103ba60048036038101906103b59190611782565b610896565b005b6103d660048036038101906103d191906117be565b610a1d565b6040516103e39190611ad5565b60405180910390f35b610406600480360381019061040191906117be565b610a94565b6040516104139190611ad5565b60405180910390f35b610424610ab7565b6040516104319190611ced565b60405180910390f35b610454600480360381019061044f91906116ce565b610abd565b6040516104619190611ad5565b60405180910390f35b610472610add565b60405161047f9190611ad5565b60405180910390f35b6104a2600480360381019061049d91906117fa565b610af0565b005b6104be60048036038101906104b991906116f7565b610b15565b6040516104cb9190611ced565b60405180910390f35b6104ee60048036038101906104e991906117fa565b610b9c565b005b61050a60048036038101906105059190611823565b610bc1565b005b610526600480360381019061052191906116ce565b610c16565b005b610530610c9a565b60405161053d9190611ad5565b60405180910390f35b60606003805461055590611ecc565b80601f016020809104026020016040519081016040528092919081815260200182805461058190611ecc565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6000806105e3610cad565b90506105f0818585610cb5565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610636610cad565b9050610643858285610e80565b61064e858585610f0c565b60019150509392505050565b60006012905090565b60008061066e610cad565b905061068f8185856106808589610b15565b61068a9190611d3f565b610cb5565b600191505092915050565b60065481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106ce6112c9565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107796112c9565b6107836000611347565b565b61078d6112c9565b600081116107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c790611c8d565b60405180910390fd5b8060068190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461081390611ecc565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90611ecc565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b61089e6112c9565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690611c0d565b60405180910390fd5b801515600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990611b8d565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610a28610cad565b90506000610a368286610b15565b905083811015610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290611ccd565b60405180910390fd5b610a888286868403610cb5565b60019250505092915050565b600080610a9f610cad565b9050610aac818585610f0c565b600191505092915050565b60075481565b600a6020528060005260406000206000915054906101000a900460ff1681565b600860159054906101000a900460ff1681565b610af86112c9565b80600860156101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba46112c9565b80600860146101000a81548160ff02191690831515021790555050565b610bc96112c9565b60008111610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390611c8d565b60405180910390fd5b8060078190555050565b610c1e6112c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590611b4d565b60405180910390fd5b610c9781611347565b50565b600860149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90611cad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611b6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e739190611ced565b60405180910390a3505050565b6000610e8c8484610b15565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f065781811015610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90611bad565b60405180910390fd5b610f058484848403610cb5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390611c6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390611b2d565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561119a57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661119557600860159054906101000a900460ff16156111085760646007546110b1610621565b6110bb9190611dc6565b6110c59190611d95565b811115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90611c2d565b60405180910390fd5b5b600860149054906101000a900460ff161561119457606460065461112a610621565b6111349190611dc6565b61113e9190611d95565b8161114884610729565b6111529190611d3f565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90611bcd565b60405180910390fd5b5b5b6112b9565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112b857600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112b757600860159054906101000a900460ff16156112b657606460075461125f610621565b6112699190611dc6565b6112739190611d95565b8111156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90611c2d565b60405180910390fd5b5b5b5b5b6112c483838361140d565b505050565b6112d1610cad565b73ffffffffffffffffffffffffffffffffffffffff166112ef6107da565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90611c4d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490611c6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490611b2d565b60405180910390fd5b6114f8838383611685565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590611bed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161166c9190611ced565b60405180910390a361167f84848461168a565b50505050565b505050565b505050565b60008135905061169e8161237c565b92915050565b6000813590506116b381612393565b92915050565b6000813590506116c8816123aa565b92915050565b6000602082840312156116e057600080fd5b60006116ee8482850161168f565b91505092915050565b6000806040838503121561170a57600080fd5b60006117188582860161168f565b92505060206117298582860161168f565b9150509250929050565b60008060006060848603121561174857600080fd5b60006117568682870161168f565b93505060206117678682870161168f565b9250506040611778868287016116b9565b9150509250925092565b6000806040838503121561179557600080fd5b60006117a38582860161168f565b92505060206117b4858286016116a4565b9150509250929050565b600080604083850312156117d157600080fd5b60006117df8582860161168f565b92505060206117f0858286016116b9565b9150509250929050565b60006020828403121561180c57600080fd5b600061181a848285016116a4565b91505092915050565b60006020828403121561183557600080fd5b6000611843848285016116b9565b91505092915050565b61185581611e20565b82525050565b61186481611e32565b82525050565b61187381611e75565b82525050565b600061188482611d23565b61188e8185611d2e565b935061189e818560208601611e99565b6118a781611f8b565b840191505092915050565b60006118bf602383611d2e565b91506118ca82611f9c565b604082019050919050565b60006118e2602683611d2e565b91506118ed82611feb565b604082019050919050565b6000611905602283611d2e565b91506119108261203a565b604082019050919050565b6000611928603883611d2e565b915061193382612089565b604082019050919050565b600061194b601d83611d2e565b9150611956826120d8565b602082019050919050565b600061196e601983611d2e565b915061197982612101565b602082019050919050565b6000611991602683611d2e565b915061199c8261212a565b604082019050919050565b60006119b4604183611d2e565b91506119bf82612179565b606082019050919050565b60006119d7601e83611d2e565b91506119e2826121ee565b602082019050919050565b60006119fa602083611d2e565b9150611a0582612217565b602082019050919050565b6000611a1d602583611d2e565b9150611a2882612240565b604082019050919050565b6000611a40602683611d2e565b9150611a4b8261228f565b604082019050919050565b6000611a63602483611d2e565b9150611a6e826122de565b604082019050919050565b6000611a86602583611d2e565b9150611a918261232d565b604082019050919050565b611aa581611e5e565b82525050565b611ab481611e68565b82525050565b6000602082019050611acf600083018461184c565b92915050565b6000602082019050611aea600083018461185b565b92915050565b6000602082019050611b05600083018461186a565b92915050565b60006020820190508181036000830152611b258184611879565b905092915050565b60006020820190508181036000830152611b46816118b2565b9050919050565b60006020820190508181036000830152611b66816118d5565b9050919050565b60006020820190508181036000830152611b86816118f8565b9050919050565b60006020820190508181036000830152611ba68161191b565b9050919050565b60006020820190508181036000830152611bc68161193e565b9050919050565b60006020820190508181036000830152611be681611961565b9050919050565b60006020820190508181036000830152611c0681611984565b9050919050565b60006020820190508181036000830152611c26816119a7565b9050919050565b60006020820190508181036000830152611c46816119ca565b9050919050565b60006020820190508181036000830152611c66816119ed565b9050919050565b60006020820190508181036000830152611c8681611a10565b9050919050565b60006020820190508181036000830152611ca681611a33565b9050919050565b60006020820190508181036000830152611cc681611a56565b9050919050565b60006020820190508181036000830152611ce681611a79565b9050919050565b6000602082019050611d026000830184611a9c565b92915050565b6000602082019050611d1d6000830184611aab565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d4a82611e5e565b9150611d5583611e5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d8a57611d89611efe565b5b828201905092915050565b6000611da082611e5e565b9150611dab83611e5e565b925082611dbb57611dba611f2d565b5b828204905092915050565b6000611dd182611e5e565b9150611ddc83611e5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611e1557611e14611efe565b5b828202905092915050565b6000611e2b82611e3e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611e8082611e87565b9050919050565b6000611e9282611e3e565b9050919050565b60005b83811015611eb7578082015181840152602081019050611e9c565b83811115611ec6576000848401525b50505050565b60006002820490506001821680611ee457607f821691505b60208210811415611ef857611ef7611f5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4d61782077616c6c6574206c696d697420696e20706c61636500000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b7f4d6178207472616e73616374696f6e206c696d697420696e20706c6163650000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742073657420746f207a65726f2c2064656163746976617465206960008201527f6e73746561640000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61238581611e20565b811461239057600080fd5b50565b61239c81611e32565b81146123a757600080fd5b50565b6123b381611e5e565b81146123be57600080fd5b5056fea2646970667358221220d965c7706fa5b1611cbee50329ec4589b75a1dc3f04404f5bab1c5100df9b69f64736f6c63430008040033

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.