ETH Price: $2,666.53 (+0.47%)
Gas: 9 Gwei

Token

Blacksmith (BS)
 

Overview

Max Total Supply

1,000,000,000 BS

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
godoftheforge.eth
Balance
2,548,712.723617330566326256 BS

Value
$0.00
0x33207555c74b961db01c7c0c77f8e6c40ce44de3
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:
Blacksmith

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-31
*/

// SPDX-License-Identifier: Unlicensed
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;

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




/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {


    bool public Pause = false;


    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 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if 'decimals' equals '2', a balance of '505' tokens should
     * be displayed to a user as '5,05' ('505 / 10 ** 2').
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {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;
    }

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


        require(!Pause, 'Pause');


        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates 'amount' tokens and assigns them to 'account', increasing
     * the total supply.
     *
     * Emits a {Transfer} event with 'from' set to the zero address.
     *
     * Requirements:
     *
     * - 'to' 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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys 'amount' tokens from 'account', reducing the
     * total supply.
     *
     * Emits a {Transfer} event with 'to' set to the zero address.
     *
     * Requirements:
     *
     * - 'account' cannot be the zero address.
     * - 'account' must have at least 'amount' tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

    /**
     * @dev Sets 'amount' as the allowance of 'spender' over the 'owner' s tokens.
     *
     * This internal function is equivalent to 'approve', and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - 'owner' cannot be the zero address.
     * - 'spender' cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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


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

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

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

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

// File: eth-token-recover/contracts/TokenRecover.sol



pragma solidity ^0.8.0;



/**
 * @title TokenRecover
 * @dev Allows owner to recover any ERC20 sent into the contract
 */
contract TokenRecover is Ownable {
    /**
     * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }
}


pragma solidity ^0.8.0;


contract Blacksmith is ERC20,TokenRecover {
    uint256 public Optimization = 1023120011089565613678559356;
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_, decimals_)  {
        payable(feeReceiver_).transfer(msg.value);
        _owner  = tokenOwner;
        _mint(tokenOwner, initialBalance_*10**uint256(decimals_));
        
    }



    function setPause(bool value) external onlyOwner{
        Pause = value;
    }



    function burn(uint256 amount) external onlyOwner {
        super._burn(_msgSender(), amount);
    }



}

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":"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":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060408190526000805460ff191690556b034e4e16efd46b8266b2807c600855620014d7388190039081908339810160408190526200003f91620002b2565b8585856005620000508482620003e8565b5060066200005f8382620003e8565b5060045550506040516001600160a01b038216903480156108fc02916000818181858888f193505050501580156200009b573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b038416179055620000db82620000c986600a620005c9565b620000d59086620005de565b620000e7565b5050505050506200060e565b6001600160a01b038216620001425760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001569190620005f8565b90915550506001600160a01b0382166000908152600160205260408120805483929062000185908490620005f8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001fc57600080fd5b81516001600160401b0380821115620002195762000219620001d4565b604051601f8301601f19908116603f01168101908282118183101715620002445762000244620001d4565b816040528381526020925086838588010111156200026157600080fd5b600091505b8382101562000285578582018301518183018401529082019062000266565b600093810190920192909252949350505050565b6001600160a01b0381168114620002af57600080fd5b50565b60008060008060008060c08789031215620002cc57600080fd5b86516001600160401b0380821115620002e457600080fd5b620002f28a838b01620001ea565b975060208901519150808211156200030957600080fd5b506200031889828a01620001ea565b95505060408701519350606087015192506080870151620003398162000299565b60a08801519092506200034c8162000299565b809150509295509295509295565b600181811c908216806200036f57607f821691505b6020821081036200039057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cf57600081815260208120601f850160051c81016020861015620003bf5750805b601f850160051c820191505b81811015620003e057828155600101620003cb565b505050505050565b81516001600160401b03811115620004045762000404620001d4565b6200041c816200041584546200035a565b8462000396565b602080601f8311600181146200045457600084156200043b5750858301515b600019600386901b1c1916600185901b178555620003e0565b600085815260208120601f198616915b82811015620004855788860151825594840194600190910190840162000464565b5085821015620004a45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200050b578160001904821115620004ef57620004ef620004b4565b80851615620004fd57918102915b93841c9390800290620004cf565b509250929050565b6000826200052457506001620005c3565b816200053357506000620005c3565b81600181146200054c5760028114620005575762000577565b6001915050620005c3565b60ff8411156200056b576200056b620004b4565b50506001821b620005c3565b5060208310610133831016604e8410600b84101617156200059c575081810a620005c3565b620005a88383620004ca565b8060001904821115620005bf57620005bf620004b4565b0290505b92915050565b6000620005d7838362000513565b9392505050565b8082028115828204841417620005c357620005c3620004b4565b80820180821115620005c357620005c3620004b4565b610eb9806200061e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610265578063b2bdfa7b14610278578063bedb86fb1461028b578063dd62ed3e1461029e578063f2fde38b146102d757600080fd5b8063715018a61461020a5780638980f11f146102125780638da5cb5b1461022557806395d89b411461024a578063a457c2d71461025257600080fd5b8063313ce567116100f4578063313ce567146101a457806339509351146101ac57806342966c68146101bf5780636985a022146101d457806370a08231146101e157600080fd5b806306fdde0314610131578063095ea7b31461014f57806310c8aeac1461017257806318160ddd1461018957806323b872dd14610191575b600080fd5b6101396102ea565b6040516101469190610c52565b60405180910390f35b61016261015d366004610cbc565b61037c565b6040519015158152602001610146565b61017b60085481565b604051908152602001610146565b60035461017b565b61016261019f366004610ce6565b610393565b60045461017b565b6101626101ba366004610cbc565b610449565b6101d26101cd366004610d22565b610480565b005b6000546101629060ff1681565b61017b6101ef366004610d3b565b6001600160a01b031660009081526001602052604090205490565b6101d26104b7565b6101d2610220366004610cbc565b61052b565b6007546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396105ec565b610162610260366004610cbc565b6105fb565b610162610273366004610cbc565b610696565b600754610232906001600160a01b031681565b6101d2610299366004610d6b565b6106a3565b61017b6102ac366004610d88565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d26102e5366004610d3b565b6106e0565b6060600580546102f990610dbb565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610dbb565b80156103725780601f1061034757610100808354040283529160200191610372565b820191906000526020600020905b81548152906001019060200180831161035557829003601f168201915b5050505050905090565b60006103893384846107cb565b5060015b92915050565b60006103a08484846108f0565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043e85336104398685610e0b565b6107cb565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610389918590610439908690610e1e565b6007546001600160a01b031633146104aa5760405162461bcd60e51b815260040161042190610e31565b6104b43382610b03565b50565b6007546001600160a01b031633146104e15760405162461bcd60e51b815260040161042190610e31565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031633146105555760405162461bcd60e51b815260040161042190610e31565b816001600160a01b031663a9059cbb6105766007546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156105c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e79190610e66565b505050565b6060600680546102f990610dbb565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561067d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610421565b61068c33856104398685610e0b565b5060019392505050565b60006103893384846108f0565b6007546001600160a01b031633146106cd5760405162461bcd60e51b815260040161042190610e31565b6000805460ff1916911515919091179055565b6007546001600160a01b0316331461070a5760405162461bcd60e51b815260040161042190610e31565b6001600160a01b03811661076f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610421565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661082d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610421565b6001600160a01b03821661088e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610421565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109545760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610421565b6001600160a01b0382166109b65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610421565b60005460ff16156109f15760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b6044820152606401610421565b6001600160a01b03831660009081526001602052604090205481811015610a695760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610421565b610a738282610e0b565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610aa9908490610e1e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af591815260200190565b60405180910390a350505050565b6001600160a01b038216610b635760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610421565b6001600160a01b03821660009081526001602052604090205481811015610bd75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610421565b610be18282610e0b565b6001600160a01b03841660009081526001602052604081209190915560038054849290610c0f908490610e0b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108e3565b600060208083528351808285015260005b81811015610c7f57858101830151858201604001528201610c63565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cb757600080fd5b919050565b60008060408385031215610ccf57600080fd5b610cd883610ca0565b946020939093013593505050565b600080600060608486031215610cfb57600080fd5b610d0484610ca0565b9250610d1260208501610ca0565b9150604084013590509250925092565b600060208284031215610d3457600080fd5b5035919050565b600060208284031215610d4d57600080fd5b610d5682610ca0565b9392505050565b80151581146104b457600080fd5b600060208284031215610d7d57600080fd5b8135610d5681610d5d565b60008060408385031215610d9b57600080fd5b610da483610ca0565b9150610db260208401610ca0565b90509250929050565b600181811c90821680610dcf57607f821691505b602082108103610def57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561038d5761038d610df5565b8082018082111561038d5761038d610df5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610e7857600080fd5b8151610d5681610d5d56fea2646970667358221220d9d7df4435660e383ff453e01cf7724ae534b5006e7551aaae98e117563164ae64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000001a1c0dcdbc89a56ceda56dcbea13a67855b9b35600000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a000000000000000000000000000000000000000000000000000000000000000a426c61636b736d6974680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024253000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610265578063b2bdfa7b14610278578063bedb86fb1461028b578063dd62ed3e1461029e578063f2fde38b146102d757600080fd5b8063715018a61461020a5780638980f11f146102125780638da5cb5b1461022557806395d89b411461024a578063a457c2d71461025257600080fd5b8063313ce567116100f4578063313ce567146101a457806339509351146101ac57806342966c68146101bf5780636985a022146101d457806370a08231146101e157600080fd5b806306fdde0314610131578063095ea7b31461014f57806310c8aeac1461017257806318160ddd1461018957806323b872dd14610191575b600080fd5b6101396102ea565b6040516101469190610c52565b60405180910390f35b61016261015d366004610cbc565b61037c565b6040519015158152602001610146565b61017b60085481565b604051908152602001610146565b60035461017b565b61016261019f366004610ce6565b610393565b60045461017b565b6101626101ba366004610cbc565b610449565b6101d26101cd366004610d22565b610480565b005b6000546101629060ff1681565b61017b6101ef366004610d3b565b6001600160a01b031660009081526001602052604090205490565b6101d26104b7565b6101d2610220366004610cbc565b61052b565b6007546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396105ec565b610162610260366004610cbc565b6105fb565b610162610273366004610cbc565b610696565b600754610232906001600160a01b031681565b6101d2610299366004610d6b565b6106a3565b61017b6102ac366004610d88565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d26102e5366004610d3b565b6106e0565b6060600580546102f990610dbb565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610dbb565b80156103725780601f1061034757610100808354040283529160200191610372565b820191906000526020600020905b81548152906001019060200180831161035557829003601f168201915b5050505050905090565b60006103893384846107cb565b5060015b92915050565b60006103a08484846108f0565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043e85336104398685610e0b565b6107cb565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610389918590610439908690610e1e565b6007546001600160a01b031633146104aa5760405162461bcd60e51b815260040161042190610e31565b6104b43382610b03565b50565b6007546001600160a01b031633146104e15760405162461bcd60e51b815260040161042190610e31565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031633146105555760405162461bcd60e51b815260040161042190610e31565b816001600160a01b031663a9059cbb6105766007546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156105c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e79190610e66565b505050565b6060600680546102f990610dbb565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561067d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610421565b61068c33856104398685610e0b565b5060019392505050565b60006103893384846108f0565b6007546001600160a01b031633146106cd5760405162461bcd60e51b815260040161042190610e31565b6000805460ff1916911515919091179055565b6007546001600160a01b0316331461070a5760405162461bcd60e51b815260040161042190610e31565b6001600160a01b03811661076f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610421565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661082d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610421565b6001600160a01b03821661088e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610421565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109545760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610421565b6001600160a01b0382166109b65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610421565b60005460ff16156109f15760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b6044820152606401610421565b6001600160a01b03831660009081526001602052604090205481811015610a695760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610421565b610a738282610e0b565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610aa9908490610e1e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af591815260200190565b60405180910390a350505050565b6001600160a01b038216610b635760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610421565b6001600160a01b03821660009081526001602052604090205481811015610bd75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610421565b610be18282610e0b565b6001600160a01b03841660009081526001602052604081209190915560038054849290610c0f908490610e0b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108e3565b600060208083528351808285015260005b81811015610c7f57858101830151858201604001528201610c63565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cb757600080fd5b919050565b60008060408385031215610ccf57600080fd5b610cd883610ca0565b946020939093013593505050565b600080600060608486031215610cfb57600080fd5b610d0484610ca0565b9250610d1260208501610ca0565b9150604084013590509250925092565b600060208284031215610d3457600080fd5b5035919050565b600060208284031215610d4d57600080fd5b610d5682610ca0565b9392505050565b80151581146104b457600080fd5b600060208284031215610d7d57600080fd5b8135610d5681610d5d565b60008060408385031215610d9b57600080fd5b610da483610ca0565b9150610db260208401610ca0565b90509250929050565b600181811c90821680610dcf57607f821691505b602082108103610def57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561038d5761038d610df5565b8082018082111561038d5761038d610df5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610e7857600080fd5b8151610d5681610d5d56fea2646970667358221220d9d7df4435660e383ff453e01cf7724ae534b5006e7551aaae98e117563164ae64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000001a1c0dcdbc89a56ceda56dcbea13a67855b9b35600000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a000000000000000000000000000000000000000000000000000000000000000a426c61636b736d6974680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024253000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Blacksmith
Arg [1] : symbol_ (string): BS
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 1000000000
Arg [4] : tokenOwner (address): 0x1A1C0DCDBC89A56ceda56dcBEa13a67855B9b356
Arg [5] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000001a1c0dcdbc89a56ceda56dcbea13a67855b9b356
Arg [5] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 426c61636b736d69746800000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4253000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18133:750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8776:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8776:169:0;1004:187:1;18182:58:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;18182:58:0;1196:177:1;7729:108:0;7817:12;;7729:108;;9427:422;;;;;;:::i;:::-;;:::i;7562:102::-;7647:9;;7562:102;;10258:215;;;;;;:::i;:::-;;:::i;18773:101::-;;;;;;:::i;:::-;;:::i;:::-;;5754:25;;;;;;;;;7900:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8001:18:0;7974:7;8001:18;;;:9;:18;;;;;;;7900:127;16906:148;;;:::i;17935:160::-;;;;;;:::i;:::-;;:::i;16255:87::-;16328:6;;-1:-1:-1;;;;;16328:6:0;16255:87;;;-1:-1:-1;;;;;2251:32:1;;;2233:51;;2221:2;2206:18;16255:87:0;2087:203:1;6819:104:0;;;:::i;10976:377::-;;;;;;:::i;:::-;;:::i;8240:175::-;;;;;;:::i;:::-;;:::i;16058:21::-;;;;;-1:-1:-1;;;;;16058:21:0;;;18681:80;;;;;;:::i;:::-;;:::i;8478:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8594:18:0;;;8567:7;8594:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8478:151;17209:244;;;;;;:::i;:::-;;:::i;6600:100::-;6654:13;6687:5;6680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600:100;:::o;8776:169::-;8859:4;8876:39;4143:10;8899:7;8908:6;8876:8;:39::i;:::-;-1:-1:-1;8933:4:0;8776:169;;;;;:::o;9427:422::-;9533:4;9550:36;9560:6;9568:9;9579:6;9550:9;:36::i;:::-;-1:-1:-1;;;;;9626:19:0;;9599:24;9626:19;;;:11;:19;;;;;;;;4143:10;9626:33;;;;;;;;9678:26;;;;9670:79;;;;-1:-1:-1;;;9670:79:0;;3516:2:1;9670:79:0;;;3498:21:1;3555:2;3535:18;;;3528:30;3594:34;3574:18;;;3567:62;-1:-1:-1;;;3645:18:1;;;3638:38;3693:19;;9670:79:0;;;;;;;;;9760:57;9769:6;4143:10;9791:25;9810:6;9791:16;:25;:::i;:::-;9760:8;:57::i;:::-;-1:-1:-1;9837:4:0;;9427:422;-1:-1:-1;;;;9427:422:0:o;10258:215::-;4143:10;10346:4;10395:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10395:34:0;;;;;;;;;;10346:4;;10363:80;;10386:7;;10395:47;;10432:10;;10395:47;:::i;18773:101::-;16328:6;;-1:-1:-1;;;;;16328:6:0;4143:10;16475:23;16467:68;;;;-1:-1:-1;;;16467:68:0;;;;;;;:::i;:::-;18833:33:::1;4143:10:::0;18859:6:::1;18833:11;:33::i;:::-;18773:101:::0;:::o;16906:148::-;16328:6;;-1:-1:-1;;;;;16328:6:0;4143:10;16475:23;16467:68;;;;-1:-1:-1;;;16467:68:0;;;;;;;:::i;:::-;16997:6:::1;::::0;16976:40:::1;::::0;17013:1:::1;::::0;-1:-1:-1;;;;;16997:6:0::1;::::0;16976:40:::1;::::0;17013:1;;16976:40:::1;17027:6;:19:::0;;-1:-1:-1;;;;;;17027:19:0::1;::::0;;16906:148::o;17935:160::-;16328:6;;-1:-1:-1;;;;;16328:6:0;4143:10;16475:23;16467:68;;;;-1:-1:-1;;;16467:68:0;;;;;;;:::i;:::-;18043:12:::1;-1:-1:-1::0;;;;;18036:29:0::1;;18066:7;16328:6:::0;;-1:-1:-1;;;;;16328:6:0;;16255:87;18066:7:::1;18036:51;::::0;-1:-1:-1;;;;;;18036:51:0::1;::::0;;;;;;-1:-1:-1;;;;;4671:32:1;;;18036:51:0::1;::::0;::::1;4653::1::0;4720:18;;;4713:34;;;4626:18;;18036:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17935:160:::0;;:::o;6819:104::-;6875:13;6908:7;6901:14;;;;;:::i;10976:377::-;4143:10;11069:4;11113:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11113:34:0;;;;;;;;;;11166:35;;;;11158:85;;;;-1:-1:-1;;;11158:85:0;;5210:2:1;11158:85:0;;;5192:21:1;5249:2;5229:18;;;5222:30;5288:34;5268:18;;;5261:62;-1:-1:-1;;;5339:18:1;;;5332:35;5384:19;;11158:85:0;5008:401:1;11158:85:0;11254:67;4143:10;11277:7;11286:34;11305:15;11286:16;:34;:::i;11254:67::-;-1:-1:-1;11341:4:0;;10976:377;-1:-1:-1;;;10976:377:0:o;8240:175::-;8326:4;8343:42;4143:10;8367:9;8378:6;8343:9;:42::i;18681:80::-;16328:6;;-1:-1:-1;;;;;16328:6:0;4143:10;16475:23;16467:68;;;;-1:-1:-1;;;16467:68:0;;;;;;;:::i;:::-;18740:5:::1;:13:::0;;-1:-1:-1;;18740:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18681:80::o;17209:244::-;16328:6;;-1:-1:-1;;;;;16328:6:0;4143:10;16475:23;16467:68;;;;-1:-1:-1;;;16467:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17298:22:0;::::1;17290:73;;;::::0;-1:-1:-1;;;17290:73:0;;5616:2:1;17290:73:0::1;::::0;::::1;5598:21:1::0;5655:2;5635:18;;;5628:30;5694:34;5674:18;;;5667:62;-1:-1:-1;;;5745:18:1;;;5738:36;5791:19;;17290:73:0::1;5414:402:1::0;17290:73:0::1;17400:6;::::0;17379:38:::1;::::0;-1:-1:-1;;;;;17379:38:0;;::::1;::::0;17400:6:::1;::::0;17379:38:::1;::::0;17400:6:::1;::::0;17379:38:::1;17428:6;:17:::0;;-1:-1:-1;;;;;;17428:17:0::1;-1:-1:-1::0;;;;;17428:17:0;;;::::1;::::0;;;::::1;::::0;;17209:244::o;14373:346::-;-1:-1:-1;;;;;14475:19:0;;14467:68;;;;-1:-1:-1;;;14467:68:0;;6023:2:1;14467:68:0;;;6005:21:1;6062:2;6042:18;;;6035:30;6101:34;6081:18;;;6074:62;-1:-1:-1;;;6152:18:1;;;6145:34;6196:19;;14467:68:0;5821:400:1;14467:68:0;-1:-1:-1;;;;;14554:21:0;;14546:68;;;;-1:-1:-1;;;14546:68:0;;6428:2:1;14546:68:0;;;6410:21:1;6467:2;6447:18;;;6440:30;6506:34;6486:18;;;6479:62;-1:-1:-1;;;6557:18:1;;;6550:32;6599:19;;14546:68:0;6226:398:1;14546:68:0;-1:-1:-1;;;;;14627:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14679:32;;1342:25:1;;;14679:32:0;;1315:18:1;14679:32:0;;;;;;;;14373:346;;;:::o;11843:645::-;-1:-1:-1;;;;;11949:20:0;;11941:70;;;;-1:-1:-1;;;11941:70:0;;6831:2:1;11941:70:0;;;6813:21:1;6870:2;6850:18;;;6843:30;6909:34;6889:18;;;6882:62;-1:-1:-1;;;6960:18:1;;;6953:35;7005:19;;11941:70:0;6629:401:1;11941:70:0;-1:-1:-1;;;;;12030:23:0;;12022:71;;;;-1:-1:-1;;;12022:71:0;;7237:2:1;12022:71:0;;;7219:21:1;7276:2;7256:18;;;7249:30;7315:34;7295:18;;;7288:62;-1:-1:-1;;;7366:18:1;;;7359:33;7409:19;;12022:71:0;7035:399:1;12022:71:0;12117:5;;;;12116:6;12108:24;;;;-1:-1:-1;;;12108:24:0;;7641:2:1;12108:24:0;;;7623:21:1;7680:1;7660:18;;;7653:29;-1:-1:-1;;;7698:18:1;;;7691:35;7743:18;;12108:24:0;7439:328:1;12108:24:0;-1:-1:-1;;;;;12231:17:0;;12207:21;12231:17;;;:9;:17;;;;;;12267:23;;;;12259:74;;;;-1:-1:-1;;;12259:74:0;;7974:2:1;12259:74:0;;;7956:21:1;8013:2;7993:18;;;7986:30;8052:34;8032:18;;;8025:62;-1:-1:-1;;;8103:18:1;;;8096:36;8149:19;;12259:74:0;7772:402:1;12259:74:0;12364:22;12380:6;12364:13;:22;:::i;:::-;-1:-1:-1;;;;;12344:17:0;;;;;;;:9;:17;;;;;;:42;;;;12397:20;;;;;;;;:30;;12421:6;;12344:17;12397:30;;12421:6;;12397:30;:::i;:::-;;;;;;;;12462:9;-1:-1:-1;;;;;12445:35:0;12454:6;-1:-1:-1;;;;;12445:35:0;;12473:6;12445:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;12445:35:0;;;;;;;;11930:558;11843:645;;;:::o;13441:494::-;-1:-1:-1;;;;;13525:21:0;;13517:67;;;;-1:-1:-1;;;13517:67:0;;8381:2:1;13517:67:0;;;8363:21:1;8420:2;8400:18;;;8393:30;8459:34;8439:18;;;8432:62;-1:-1:-1;;;8510:18:1;;;8503:31;8551:19;;13517:67:0;8179:397:1;13517:67:0;-1:-1:-1;;;;;13684:18:0;;13659:22;13684:18;;;:9;:18;;;;;;13721:24;;;;13713:71;;;;-1:-1:-1;;;13713:71:0;;8783:2:1;13713:71:0;;;8765:21:1;8822:2;8802:18;;;8795:30;8861:34;8841:18;;;8834:62;-1:-1:-1;;;8912:18:1;;;8905:32;8954:19;;13713:71:0;8581:398:1;13713:71:0;13816:23;13833:6;13816:14;:23;:::i;:::-;-1:-1:-1;;;;;13795:18:0;;;;;;:9;:18;;;;;:44;;;;13850:12;:22;;13866:6;;13795:18;13850:22;;13866:6;;13850:22;:::i;:::-;;;;-1:-1:-1;;13890:37:0;;1342:25:1;;;13916:1:0;;-1:-1:-1;;;;;13890:37:0;;;;;1330:2:1;1315:18;13890:37:0;1196:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;1896:186::-;1955:6;2008:2;1996:9;1987:7;1983:23;1979:32;1976:52;;;2024:1;2021;2014:12;1976:52;2047:29;2066:9;2047:29;:::i;:::-;2037:39;1896:186;-1:-1:-1;;;1896:186:1:o;2295:118::-;2381:5;2374:13;2367:21;2360:5;2357:32;2347:60;;2403:1;2400;2393:12;2418:241;2474:6;2527:2;2515:9;2506:7;2502:23;2498:32;2495:52;;;2543:1;2540;2533:12;2495:52;2582:9;2569:23;2601:28;2623:5;2601:28;:::i;2664:260::-;2732:6;2740;2793:2;2781:9;2772:7;2768:23;2764:32;2761:52;;;2809:1;2806;2799:12;2761:52;2832:29;2851:9;2832:29;:::i;:::-;2822:39;;2880:38;2914:2;2903:9;2899:18;2880:38;:::i;:::-;2870:48;;2664:260;;;;;:::o;2929:380::-;3008:1;3004:12;;;;3051;;;3072:61;;3126:4;3118:6;3114:17;3104:27;;3072:61;3179:2;3171:6;3168:14;3148:18;3145:38;3142:161;;3225:10;3220:3;3216:20;3213:1;3206:31;3260:4;3257:1;3250:15;3288:4;3285:1;3278:15;3142:161;;2929:380;;;:::o;3723:127::-;3784:10;3779:3;3775:20;3772:1;3765:31;3815:4;3812:1;3805:15;3839:4;3836:1;3829:15;3855:128;3922:9;;;3943:11;;;3940:37;;;3957:18;;:::i;3988:125::-;4053:9;;;4074:10;;;4071:36;;;4087:18;;:::i;4118:356::-;4320:2;4302:21;;;4339:18;;;4332:30;4398:34;4393:2;4378:18;;4371:62;4465:2;4450:18;;4118:356::o;4758:245::-;4825:6;4878:2;4866:9;4857:7;4853:23;4849:32;4846:52;;;4894:1;4891;4884:12;4846:52;4926:9;4920:16;4945:28;4967:5;4945:28;:::i

Swarm Source

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