ETH Price: $3,412.68 (-1.45%)
Gas: 6 Gwei

Token

No Tax (NOTAX)
 

Overview

Max Total Supply

100,000 NOTAX

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
282.965341935210529276 NOTAX

Value
$0.00
0xD364b2425a9671696A20e20afacBf60002F06748
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:
NoTax

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-12-15
*/

// https://t.me/NoTaxERC
// https://medium.com/@NoTaxERC/the-end-of-the-tax-rug-era-5a02a66ede06
// Giving back to the community.
// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

    /**
     * @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 (uint256) {
        return _decimals;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


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


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



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

}





pragma solidity ^0.8.0;




contract NoTax is ERC20 {
    constructor(
       string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"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":"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":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

608060405260405162001c1838038062001c18833981810160405281019062000029919062000304565b858584868584600490805190602001906200004692919062000191565b5083600590805190602001906200005f92919062000191565b5081600a6200006f9190620004c6565b836200007c919062000603565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001309190620003ef565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000184573d6000803e3d6000fd5b5050505050505062000865565b8280546200019f90620006ec565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b600062000258620002528462000435565b6200040c565b905082815260208101848484011115620002775762000276620007ea565b5b62000284848285620006b6565b509392505050565b6000815190506200029d8162000817565b92915050565b600081519050620002b48162000831565b92915050565b600082601f830112620002d257620002d1620007e5565b5b8151620002e484826020860162000241565b91505092915050565b600081519050620002fe816200084b565b92915050565b60008060008060008060c08789031215620003245762000323620007f4565b5b600087015167ffffffffffffffff811115620003455762000344620007ef565b5b6200035389828a01620002ba565b965050602087015167ffffffffffffffff811115620003775762000376620007ef565b5b6200038589828a01620002ba565b95505060406200039889828a01620002ed565b9450506060620003ab89828a01620002ed565b9350506080620003be89828a016200028c565b92505060a0620003d189828a01620002a3565b9150509295509295509295565b620003e981620006ac565b82525050565b6000602082019050620004066000830184620003de565b92915050565b6000620004186200042b565b905062000426828262000722565b919050565b6000604051905090565b600067ffffffffffffffff821115620004535762000452620007b6565b5b6200045e82620007f9565b9050602081019050919050565b6000808291508390505b6001851115620004bd5780860481111562000495576200049462000758565b5b6001851615620004a55780820291505b8081029050620004b5856200080a565b945062000475565b94509492505050565b6000620004d382620006ac565b9150620004e083620006ac565b92506200050f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000517565b905092915050565b600082620005295760019050620005fc565b81620005395760009050620005fc565b81600181146200055257600281146200055d5762000593565b6001915050620005fc565b60ff84111562000572576200057162000758565b5b8360020a9150848211156200058c576200058b62000758565b5b50620005fc565b5060208310610133831016604e8410600b8410161715620005cd5782820a905083811115620005c757620005c662000758565b5b620005fc565b620005dc84848460016200046b565b92509050818404811115620005f657620005f562000758565b5b81810290505b9392505050565b60006200061082620006ac565b91506200061d83620006ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000659576200065862000758565b5b828202905092915050565b600062000671826200068c565b9050919050565b600062000685826200068c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006d6578082015181840152602081019050620006b9565b83811115620006e6576000848401525b50505050565b600060028204905060018216806200070557607f821691505b602082108114156200071c576200071b62000787565b5b50919050565b6200072d82620007f9565b810181811067ffffffffffffffff821117156200074f576200074e620007b6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b620008228162000664565b81146200082e57600080fd5b50565b6200083c8162000678565b81146200084857600080fd5b50565b6200085681620006ac565b81146200086257600080fd5b50565b6113a380620008756000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e32565b60405180910390f35b6100e660048036038101906100e19190610c8b565b610308565b6040516100f39190610e17565b60405180910390f35b610104610326565b6040516101119190610f34565b60405180910390f35b610134600480360381019061012f9190610c38565b610330565b6040516101419190610e17565b60405180910390f35b610152610431565b60405161015f9190610f34565b60405180910390f35b610182600480360381019061017d9190610c8b565b61043b565b60405161018f9190610e17565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf9190610f34565b60405180910390f35b6101d061052f565b6040516101dd9190610e32565b60405180910390f35b61020060048036038101906101fb9190610c8b565b6105c1565b60405161020d9190610e17565b60405180910390f35b610230600480360381019061022b9190610c8b565b6106b5565b60405161023d9190610e17565b60405180910390f35b610260600480360381019061025b9190610bf8565b6106d3565b60405161026d9190610f34565b60405180910390f35b60606004805461028590611070565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611070565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610eb4565b60405180910390fd5b6104258561041461075a565b85846104209190610fc1565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f6b565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611070565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611070565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490610f14565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610fc1565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990610ef4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990610e74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109209190610f34565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490610ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490610e54565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90610e94565b60405180910390fd5b8181610a9f9190610fc1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190610f6b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b939190610f34565b60405180910390a350505050565b600081359050610bb08161133f565b92915050565b600081359050610bc581611356565b92915050565b600060208284031215610be157610be0611100565b5b6000610bef84828501610ba1565b91505092915050565b60008060408385031215610c0f57610c0e611100565b5b6000610c1d85828601610ba1565b9250506020610c2e85828601610ba1565b9150509250929050565b600080600060608486031215610c5157610c50611100565b5b6000610c5f86828701610ba1565b9350506020610c7086828701610ba1565b9250506040610c8186828701610bb6565b9150509250925092565b60008060408385031215610ca257610ca1611100565b5b6000610cb085828601610ba1565b9250506020610cc185828601610bb6565b9150509250929050565b610cd481611007565b82525050565b6000610ce582610f4f565b610cef8185610f5a565b9350610cff81856020860161103d565b610d0881611105565b840191505092915050565b6000610d20602383610f5a565b9150610d2b82611116565b604082019050919050565b6000610d43602283610f5a565b9150610d4e82611165565b604082019050919050565b6000610d66602683610f5a565b9150610d71826111b4565b604082019050919050565b6000610d89602883610f5a565b9150610d9482611203565b604082019050919050565b6000610dac602583610f5a565b9150610db782611252565b604082019050919050565b6000610dcf602483610f5a565b9150610dda826112a1565b604082019050919050565b6000610df2602583610f5a565b9150610dfd826112f0565b604082019050919050565b610e1181611033565b82525050565b6000602082019050610e2c6000830184610ccb565b92915050565b60006020820190508181036000830152610e4c8184610cda565b905092915050565b60006020820190508181036000830152610e6d81610d13565b9050919050565b60006020820190508181036000830152610e8d81610d36565b9050919050565b60006020820190508181036000830152610ead81610d59565b9050919050565b60006020820190508181036000830152610ecd81610d7c565b9050919050565b60006020820190508181036000830152610eed81610d9f565b9050919050565b60006020820190508181036000830152610f0d81610dc2565b9050919050565b60006020820190508181036000830152610f2d81610de5565b9050919050565b6000602082019050610f496000830184610e08565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f7682611033565b9150610f8183611033565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610fb657610fb56110a2565b5b828201905092915050565b6000610fcc82611033565b9150610fd783611033565b925082821015610fea57610fe96110a2565b5b828203905092915050565b600061100082611013565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561105b578082015181840152602081019050611040565b8381111561106a576000848401525b50505050565b6000600282049050600182168061108857607f821691505b6020821081141561109c5761109b6110d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61134881610ff5565b811461135357600080fd5b50565b61135f81611033565b811461136a57600080fd5b5056fea26469706673582212203aedd6e4605b2b469d43d08a151f2615641e1b969a29bef4b20e013dca70b36764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000186a00000000000000000000000001b7faddeaabc029511d8d1e643e21cc0cded08df0000000000000000000000001b7faddeaabc029511d8d1e643e21cc0cded08df00000000000000000000000000000000000000000000000000000000000000064e6f20546178000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e4f544158000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e32565b60405180910390f35b6100e660048036038101906100e19190610c8b565b610308565b6040516100f39190610e17565b60405180910390f35b610104610326565b6040516101119190610f34565b60405180910390f35b610134600480360381019061012f9190610c38565b610330565b6040516101419190610e17565b60405180910390f35b610152610431565b60405161015f9190610f34565b60405180910390f35b610182600480360381019061017d9190610c8b565b61043b565b60405161018f9190610e17565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf9190610f34565b60405180910390f35b6101d061052f565b6040516101dd9190610e32565b60405180910390f35b61020060048036038101906101fb9190610c8b565b6105c1565b60405161020d9190610e17565b60405180910390f35b610230600480360381019061022b9190610c8b565b6106b5565b60405161023d9190610e17565b60405180910390f35b610260600480360381019061025b9190610bf8565b6106d3565b60405161026d9190610f34565b60405180910390f35b60606004805461028590611070565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611070565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610eb4565b60405180910390fd5b6104258561041461075a565b85846104209190610fc1565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f6b565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611070565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611070565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490610f14565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610fc1565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990610ef4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990610e74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109209190610f34565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490610ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490610e54565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90610e94565b60405180910390fd5b8181610a9f9190610fc1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190610f6b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b939190610f34565b60405180910390a350505050565b600081359050610bb08161133f565b92915050565b600081359050610bc581611356565b92915050565b600060208284031215610be157610be0611100565b5b6000610bef84828501610ba1565b91505092915050565b60008060408385031215610c0f57610c0e611100565b5b6000610c1d85828601610ba1565b9250506020610c2e85828601610ba1565b9150509250929050565b600080600060608486031215610c5157610c50611100565b5b6000610c5f86828701610ba1565b9350506020610c7086828701610ba1565b9250506040610c8186828701610bb6565b9150509250925092565b60008060408385031215610ca257610ca1611100565b5b6000610cb085828601610ba1565b9250506020610cc185828601610bb6565b9150509250929050565b610cd481611007565b82525050565b6000610ce582610f4f565b610cef8185610f5a565b9350610cff81856020860161103d565b610d0881611105565b840191505092915050565b6000610d20602383610f5a565b9150610d2b82611116565b604082019050919050565b6000610d43602283610f5a565b9150610d4e82611165565b604082019050919050565b6000610d66602683610f5a565b9150610d71826111b4565b604082019050919050565b6000610d89602883610f5a565b9150610d9482611203565b604082019050919050565b6000610dac602583610f5a565b9150610db782611252565b604082019050919050565b6000610dcf602483610f5a565b9150610dda826112a1565b604082019050919050565b6000610df2602583610f5a565b9150610dfd826112f0565b604082019050919050565b610e1181611033565b82525050565b6000602082019050610e2c6000830184610ccb565b92915050565b60006020820190508181036000830152610e4c8184610cda565b905092915050565b60006020820190508181036000830152610e6d81610d13565b9050919050565b60006020820190508181036000830152610e8d81610d36565b9050919050565b60006020820190508181036000830152610ead81610d59565b9050919050565b60006020820190508181036000830152610ecd81610d7c565b9050919050565b60006020820190508181036000830152610eed81610d9f565b9050919050565b60006020820190508181036000830152610f0d81610dc2565b9050919050565b60006020820190508181036000830152610f2d81610de5565b9050919050565b6000602082019050610f496000830184610e08565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f7682611033565b9150610f8183611033565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610fb657610fb56110a2565b5b828201905092915050565b6000610fcc82611033565b9150610fd783611033565b925082821015610fea57610fe96110a2565b5b828203905092915050565b600061100082611013565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561105b578082015181840152602081019050611040565b8381111561106a576000848401525b50505050565b6000600282049050600182168061108857607f821691505b6020821081141561109c5761109b6110d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61134881610ff5565b811461135357600080fd5b50565b61135f81611033565b811461136a57600080fd5b5056fea26469706673582212203aedd6e4605b2b469d43d08a151f2615641e1b969a29bef4b20e013dca70b36764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000186a00000000000000000000000001b7faddeaabc029511d8d1e643e21cc0cded08df0000000000000000000000001b7faddeaabc029511d8d1e643e21cc0cded08df00000000000000000000000000000000000000000000000000000000000000064e6f20546178000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e4f544158000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): No Tax
Arg [1] : symbol_ (string): NOTAX
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 100000
Arg [4] : tokenOwner_ (address): 0x1B7faDdEaabC029511D8D1E643E21cc0CDEd08Df
Arg [5] : feeReceiver_ (address): 0x1B7faDdEaabC029511D8D1E643E21cc0CDEd08Df

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000186a0
Arg [4] : 0000000000000000000000001b7faddeaabc029511d8d1e643e21cc0cded08df
Arg [5] : 0000000000000000000000001b7faddeaabc029511d8d1e643e21cc0cded08df
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 4e6f205461780000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4e4f544158000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10979:373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5262:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7438:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6391:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8089:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6224:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8920:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6562:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5481:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9638:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6902:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7140:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5262:100;5316:13;5349:5;5342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5262:100;:::o;7438:169::-;7521:4;7538:39;7547:12;:10;:12::i;:::-;7561:7;7570:6;7538:8;:39::i;:::-;7595:4;7588:11;;7438:169;;;;:::o;6391:108::-;6452:7;6479:12;;6472:19;;6391:108;:::o;8089:422::-;8195:4;8212:36;8222:6;8230:9;8241:6;8212:9;:36::i;:::-;8261:24;8288:11;:19;8300:6;8288:19;;;;;;;;;;;;;;;:33;8308:12;:10;:12::i;:::-;8288:33;;;;;;;;;;;;;;;;8261:60;;8360:6;8340:16;:26;;8332:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8422:57;8431:6;8439:12;:10;:12::i;:::-;8472:6;8453:16;:25;;;;:::i;:::-;8422:8;:57::i;:::-;8499:4;8492:11;;;8089:422;;;;;:::o;6224:102::-;6282:7;6309:9;;6302:16;;6224:102;:::o;8920:215::-;9008:4;9025:80;9034:12;:10;:12::i;:::-;9048:7;9094:10;9057:11;:25;9069:12;:10;:12::i;:::-;9057:25;;;;;;;;;;;;;;;:34;9083:7;9057:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9025:8;:80::i;:::-;9123:4;9116:11;;8920:215;;;;:::o;6562:127::-;6636:7;6663:9;:18;6673:7;6663:18;;;;;;;;;;;;;;;;6656:25;;6562:127;;;:::o;5481:104::-;5537:13;5570:7;5563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5481:104;:::o;9638:377::-;9731:4;9748:24;9775:11;:25;9787:12;:10;:12::i;:::-;9775:25;;;;;;;;;;;;;;;:34;9801:7;9775:34;;;;;;;;;;;;;;;;9748:61;;9848:15;9828:16;:35;;9820:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9916:67;9925:12;:10;:12::i;:::-;9939:7;9967:15;9948:16;:34;;;;:::i;:::-;9916:8;:67::i;:::-;10003:4;9996:11;;;9638:377;;;;:::o;6902:175::-;6988:4;7005:42;7015:12;:10;:12::i;:::-;7029:9;7040:6;7005:9;:42::i;:::-;7065:4;7058:11;;6902:175;;;;:::o;7140:151::-;7229:7;7256:11;:18;7268:5;7256:18;;;;;;;;;;;;;;;:27;7275:7;7256:27;;;;;;;;;;;;;;;;7249:34;;7140:151;;;;:::o;3750:98::-;3803:7;3830:10;3823:17;;3750:98;:::o;10583:346::-;10702:1;10685:19;;:5;:19;;;;10677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10783:1;10764:21;;:7;:21;;;;10756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10867:6;10837:11;:18;10849:5;10837:18;;;;;;;;;;;;;;;:27;10856:7;10837:27;;;;;;;;;;;;;;;:36;;;;10905:7;10889:32;;10898:5;10889:32;;;10914:6;10889:32;;;;;;:::i;:::-;;;;;;;;10583:346;;;:::o;10025:546::-;10149:1;10131:20;;:6;:20;;;;10123:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10233:1;10212:23;;:9;:23;;;;10204:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10290:21;10314:9;:17;10324:6;10314:17;;;;;;;;;;;;;;;;10290:41;;10367:6;10350:13;:23;;10342:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10463:6;10447:13;:22;;;;:::i;:::-;10427:9;:17;10437:6;10427:17;;;;;;;;;;;;;;;:42;;;;10504:6;10480:9;:20;10490:9;10480:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10545:9;10528:35;;10537:6;10528:35;;;10556:6;10528:35;;;;;;:::i;:::-;;;;;;;;10112:459;10025:546;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2217:109;;:::o;2332:364::-;2420:3;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;2332:364;;;;:::o;2702:366::-;2844:3;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2702:366;;;:::o;3074:::-;3216:3;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3074:366;;;:::o;3446:::-;3588:3;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3446:366;;;:::o;3818:::-;3960:3;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3818:366;;;:::o;4190:::-;4332:3;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4190:366;;;:::o;4562:::-;4704:3;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4562:366;;;:::o;4934:::-;5076:3;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;4934:366;;;:::o;5306:118::-;5393:24;5411:5;5393:24;:::i;:::-;5388:3;5381:37;5306:118;;:::o;5430:210::-;5517:4;5555:2;5544:9;5540:18;5532:26;;5568:65;5630:1;5619:9;5615:17;5606:6;5568:65;:::i;:::-;5430:210;;;;:::o;5646:313::-;5759:4;5797:2;5786:9;5782:18;5774:26;;5846:9;5840:4;5836:20;5832:1;5821:9;5817:17;5810:47;5874:78;5947:4;5938:6;5874:78;:::i;:::-;5866:86;;5646:313;;;;:::o;5965:419::-;6131:4;6169:2;6158:9;6154:18;6146:26;;6218:9;6212:4;6208:20;6204:1;6193:9;6189:17;6182:47;6246:131;6372:4;6246:131;:::i;:::-;6238:139;;5965:419;;;:::o;6390:::-;6556:4;6594:2;6583:9;6579:18;6571:26;;6643:9;6637:4;6633:20;6629:1;6618:9;6614:17;6607:47;6671:131;6797:4;6671:131;:::i;:::-;6663:139;;6390:419;;;:::o;6815:::-;6981:4;7019:2;7008:9;7004:18;6996:26;;7068:9;7062:4;7058:20;7054:1;7043:9;7039:17;7032:47;7096:131;7222:4;7096:131;:::i;:::-;7088:139;;6815:419;;;:::o;7240:::-;7406:4;7444:2;7433:9;7429:18;7421:26;;7493:9;7487:4;7483:20;7479:1;7468:9;7464:17;7457:47;7521:131;7647:4;7521:131;:::i;:::-;7513:139;;7240:419;;;:::o;7665:::-;7831:4;7869:2;7858:9;7854:18;7846:26;;7918:9;7912:4;7908:20;7904:1;7893:9;7889:17;7882:47;7946:131;8072:4;7946:131;:::i;:::-;7938:139;;7665:419;;;:::o;8090:::-;8256:4;8294:2;8283:9;8279:18;8271:26;;8343:9;8337:4;8333:20;8329:1;8318:9;8314:17;8307:47;8371:131;8497:4;8371:131;:::i;:::-;8363:139;;8090:419;;;:::o;8515:::-;8681:4;8719:2;8708:9;8704:18;8696:26;;8768:9;8762:4;8758:20;8754:1;8743:9;8739:17;8732:47;8796:131;8922:4;8796:131;:::i;:::-;8788:139;;8515:419;;;:::o;8940:222::-;9033:4;9071:2;9060:9;9056:18;9048:26;;9084:71;9152:1;9141:9;9137:17;9128:6;9084:71;:::i;:::-;8940:222;;;;:::o;9249:99::-;9301:6;9335:5;9329:12;9319:22;;9249:99;;;:::o;9354:169::-;9438:11;9472:6;9467:3;9460:19;9512:4;9507:3;9503:14;9488:29;;9354:169;;;;:::o;9529:305::-;9569:3;9588:20;9606:1;9588:20;:::i;:::-;9583:25;;9622:20;9640:1;9622:20;:::i;:::-;9617:25;;9776:1;9708:66;9704:74;9701:1;9698:81;9695:107;;;9782:18;;:::i;:::-;9695:107;9826:1;9823;9819:9;9812:16;;9529:305;;;;:::o;9840:191::-;9880:4;9900:20;9918:1;9900:20;:::i;:::-;9895:25;;9934:20;9952:1;9934:20;:::i;:::-;9929:25;;9973:1;9970;9967:8;9964:34;;;9978:18;;:::i;:::-;9964:34;10023:1;10020;10016:9;10008:17;;9840:191;;;;:::o;10037:96::-;10074:7;10103:24;10121:5;10103:24;:::i;:::-;10092:35;;10037:96;;;:::o;10139:90::-;10173:7;10216:5;10209:13;10202:21;10191:32;;10139:90;;;:::o;10235:126::-;10272:7;10312:42;10305:5;10301:54;10290:65;;10235:126;;;:::o;10367:77::-;10404:7;10433:5;10422:16;;10367:77;;;:::o;10450:307::-;10518:1;10528:113;10542:6;10539:1;10536:13;10528:113;;;10627:1;10622:3;10618:11;10612:18;10608:1;10603:3;10599:11;10592:39;10564:2;10561:1;10557:10;10552:15;;10528:113;;;10659:6;10656:1;10653:13;10650:101;;;10739:1;10730:6;10725:3;10721:16;10714:27;10650:101;10499:258;10450:307;;;:::o;10763:320::-;10807:6;10844:1;10838:4;10834:12;10824:22;;10891:1;10885:4;10881:12;10912:18;10902:81;;10968:4;10960:6;10956:17;10946:27;;10902:81;11030:2;11022:6;11019:14;10999:18;10996:38;10993:84;;;11049:18;;:::i;:::-;10993:84;10814:269;10763:320;;;:::o;11089:180::-;11137:77;11134:1;11127:88;11234:4;11231:1;11224:15;11258:4;11255:1;11248:15;11275:180;11323:77;11320:1;11313:88;11420:4;11417:1;11410:15;11444:4;11441:1;11434:15;11584:117;11693:1;11690;11683:12;11707:102;11748:6;11799:2;11795:7;11790:2;11783:5;11779:14;11775:28;11765:38;;11707:102;;;:::o;11815:222::-;11955:34;11951:1;11943:6;11939:14;11932:58;12024:5;12019:2;12011:6;12007:15;12000:30;11815:222;:::o;12043:221::-;12183:34;12179:1;12171:6;12167:14;12160:58;12252:4;12247:2;12239:6;12235:15;12228:29;12043:221;:::o;12270:225::-;12410:34;12406:1;12398:6;12394:14;12387:58;12479:8;12474:2;12466:6;12462:15;12455:33;12270:225;:::o;12501:227::-;12641:34;12637:1;12629:6;12625:14;12618:58;12710:10;12705:2;12697:6;12693:15;12686:35;12501:227;:::o;12734:224::-;12874:34;12870:1;12862:6;12858:14;12851:58;12943:7;12938:2;12930:6;12926:15;12919:32;12734:224;:::o;12964:223::-;13104:34;13100:1;13092:6;13088:14;13081:58;13173:6;13168:2;13160:6;13156:15;13149:31;12964:223;:::o;13193:224::-;13333:34;13329:1;13321:6;13317:14;13310:58;13402:7;13397:2;13389:6;13385:15;13378:32;13193:224;:::o;13423:122::-;13496:24;13514:5;13496:24;:::i;:::-;13489:5;13486:35;13476:63;;13535:1;13532;13525:12;13476:63;13423:122;:::o;13551:::-;13624:24;13642:5;13624:24;:::i;:::-;13617:5;13614:35;13604:63;;13663:1;13660;13653:12;13604:63;13551:122;:::o

Swarm Source

ipfs://3aedd6e4605b2b469d43d08a151f2615641e1b969a29bef4b20e013dca70b367
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.