ETH Price: $2,045.10 (+6.83%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer153076562022-08-09 11:10:451301 days ago1660043445IN
0xAE50E62a...3FB80be52
0 ETH0.0006392413.38900802
Approve153045932022-08-08 23:38:301301 days ago1660001910IN
0xAE50E62a...3FB80be52
0 ETH0.0005378111.39606864
Approve153045922022-08-08 23:38:201301 days ago1660001900IN
0xAE50E62a...3FB80be52
0 ETH0.0005708612.09635403
Approve153045922022-08-08 23:38:201301 days ago1660001900IN
0xAE50E62a...3FB80be52
0 ETH0.0005708612.09635403
Approve153045922022-08-08 23:38:201301 days ago1660001900IN
0xAE50E62a...3FB80be52
0 ETH0.0005708612.09635403
Approve153045902022-08-08 23:37:571301 days ago1660001877IN
0xAE50E62a...3FB80be52
0 ETH0.000541211.46797885
Approve153045892022-08-08 23:37:281301 days ago1660001848IN
0xAE50E62a...3FB80be52
0 ETH0.0004949210.48717916
Approve153045862022-08-08 23:37:011301 days ago1660001821IN
0xAE50E62a...3FB80be52
0 ETH0.0005193811.00549002
Approve153045862022-08-08 23:37:011301 days ago1660001821IN
0xAE50E62a...3FB80be52
0 ETH0.0005193811.00549002
Approve153045822022-08-08 23:36:131301 days ago1660001773IN
0xAE50E62a...3FB80be52
0 ETH0.00046049.7558351
Approve153045722022-08-08 23:35:231301 days ago1660001723IN
0xAE50E62a...3FB80be52
0 ETH0.0007165815.18417714
Approve153045712022-08-08 23:34:521301 days ago1660001692IN
0xAE50E62a...3FB80be52
0 ETH0.0006658214.10859297
Approve153045692022-08-08 23:34:181301 days ago1660001658IN
0xAE50E62a...3FB80be52
0 ETH0.0006256713.25785833
Approve153045622022-08-08 23:32:471301 days ago1660001567IN
0xAE50E62a...3FB80be52
0 ETH0.0006862114.54056273
Approve153045622022-08-08 23:32:471301 days ago1660001567IN
0xAE50E62a...3FB80be52
0 ETH0.0006862114.54056273
Approve153045592022-08-08 23:31:291301 days ago1660001489IN
0xAE50E62a...3FB80be52
0 ETH0.0006423513.61116919
Approve153045552022-08-08 23:30:591301 days ago1660001459IN
0xAE50E62a...3FB80be52
0 ETH0.0007623916.15482656
Approve153045512022-08-08 23:29:321301 days ago1660001372IN
0xAE50E62a...3FB80be52
0 ETH0.0008022817
Approve153045402022-08-08 23:27:141301 days ago1660001234IN
0xAE50E62a...3FB80be52
0 ETH0.0007281915.43017654
Approve153045362022-08-08 23:26:211301 days ago1660001181IN
0xAE50E62a...3FB80be52
0 ETH0.0007534415.9651139
Approve153045212022-08-08 23:23:541301 days ago1660001034IN
0xAE50E62a...3FB80be52
0 ETH0.0010646522.55952733
Approve153045202022-08-08 23:23:351301 days ago1660001015IN
0xAE50E62a...3FB80be52
0 ETH0.0007814916.55952733
Approve153045182022-08-08 23:22:291301 days ago1660000949IN
0xAE50E62a...3FB80be52
0 ETH0.000690314.62727962
Approve153044942022-08-08 23:17:591301 days ago1660000679IN
0xAE50E62a...3FB80be52
0 ETH0.0006907614.63694862
Approve153044932022-08-08 23:17:481301 days ago1660000668IN
0xAE50E62a...3FB80be52
0 ETH0.0007426515.7364822
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FAITH

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

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

/** what teh heart tells you
 *Submitted for verification at Etherscan.io on 2022-08-08
*/

// 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 FAITH 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

API
[{"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"}]

608060405260405162001c1838038062001c18833981810160405281019062000029919062000304565b858584868584600490805190602001906200004692919062000191565b5083600590805190602001906200005f92919062000191565b5081600a6200006f9190620004c6565b836200007c919062000603565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001309190620003ef565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000184573d6000803e3d6000fd5b5050505050505062000865565b8280546200019f90620006ec565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b600062000258620002528462000435565b6200040c565b905082815260208101848484011115620002775762000276620007ea565b5b62000284848285620006b6565b509392505050565b6000815190506200029d8162000817565b92915050565b600081519050620002b48162000831565b92915050565b600082601f830112620002d257620002d1620007e5565b5b8151620002e484826020860162000241565b91505092915050565b600081519050620002fe816200084b565b92915050565b60008060008060008060c08789031215620003245762000323620007f4565b5b600087015167ffffffffffffffff811115620003455762000344620007ef565b5b6200035389828a01620002ba565b965050602087015167ffffffffffffffff811115620003775762000376620007ef565b5b6200038589828a01620002ba565b95505060406200039889828a01620002ed565b9450506060620003ab89828a01620002ed565b9350506080620003be89828a016200028c565b92505060a0620003d189828a01620002a3565b9150509295509295509295565b620003e981620006ac565b82525050565b6000602082019050620004066000830184620003de565b92915050565b6000620004186200042b565b905062000426828262000722565b919050565b6000604051905090565b600067ffffffffffffffff821115620004535762000452620007b6565b5b6200045e82620007f9565b9050602081019050919050565b6000808291508390505b6001851115620004bd5780860481111562000495576200049462000758565b5b6001851615620004a55780820291505b8081029050620004b5856200080a565b945062000475565b94509492505050565b6000620004d382620006ac565b9150620004e083620006ac565b92506200050f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000517565b905092915050565b600082620005295760019050620005fc565b81620005395760009050620005fc565b81600181146200055257600281146200055d5762000593565b6001915050620005fc565b60ff84111562000572576200057162000758565b5b8360020a9150848211156200058c576200058b62000758565b5b50620005fc565b5060208310610133831016604e8410600b8410161715620005cd5782820a905083811115620005c757620005c662000758565b5b620005fc565b620005dc84848460016200046b565b92509050818404811115620005f657620005f562000758565b5b81810290505b9392505050565b60006200061082620006ac565b91506200061d83620006ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000659576200065862000758565b5b828202905092915050565b600062000671826200068c565b9050919050565b600062000685826200068c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006d6578082015181840152602081019050620006b9565b83811115620006e6576000848401525b50505050565b600060028204905060018216806200070557607f821691505b602082108114156200071c576200071b62000787565b5b50919050565b6200072d82620007f9565b810181811067ffffffffffffffff821117156200074f576200074e620007b6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b620008228162000664565b81146200082e57600080fd5b50565b6200083c8162000678565b81146200084857600080fd5b50565b6200085681620006ac565b81146200086257600080fd5b50565b6113a380620008756000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e32565b60405180910390f35b6100e660048036038101906100e19190610c8b565b610308565b6040516100f39190610e17565b60405180910390f35b610104610326565b6040516101119190610f34565b60405180910390f35b610134600480360381019061012f9190610c38565b610330565b6040516101419190610e17565b60405180910390f35b610152610431565b60405161015f9190610f34565b60405180910390f35b610182600480360381019061017d9190610c8b565b61043b565b60405161018f9190610e17565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf9190610f34565b60405180910390f35b6101d061052f565b6040516101dd9190610e32565b60405180910390f35b61020060048036038101906101fb9190610c8b565b6105c1565b60405161020d9190610e17565b60405180910390f35b610230600480360381019061022b9190610c8b565b6106b5565b60405161023d9190610e17565b60405180910390f35b610260600480360381019061025b9190610bf8565b6106d3565b60405161026d9190610f34565b60405180910390f35b60606004805461028590611070565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611070565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610eb4565b60405180910390fd5b6104258561041461075a565b85846104209190610fc1565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f6b565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611070565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611070565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490610f14565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610fc1565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990610ef4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990610e74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109209190610f34565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490610ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490610e54565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90610e94565b60405180910390fd5b8181610a9f9190610fc1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190610f6b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b939190610f34565b60405180910390a350505050565b600081359050610bb08161133f565b92915050565b600081359050610bc581611356565b92915050565b600060208284031215610be157610be0611100565b5b6000610bef84828501610ba1565b91505092915050565b60008060408385031215610c0f57610c0e611100565b5b6000610c1d85828601610ba1565b9250506020610c2e85828601610ba1565b9150509250929050565b600080600060608486031215610c5157610c50611100565b5b6000610c5f86828701610ba1565b9350506020610c7086828701610ba1565b9250506040610c8186828701610bb6565b9150509250925092565b60008060408385031215610ca257610ca1611100565b5b6000610cb085828601610ba1565b9250506020610cc185828601610bb6565b9150509250929050565b610cd481611007565b82525050565b6000610ce582610f4f565b610cef8185610f5a565b9350610cff81856020860161103d565b610d0881611105565b840191505092915050565b6000610d20602383610f5a565b9150610d2b82611116565b604082019050919050565b6000610d43602283610f5a565b9150610d4e82611165565b604082019050919050565b6000610d66602683610f5a565b9150610d71826111b4565b604082019050919050565b6000610d89602883610f5a565b9150610d9482611203565b604082019050919050565b6000610dac602583610f5a565b9150610db782611252565b604082019050919050565b6000610dcf602483610f5a565b9150610dda826112a1565b604082019050919050565b6000610df2602583610f5a565b9150610dfd826112f0565b604082019050919050565b610e1181611033565b82525050565b6000602082019050610e2c6000830184610ccb565b92915050565b60006020820190508181036000830152610e4c8184610cda565b905092915050565b60006020820190508181036000830152610e6d81610d13565b9050919050565b60006020820190508181036000830152610e8d81610d36565b9050919050565b60006020820190508181036000830152610ead81610d59565b9050919050565b60006020820190508181036000830152610ecd81610d7c565b9050919050565b60006020820190508181036000830152610eed81610d9f565b9050919050565b60006020820190508181036000830152610f0d81610dc2565b9050919050565b60006020820190508181036000830152610f2d81610de5565b9050919050565b6000602082019050610f496000830184610e08565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f7682611033565b9150610f8183611033565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610fb657610fb56110a2565b5b828201905092915050565b6000610fcc82611033565b9150610fd783611033565b925082821015610fea57610fe96110a2565b5b828203905092915050565b600061100082611013565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561105b578082015181840152602081019050611040565b8381111561106a576000848401525b50505050565b6000600282049050600182168061108857607f821691505b6020821081141561109c5761109b6110d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61134881610ff5565b811461135357600080fd5b50565b61135f81611033565b811461136a57600080fd5b5056fea26469706673582212209177a3e84e71d3f82f0779cf730d91273ad766e5a3026596401dd8898c16924964736f6c6343000805003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000001e76efc70000000000000000000000001e78e7f7ca2c01c2e404a487c2016ba7990c26c60000000000000000000000001e78e7f7ca2c01c2e404a487c2016ba7990c26c60000000000000000000000000000000000000000000000000000000000000009544845204845415254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054641495448000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e32565b60405180910390f35b6100e660048036038101906100e19190610c8b565b610308565b6040516100f39190610e17565b60405180910390f35b610104610326565b6040516101119190610f34565b60405180910390f35b610134600480360381019061012f9190610c38565b610330565b6040516101419190610e17565b60405180910390f35b610152610431565b60405161015f9190610f34565b60405180910390f35b610182600480360381019061017d9190610c8b565b61043b565b60405161018f9190610e17565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf9190610f34565b60405180910390f35b6101d061052f565b6040516101dd9190610e32565b60405180910390f35b61020060048036038101906101fb9190610c8b565b6105c1565b60405161020d9190610e17565b60405180910390f35b610230600480360381019061022b9190610c8b565b6106b5565b60405161023d9190610e17565b60405180910390f35b610260600480360381019061025b9190610bf8565b6106d3565b60405161026d9190610f34565b60405180910390f35b60606004805461028590611070565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611070565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610eb4565b60405180910390fd5b6104258561041461075a565b85846104209190610fc1565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f6b565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611070565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611070565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490610f14565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610fc1565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990610ef4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990610e74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109209190610f34565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490610ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490610e54565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90610e94565b60405180910390fd5b8181610a9f9190610fc1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190610f6b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b939190610f34565b60405180910390a350505050565b600081359050610bb08161133f565b92915050565b600081359050610bc581611356565b92915050565b600060208284031215610be157610be0611100565b5b6000610bef84828501610ba1565b91505092915050565b60008060408385031215610c0f57610c0e611100565b5b6000610c1d85828601610ba1565b9250506020610c2e85828601610ba1565b9150509250929050565b600080600060608486031215610c5157610c50611100565b5b6000610c5f86828701610ba1565b9350506020610c7086828701610ba1565b9250506040610c8186828701610bb6565b9150509250925092565b60008060408385031215610ca257610ca1611100565b5b6000610cb085828601610ba1565b9250506020610cc185828601610bb6565b9150509250929050565b610cd481611007565b82525050565b6000610ce582610f4f565b610cef8185610f5a565b9350610cff81856020860161103d565b610d0881611105565b840191505092915050565b6000610d20602383610f5a565b9150610d2b82611116565b604082019050919050565b6000610d43602283610f5a565b9150610d4e82611165565b604082019050919050565b6000610d66602683610f5a565b9150610d71826111b4565b604082019050919050565b6000610d89602883610f5a565b9150610d9482611203565b604082019050919050565b6000610dac602583610f5a565b9150610db782611252565b604082019050919050565b6000610dcf602483610f5a565b9150610dda826112a1565b604082019050919050565b6000610df2602583610f5a565b9150610dfd826112f0565b604082019050919050565b610e1181611033565b82525050565b6000602082019050610e2c6000830184610ccb565b92915050565b60006020820190508181036000830152610e4c8184610cda565b905092915050565b60006020820190508181036000830152610e6d81610d13565b9050919050565b60006020820190508181036000830152610e8d81610d36565b9050919050565b60006020820190508181036000830152610ead81610d59565b9050919050565b60006020820190508181036000830152610ecd81610d7c565b9050919050565b60006020820190508181036000830152610eed81610d9f565b9050919050565b60006020820190508181036000830152610f0d81610dc2565b9050919050565b60006020820190508181036000830152610f2d81610de5565b9050919050565b6000602082019050610f496000830184610e08565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f7682611033565b9150610f8183611033565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610fb657610fb56110a2565b5b828201905092915050565b6000610fcc82611033565b9150610fd783611033565b925082821015610fea57610fe96110a2565b5b828203905092915050565b600061100082611013565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561105b578082015181840152602081019050611040565b8381111561106a576000848401525b50505050565b6000600282049050600182168061108857607f821691505b6020821081141561109c5761109b6110d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61134881610ff5565b811461135357600080fd5b50565b61135f81611033565b811461136a57600080fd5b5056fea26469706673582212209177a3e84e71d3f82f0779cf730d91273ad766e5a3026596401dd8898c16924964736f6c63430008050033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000001e76efc70000000000000000000000001e78e7f7ca2c01c2e404a487c2016ba7990c26c60000000000000000000000001e78e7f7ca2c01c2e404a487c2016ba7990c26c60000000000000000000000000000000000000000000000000000000000000009544845204845415254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054641495448000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): THE HEART
Arg [1] : symbol_ (string): FAITH
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 511111111
Arg [4] : tokenOwner_ (address): 0x1E78E7f7cA2c01c2E404a487c2016BA7990c26C6
Arg [5] : feeReceiver_ (address): 0x1E78E7f7cA2c01c2E404a487c2016BA7990c26C6

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000001e76efc7
Arg [4] : 0000000000000000000000001e78e7f7ca2c01c2e404a487c2016ba7990c26c6
Arg [5] : 0000000000000000000000001e78e7f7ca2c01c2e404a487c2016ba7990c26c6
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 5448452048454152540000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4641495448000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10942:374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5225:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7401:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6354:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8052:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6187:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8883:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6525:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5444:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9601:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6865:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7103:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5225:100;5279:13;5312:5;5305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5225:100;:::o;7401:169::-;7484:4;7501:39;7510:12;:10;:12::i;:::-;7524:7;7533:6;7501:8;:39::i;:::-;7558:4;7551:11;;7401:169;;;;:::o;6354:108::-;6415:7;6442:12;;6435:19;;6354:108;:::o;8052:422::-;8158:4;8175:36;8185:6;8193:9;8204:6;8175:9;:36::i;:::-;8224:24;8251:11;:19;8263:6;8251:19;;;;;;;;;;;;;;;:33;8271:12;:10;:12::i;:::-;8251:33;;;;;;;;;;;;;;;;8224:60;;8323:6;8303:16;:26;;8295:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8385:57;8394:6;8402:12;:10;:12::i;:::-;8435:6;8416:16;:25;;;;:::i;:::-;8385:8;:57::i;:::-;8462:4;8455:11;;;8052:422;;;;;:::o;6187:102::-;6245:7;6272:9;;6265:16;;6187:102;:::o;8883:215::-;8971:4;8988:80;8997:12;:10;:12::i;:::-;9011:7;9057:10;9020:11;:25;9032:12;:10;:12::i;:::-;9020:25;;;;;;;;;;;;;;;:34;9046:7;9020:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8988:8;:80::i;:::-;9086:4;9079:11;;8883:215;;;;:::o;6525:127::-;6599:7;6626:9;:18;6636:7;6626:18;;;;;;;;;;;;;;;;6619:25;;6525:127;;;:::o;5444:104::-;5500:13;5533:7;5526:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5444:104;:::o;9601:377::-;9694:4;9711:24;9738:11;:25;9750:12;:10;:12::i;:::-;9738:25;;;;;;;;;;;;;;;:34;9764:7;9738:34;;;;;;;;;;;;;;;;9711:61;;9811:15;9791:16;:35;;9783:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9879:67;9888:12;:10;:12::i;:::-;9902:7;9930:15;9911:16;:34;;;;:::i;:::-;9879:8;:67::i;:::-;9966:4;9959:11;;;9601:377;;;;:::o;6865:175::-;6951:4;6968:42;6978:12;:10;:12::i;:::-;6992:9;7003:6;6968:9;:42::i;:::-;7028:4;7021:11;;6865:175;;;;:::o;7103:151::-;7192:7;7219:11;:18;7231:5;7219:18;;;;;;;;;;;;;;;:27;7238:7;7219:27;;;;;;;;;;;;;;;;7212:34;;7103:151;;;;:::o;3713:98::-;3766:7;3793:10;3786:17;;3713:98;:::o;10546:346::-;10665:1;10648:19;;:5;:19;;;;10640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10746:1;10727:21;;:7;:21;;;;10719:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10830:6;10800:11;:18;10812:5;10800:18;;;;;;;;;;;;;;;:27;10819:7;10800:27;;;;;;;;;;;;;;;:36;;;;10868:7;10852:32;;10861:5;10852:32;;;10877:6;10852:32;;;;;;:::i;:::-;;;;;;;;10546:346;;;:::o;9988:546::-;10112:1;10094:20;;:6;:20;;;;10086:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10196:1;10175:23;;:9;:23;;;;10167:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10253:21;10277:9;:17;10287:6;10277:17;;;;;;;;;;;;;;;;10253:41;;10330:6;10313:13;:23;;10305:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10426:6;10410:13;:22;;;;:::i;:::-;10390:9;:17;10400:6;10390:17;;;;;;;;;;;;;;;:42;;;;10467:6;10443:9;:20;10453:9;10443:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10508:9;10491:35;;10500:6;10491:35;;;10519:6;10491:35;;;;;;:::i;:::-;;;;;;;;10075:459;9988:546;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;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;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;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;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;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;1820:391;;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::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;;;;;:::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;;2848:220;;;:::o;3074:366::-;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;;3220:220;;;:::o;3446:366::-;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;;3592:220;;;:::o;3818:366::-;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;;3964:220;;;:::o;4190:366::-;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;;4336:220;;;:::o;4562:366::-;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;;4708:220;;;:::o;4934:366::-;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;;5080:220;;;:::o;5306:118::-;5393:24;5411:5;5393:24;:::i;:::-;5388:3;5381:37;5371:53;;:::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;:::-;5522:118;;;;:::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;;5764:195;;;;:::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;;6136:248;;;:::o;6390:419::-;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;;6561:248;;;:::o;6815:419::-;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;;6986:248;;;:::o;7240:419::-;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;;7411:248;;;:::o;7665:419::-;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;;7836:248;;;:::o;8090:419::-;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;;8261:248;;;:::o;8515:419::-;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;;8686:248;;;:::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;:::-;9038:124;;;;:::o;9249:99::-;9301:6;9335:5;9329:12;9319:22;;9308:40;;;:::o;9354:169::-;9438:11;9472:6;9467:3;9460:19;9512:4;9507:3;9503:14;9488:29;;9450:73;;;;:::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:2;;;9782:18;;:::i;:::-;9695:2;9826:1;9823;9819:9;9812:16;;9573:261;;;;:::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:2;;;9978:18;;:::i;:::-;9964:2;10023:1;10020;10016:9;10008:17;;9885:146;;;;:::o;10037:96::-;10074:7;10103:24;10121:5;10103:24;:::i;:::-;10092:35;;10082:51;;;:::o;10139:90::-;10173:7;10216:5;10209:13;10202:21;10191:32;;10181:48;;;:::o;10235:126::-;10272:7;10312:42;10305:5;10301:54;10290:65;;10280:81;;;:::o;10367:77::-;10404:7;10433:5;10422:16;;10412:32;;;:::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:2;;;10739:1;10730:6;10725:3;10721:16;10714:27;10650:2;10499:258;;;;:::o;10763:320::-;10807:6;10844:1;10838:4;10834:12;10824:22;;10891:1;10885:4;10881:12;10912:18;10902:2;;10968:4;10960:6;10956:17;10946:27;;10902:2;11030;11022:6;11019:14;10999:18;10996:38;10993:2;;;11049:18;;:::i;:::-;10993:2;10814:269;;;;:::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;;11755:54;;;:::o;11815:222::-;11955:34;11951:1;11943:6;11939:14;11932:58;12024:5;12019:2;12011:6;12007:15;12000:30;11921:116;:::o;12043:221::-;12183:34;12179:1;12171:6;12167:14;12160:58;12252:4;12247:2;12239:6;12235:15;12228:29;12149:115;:::o;12270:225::-;12410:34;12406:1;12398:6;12394:14;12387:58;12479:8;12474:2;12466:6;12462:15;12455:33;12376:119;:::o;12501:227::-;12641:34;12637:1;12629:6;12625:14;12618:58;12710:10;12705:2;12697:6;12693:15;12686:35;12607:121;:::o;12734:224::-;12874:34;12870:1;12862:6;12858:14;12851:58;12943:7;12938:2;12930:6;12926:15;12919:32;12840:118;:::o;12964:223::-;13104:34;13100:1;13092:6;13088:14;13081:58;13173:6;13168:2;13160:6;13156:15;13149:31;13070:117;:::o;13193:224::-;13333:34;13329:1;13321:6;13317:14;13310:58;13402:7;13397:2;13389:6;13385:15;13378:32;13299:118;:::o;13423:122::-;13496:24;13514:5;13496:24;:::i;:::-;13489:5;13486:35;13476:2;;13535:1;13532;13525:12;13476:2;13466:79;:::o;13551:122::-;13624:24;13642:5;13624:24;:::i;:::-;13617:5;13614:35;13604:2;;13663:1;13660;13653:12;13604:2;13594:79;:::o

Swarm Source

ipfs://9177a3e84e71d3f82f0779cf730d91273ad766e5a3026596401dd8898c169249

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.