ETH Price: $2,720.23 (+0.78%)

Contract

0xd0B19b54Aaa1ab2fB289Fe19af33342f8371b161
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer129923652021-08-09 17:43:181285 days ago1628530998IN
0xd0B19b54...f8371b161
0 ETH0.0028595653
Transfer129847842021-08-08 13:51:261286 days ago1628430686IN
0xd0B19b54...f8371b161
0 ETH0.0015646629
Approve129790962021-08-07 16:42:381287 days ago1628354558IN
0xd0B19b54...f8371b161
0 ETH0.0024862551
Approve129673712021-08-05 21:27:401289 days ago1628198860IN
0xd0B19b54...f8371b161
0 ETH0.002047542
Transfer129272402021-07-30 13:29:161295 days ago1627651756IN
0xd0B19b54...f8371b161
0 ETH0.0019962937
Transfer129202152021-07-29 10:29:241296 days ago1627554564IN
0xd0B19b54...f8371b161
0 ETH0.0012406623
Transfer128710492021-07-21 17:09:361304 days ago1626887376IN
0xd0B19b54...f8371b161
0 ETH0.0008912824.2
Transfer128619832021-07-20 7:06:061305 days ago1626764766IN
0xd0B19b54...f8371b161
0 ETH0.0014564327
Transfer128590652021-07-19 20:06:461306 days ago1626725206IN
0xd0B19b54...f8371b161
0 ETH0.0010790820
Transfer128369762021-07-16 9:02:011309 days ago1626426121IN
0xd0B19b54...f8371b161
0 ETH0.0018344334
Approve128124042021-07-12 12:17:021313 days ago1626092222IN
0xd0B19b54...f8371b161
0 ETH0.0009262519
Transfer127687362021-07-05 17:11:131320 days ago1625505073IN
0xd0B19b54...f8371b161
0 ETH0.0008091315
Transfer126985832021-06-24 19:03:391331 days ago1624561419IN
0xd0B19b54...f8371b161
0 ETH0.0015103728
Transfer126900672021-06-23 11:16:271332 days ago1624446987IN
0xd0B19b54...f8371b161
0 ETH0.0008630716
Transfer126537342021-06-17 19:09:481338 days ago1623956988IN
0xd0B19b54...f8371b161
0 ETH0.0015107128
Transfer126523292021-06-17 13:53:301338 days ago1623938010IN
0xd0B19b54...f8371b161
0 ETH0.0014024926
Transfer126523202021-06-17 13:51:131338 days ago1623937873IN
0xd0B19b54...f8371b161
0 ETH0.0012406623
Transfer126523172021-06-17 13:50:301338 days ago1623937830IN
0xd0B19b54...f8371b161
0 ETH0.0010788420
Transfer126454892021-06-16 12:27:371339 days ago1623846457IN
0xd0B19b54...f8371b161
0 ETH0.0007551814
Transfer126453972021-06-16 12:05:221339 days ago1623845122IN
0xd0B19b54...f8371b161
0 ETH0.0006474412
Transfer126343152021-06-14 18:57:331341 days ago1623697053IN
0xd0B19b54...f8371b161
0 ETH0.0005932311
Approve126321932021-06-14 11:04:291341 days ago1623668669IN
0xd0B19b54...f8371b161
0 ETH0.000487510
Transfer126320052021-06-14 10:18:161341 days ago1623665896IN
0xd0B19b54...f8371b161
0 ETH0.000431638

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
126319602021-06-14 10:07:431341 days ago1623665263  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xd74ca67f...CFa08BCC7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Chocolate

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-12-17
*/

/**

WPSmartContracts.com

Blockchain Made Easy

http://wpsmartcontracts.com/

*/

pragma solidity ^0.5.7;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {
    
    int256 constant private INT256_MIN = -2**255;

    /**
    * @dev Multiplies two unsigned integers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Multiplies two signed integers, reverts on overflow.
    */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        require(!(a == -1 && b == INT256_MIN)); // This is the only case of overflow not detected by the check below

        int256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Integer division of two signed integers truncating the quotient, reverts on division by zero.
    */
    function div(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0); // Solidity only automatically asserts when dividing by 0
        require(!(b == -1 && a == INT256_MIN)); // This is the only case of overflow

        int256 c = a / b;

        return c;
    }

    /**
    * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Subtracts two signed integers, reverts on overflow.
    */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));

        return c;
    }

    /**
    * @dev Adds two unsigned integers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Adds two signed integers, reverts on overflow.
    */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));

        return c;
    }

    /**
    * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC20Pistachio is IERC20 {

    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
    * @dev Public parameters to define the token
    */

    // Token symbol (short)
    string public symbol;

    // Token name (Long)
    string public  name;

    // Decimals (18 maximum)
    uint8 public decimals;

    /**
    * @dev Public functions to make the contract accesible
    */
    constructor (address initialAccount, string memory _tokenSymbol, string memory _tokenName, uint256 initialBalance) public {

        // Initialize Contract Parameters
        symbol = _tokenSymbol;
        name = _tokenName;
        decimals = 18;  // default decimals is going to be 18 always

        _mint(initialAccount, initialBalance);

    }

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param owner The address to query the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
    * @dev Transfer token for a specified address
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * 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
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
        _burn(account, value);
        emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }

}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20Pistachio {

    bool private _burnableActive;

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public whenBurnableActive {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The address which you want to send tokens from
     * @param value uint256 The amount of token to be burned
     */
    function burnFrom(address from, uint256 value) public whenBurnableActive {
        _burnFrom(from, value);
    }

    /**
     * @dev Options to activate or deactivate Burn ability
     */

    function _setBurnableActive(bool _active) internal {
        _burnableActive = _active;
    }

    modifier whenBurnableActive() {
        require(_burnableActive);
        _;
    }

}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev give an account access to this role
     */
    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev check if an account has this role
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender));
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20Pistachio, MinterRole {

    bool private _mintableActive;
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyMinter whenMintableActive returns (bool) {
        _mint(to, value);
        return true;
    }

    /**
     * @dev Options to activate or deactivate Burn ability
     */

    function _setMintableActive(bool _active) internal {
        _mintableActive = _active;
    }

    modifier whenMintableActive() {
        require(_mintableActive);
        _;
    }

}

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _pausableActive;
    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    /**
     * @return true if the contract is paused, false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyPauser whenNotPaused whenPausableActive {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyPauser whenPaused whenPausableActive {
        _paused = false;
        emit Unpaused(msg.sender);
    }

    /**
     * @dev Options to activate or deactivate Pausable ability
     */

    function _setPausableActive(bool _active) internal {
        _pausableActive = _active;
    }

    modifier whenPausableActive() {
        require(_pausableActive);
        _;
    }

}

/**
 * @title Advanced ERC20 token
 *
 * @dev Implementation of the basic standard token plus mint and burn public functions.
 *
 * Version 2. This version delegates the minter and pauser renounce to parent-factory contract
 * that allows ICOs to be minter for token selling
 *
 */
contract ERC20Chocolate is ERC20Pistachio, ERC20Burnable, ERC20Mintable, Pausable {

    // maximum capital, if defined > 0
    uint256 private _cap;

    constructor (
        address initialAccount, string memory _tokenSymbol, string memory _tokenName, uint256 initialBalance, uint256 cap,
        bool _burnableOption, bool _mintableOption, bool _pausableOption
    ) public
        ERC20Pistachio(initialAccount, _tokenSymbol, _tokenName, initialBalance) {

        // we must add customer account as the first minter
        addMinter(initialAccount);

        // add customer as pauser
        addPauser(initialAccount);

        if (cap > 0) {
            _cap = cap; // maximum capitalization limited
        } else {
            _cap = 0; // unlimited capitalization
        }

        // activate or deactivate options
        _setBurnableActive(_burnableOption);
        _setMintableActive(_mintableOption);
        _setPausableActive(_pausableOption);

    }

    /**
     * @return the cap for the token minting.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * limit the mint to a maximum cap only if cap is defined
     */
    function _mint(address account, uint256 value) internal {
        if (_cap > 0) {
            require(totalSupply().add(value) <= _cap);
        }
        super._mint(account, value);
    }

    /**
     * Pausable options
     */
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from,address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseAllowance(spender, subtractedValue);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialAccount","type":"address"},{"name":"_tokenSymbol","type":"string"},{"name":"_tokenName","type":"string"},{"name":"initialBalance","type":"uint256"},{"name":"cap","type":"uint256"},{"name":"_burnableOption","type":"bool"},{"name":"_mintableOption","type":"bool"},{"name":"_pausableOption","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636ef8d66d116100c3578063983b2d561161007c578063983b2d561461062f5780639865027514610673578063a457c2d71461067d578063a9059cbb146106e3578063aa271e1a14610749578063dd62ed3e146107a557610158565b80636ef8d66d146104ae57806370a08231146104b857806379cc67901461051057806382dc1ec41461055e5780638456cb59146105a257806395d89b41146105ac57610158565b80633950935111610115578063395093511461032c5780633f4ba83a1461039257806340c10f191461039c57806342966c681461040257806346fbf68e146104305780635c975abb1461048c57610158565b806306fdde031461015d578063095ea7b3146101e057806318160ddd1461024657806323b872dd14610264578063313ce567146102ea578063355274ea1461030e575b600080fd5b61016561081d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108bb565b604051808215151515815260200191505060405180910390f35b61024e6108e9565b6040518082815260200191505060405180910390f35b6102d06004803603606081101561027a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108f3565b604051808215151515815260200191505060405180910390f35b6102f2610923565b604051808260ff1660ff16815260200191505060405180910390f35b610316610936565b6040518082815260200191505060405180910390f35b6103786004803603604081101561034257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610940565b604051808215151515815260200191505060405180910390f35b61039a61096e565b005b6103e8600480360360408110156103b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a32565b604051808215151515815260200191505060405180910390f35b61042e6004803603602081101561041857600080fd5b8101908080359060200190929190505050610a73565b005b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a99565b604051808215151515815260200191505060405180910390f35b610494610ab6565b604051808215151515815260200191505060405180910390f35b6104b6610acd565b005b6104fa600480360360208110156104ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ad8565b6040518082815260200191505060405180910390f35b61055c6004803603604081101561052657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b20565b005b6105a06004803603602081101561057457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b47565b005b6105aa610b65565b005b6105b4610c2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105f45780820151818401526020810190506105d9565b50505050905090810190601f1680156106215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106716004803603602081101561064557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cc8565b005b61067b610ce6565b005b6106c96004803603604081101561069357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf1565b604051808215151515815260200191505060405180910390f35b61072f600480360360408110156106f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d1f565b604051808215151515815260200191505060405180910390f35b61078b6004803603602081101561075f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d4d565b604051808215151515815260200191505060405180910390f35b610807600480360360408110156107bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6a565b6040518082815260200191505060405180910390f35b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b505050505081565b6000600960019054906101000a900460ff16156108d757600080fd5b6108e18383610df1565b905092915050565b6000600254905090565b6000600960019054906101000a900460ff161561090f57600080fd5b61091a848484610f1c565b90509392505050565b600560009054906101000a900460ff1681565b6000600a54905090565b6000600960019054906101000a900460ff161561095c57600080fd5b6109668383611124565b905092915050565b61097733610a99565b61098057600080fd5b600960019054906101000a900460ff1661099957600080fd5b600960009054906101000a900460ff166109b257600080fd5b6000600960016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610a3d33610d4d565b610a4657600080fd5b600760009054906101000a900460ff16610a5f57600080fd5b610a698383611359565b6001905092915050565b600560019054906101000a900460ff16610a8c57600080fd5b610a96338261139b565b50565b6000610aaf8260086114ed90919063ffffffff16565b9050919050565b6000600960019054906101000a900460ff16905090565b610ad63361157f565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900460ff16610b3957600080fd5b610b4382826115d9565b5050565b610b5033610a99565b610b5957600080fd5b610b62816117d7565b50565b610b6e33610a99565b610b7757600080fd5b600960019054906101000a900460ff1615610b9157600080fd5b600960009054906101000a900460ff16610baa57600080fd5b6001600960016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cc05780601f10610c9557610100808354040283529160200191610cc0565b820191906000526020600020905b815481529060010190602001808311610ca357829003601f168201915b505050505081565b610cd133610d4d565b610cda57600080fd5b610ce381611831565b50565b610cef3361188b565b565b6000600960019054906101000a900460ff1615610d0d57600080fd5b610d1783836118e5565b905092915050565b6000600960019054906101000a900460ff1615610d3b57600080fd5b610d458383611b1a565b905092915050565b6000610d638260066114ed90919063ffffffff16565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c57600080fd5b81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000610fad82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3190919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611038848484611b51565b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600190509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561115f57600080fd5b6111ee82600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1b90919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600a54111561138d57600a54611381826113736108e9565b611d1b90919063ffffffff16565b111561138c57600080fd5b5b6113978282611d3a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d557600080fd5b6113ea81600254611b3190919063ffffffff16565b600281905550611441816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611593816008611e8c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61166881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116f2828261139b565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a35050565b6117eb816008611f3790919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611845816006611f3790919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b61189f816006611e8c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561192057600080fd5b6119af82600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3190919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000611b27338484611b51565b6001905092915050565b600082821115611b4057600080fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8b57600080fd5b611bdc816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3190919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c6f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080828401905083811015611d3057600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d7457600080fd5b611d8981600254611d1b90919063ffffffff16565b600281905550611de0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec657600080fd5b611ed082826114ed565b611ed957600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f7157600080fd5b611f7b82826114ed565b15611f8557600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a723058207b8f22601a6928eb10e6d611a55908eecf47aec98ae66239f699dfd5693b972b0029

Deployed Bytecode Sourcemap

18893:2308:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18893:2308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4814:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4814:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20680:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20680:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5409:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20513:159;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20513:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4872:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19964:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20828:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20828:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18176:137;;;:::i;:::-;;15598:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15598:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12536:98;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12536:98:0;;;;;;;;;;;;;;;;;:::i;:::-;;16396:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16396:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17410:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16613:77;;;:::i;:::-;;5716:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5716:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12893:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12893:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16513:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16513:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17946:135;;;:::i;:::-;;4759:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4759:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14738:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14738:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14838:77;;;:::i;:::-;;21011:185;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21011:185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20373:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20373:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14621:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14621:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6161:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6161:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4814:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20680:140::-;20759:4;17647:7;;;;;;;;;;;17646:8;17638:17;;;;;;20783:29;20797:7;20806:5;20783:13;:29::i;:::-;20776:36;;20680:140;;;;:::o;5409:91::-;5453:7;5480:12;;5473:19;;5409:91;:::o;20513:159::-;20605:4;17647:7;;;;;;;;;;;17646:8;17638:17;;;;;;20629:35;20648:4;20654:2;20658:5;20629:18;:35::i;:::-;20622:42;;20513:159;;;;;:::o;4872:21::-;;;;;;;;;;;;;:::o;19964:75::-;20000:7;20027:4;;20020:11;;19964:75;:::o;20828:175::-;20919:12;17647:7;;;;;;;;;;;17646:8;17638:17;;;;;;20951:44;20975:7;20984:10;20951:23;:44::i;:::-;20944:51;;20828:175;;;;:::o;18176:137::-;16347:20;16356:10;16347:8;:20::i;:::-;16339:29;;;;;;17826:7;;;;;;;;;;;17818:16;;;;;;18557:15;;;;;;;;;;;18549:24;;;;;;18264:5;18254:7;;:15;;;;;;;;;;;;;;;;;;18285:20;18294:10;18285:20;;;;;;;;;;;;;;;;;;;;;;18176:137::o;15598:150::-;15685:4;14572:20;14581:10;14572:8;:20::i;:::-;14564:29;;;;;;15988:15;;;;;;;;;;;15980:24;;;;;;15702:16;15708:2;15712:5;15702;:16::i;:::-;15736:4;15729:11;;15598:150;;;;:::o;12536:98::-;13247:15;;;;;;;;;;;13239:24;;;;;;12602;12608:10;12620:5;12602;:24::i;:::-;12536:98;:::o;16396:109::-;16452:4;16476:21;16489:7;16476:8;:12;;:21;;;;:::i;:::-;16469:28;;16396:109;;;:::o;17410:78::-;17449:4;17473:7;;;;;;;;;;;17466:14;;17410:78;:::o;16613:77::-;16657:25;16671:10;16657:13;:25::i;:::-;16613:77::o;5716:106::-;5771:7;5798:9;:16;5808:5;5798:16;;;;;;;;;;;;;;;;5791:23;;5716:106;;;:::o;12893:114::-;13247:15;;;;;;;;;;;13239:24;;;;;;12977:22;12987:4;12993:5;12977:9;:22::i;:::-;12893:114;;:::o;16513:92::-;16347:20;16356:10;16347:8;:20::i;:::-;16339:29;;;;;;16578:19;16589:7;16578:10;:19::i;:::-;16513:92;:::o;17946:135::-;16347:20;16356:10;16347:8;:20::i;:::-;16339:29;;;;;;17647:7;;;;;;;;;;;17646:8;17638:17;;;;;;18557:15;;;;;;;;;;;18549:24;;;;;;18035:4;18025:7;;:14;;;;;;;;;;;;;;;;;;18055:18;18062:10;18055:18;;;;;;;;;;;;;;;;;;;;;;17946:135::o;4759:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14738:92::-;14572:20;14581:10;14572:8;:20::i;:::-;14564:29;;;;;;14803:19;14814:7;14803:10;:19::i;:::-;14738:92;:::o;14838:77::-;14882:25;14896:10;14882:13;:25::i;:::-;14838:77::o;21011:185::-;21107:12;17647:7;;;;;;;;;;;17646:8;17638:17;;;;;;21139:49;21163:7;21172:15;21139:23;:49::i;:::-;21132:56;;21011:185;;;;:::o;20373:132::-;20448:4;17647:7;;;;;;;;;;;17646:8;17638:17;;;;;;20472:25;20487:2;20491:5;20472:14;:25::i;:::-;20465:32;;20373:132;;;;:::o;14621:109::-;14677:4;14701:21;14714:7;14701:8;:12;;:21;;;;:::i;:::-;14694:28;;14621:109;;;:::o;6161:131::-;6233:7;6260:8;:15;6269:5;6260:15;;;;;;;;;;;;;;;:24;6276:7;6260:24;;;;;;;;;;;;;;;;6253:31;;6161:131;;;;:::o;7250:244::-;7315:4;7359:1;7340:21;;:7;:21;;;;7332:30;;;;;;7407:5;7375:8;:20;7384:10;7375:20;;;;;;;;;;;;;;;:29;7396:7;7375:29;;;;;;;;;;;;;;;:37;;;;7449:7;7428:36;;7437:10;7428:36;;;7458:5;7428:36;;;;;;;;;;;;;;;;;;7482:4;7475:11;;7250:244;;;;:::o;7967:299::-;8046:4;8092:37;8123:5;8092:8;:14;8101:4;8092:14;;;;;;;;;;;;;;;:26;8107:10;8092:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;8063:8;:14;8072:4;8063:14;;;;;;;;;;;;;;;:26;8078:10;8063:26;;;;;;;;;;;;;;;:66;;;;8140:26;8150:4;8156:2;8160:5;8140:9;:26::i;:::-;8197:10;8182:54;;8191:4;8182:54;;;8209:8;:14;8218:4;8209:14;;;;;;;;;;;;;;;:26;8224:10;8209:26;;;;;;;;;;;;;;;;8182:54;;;;;;;;;;;;;;;;;;8254:4;8247:11;;7967:299;;;;;:::o;8781:323::-;8861:4;8905:1;8886:21;;:7;:21;;;;8878:30;;;;;;8953:45;8987:10;8953:8;:20;8962:10;8953:20;;;;;;;;;;;;;;;:29;8974:7;8953:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;8921:8;:20;8930:10;8921:20;;;;;;;;;;;;;;;:29;8942:7;8921:29;;;;;;;;;;;;;;;:77;;;;9035:7;9014:60;;9023:10;9014:60;;;9044:8;:20;9053:10;9044:20;;;;;;;;;;;;;;;:29;9065:7;9044:29;;;;;;;;;;;;;;;;9014:60;;;;;;;;;;;;;;;;;;9092:4;9085:11;;8781:323;;;;:::o;20128:194::-;20206:1;20199:4;;:8;20195:82;;;20260:4;;20232:24;20250:5;20232:13;:11;:13::i;:::-;:17;;:24;;;;:::i;:::-;:32;;20224:41;;;;;;20195:82;20287:27;20299:7;20308:5;20287:11;:27::i;:::-;20128:194;;:::o;11296:269::-;11390:1;11371:21;;:7;:21;;;;11363:30;;;;;;11421:23;11438:5;11421:12;;:16;;:23;;;;:::i;:::-;11406:12;:38;;;;11476:29;11499:5;11476:9;:18;11486:7;11476:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;11455:9;:18;11465:7;11455:18;;;;;;;;;;;;;;;:50;;;;11547:1;11521:36;;11530:7;11521:36;;;11551:5;11521:36;;;;;;;;;;;;;;;;;;11296:269;;:::o;14086:165::-;14158:4;14202:1;14183:21;;:7;:21;;;;14175:30;;;;;;14223:4;:11;;:20;14235:7;14223:20;;;;;;;;;;;;;;;;;;;;;;;;;14216:27;;14086:165;;;;:::o;16828:130::-;16888:24;16904:7;16888:8;:15;;:24;;;;:::i;:::-;16942:7;16928:22;;;;;;;;;;;;16828:130;:::o;11964:259::-;12067:40;12101:5;12067:8;:17;12076:7;12067:17;;;;;;;;;;;;;;;:29;12085:10;12067:29;;;;;;;;;;;;;;;;:33;;:40;;;;:::i;:::-;12035:8;:17;12044:7;12035:17;;;;;;;;;;;;;;;:29;12053:10;12035:29;;;;;;;;;;;;;;;:72;;;;12118:21;12124:7;12133:5;12118;:21::i;:::-;12173:10;12155:60;;12164:7;12155:60;;;12185:8;:17;12194:7;12185:17;;;;;;;;;;;;;;;:29;12203:10;12185:29;;;;;;;;;;;;;;;;12155:60;;;;;;;;;;;;;;;;;;11964:259;;:::o;16698:122::-;16755:21;16768:7;16755:8;:12;;:21;;;;:::i;:::-;16804:7;16792:20;;;;;;;;;;;;16698:122;:::o;14923:::-;14980:21;14993:7;14980:8;:12;;:21;;;;:::i;:::-;15029:7;15017:20;;;;;;;;;;;;14923:122;:::o;15053:130::-;15113:24;15129:7;15113:8;:15;;:24;;;;:::i;:::-;15167:7;15153:22;;;;;;;;;;;;15053:130;:::o;9624:333::-;9709:4;9753:1;9734:21;;:7;:21;;;;9726:30;;;;;;9801:50;9835:15;9801:8;:20;9810:10;9801:20;;;;;;;;;;;;;;;:29;9822:7;9801:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;9769:8;:20;9778:10;9769:20;;;;;;;;;;;;;;;:29;9790:7;9769:29;;;;;;;;;;;;;;;:82;;;;9888:7;9867:60;;9876:10;9867:60;;;9897:8;:20;9906:10;9897:20;;;;;;;;;;;;;;;:29;9918:7;9897:29;;;;;;;;;;;;;;;;9867:60;;;;;;;;;;;;;;;;;;9945:4;9938:11;;9624:333;;;;:::o;6463:140::-;6524:4;6541:32;6551:10;6563:2;6567:5;6541:9;:32::i;:::-;6591:4;6584:11;;6463:140;;;;:::o;2449:150::-;2507:7;2540:1;2535;:6;;2527:15;;;;;;2553:9;2569:1;2565;:5;2553:17;;2590:1;2583:8;;;2449:150;;;;:::o;10179:262::-;10281:1;10267:16;;:2;:16;;;;10259:25;;;;;;10315:26;10335:5;10315:9;:15;10325:4;10315:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;10297:9;:15;10307:4;10297:15;;;;;;;;;;;;;;;:44;;;;10368:24;10386:5;10368:9;:13;10378:2;10368:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;10352:9;:13;10362:2;10352:13;;;;;;;;;;;;;;;:40;;;;10423:2;10408:25;;10417:4;10408:25;;;10427:5;10408:25;;;;;;;;;;;;;;;;;;10179:262;;;:::o;2952:150::-;3010:7;3030:9;3046:1;3042;:5;3030:17;;3071:1;3066;:6;;3058:15;;;;;;3093:1;3086:8;;;2952:150;;;;:::o;10793:269::-;10887:1;10868:21;;:7;:21;;;;10860:30;;;;;;10918:23;10935:5;10918:12;;:16;;:23;;;;:::i;:::-;10903:12;:38;;;;10973:29;10996:5;10973:9;:18;10983:7;10973:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;10952:9;:18;10962:7;10952:18;;;;;;;;;;;;;;;:50;;;;11039:7;11018:36;;11035:1;11018:36;;;11048:5;11018:36;;;;;;;;;;;;;;;;;;10793:269;;:::o;13803:189::-;13902:1;13883:21;;:7;:21;;;;13875:30;;;;;;13924:18;13928:4;13934:7;13924:3;:18::i;:::-;13916:27;;;;;;13979:5;13956:4;:11;;:20;13968:7;13956:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;13803:189;;:::o;13538:186::-;13634:1;13615:21;;:7;:21;;;;13607:30;;;;;;13657:18;13661:4;13667:7;13657:3;:18::i;:::-;13656:19;13648:28;;;;;;13712:4;13689;:11;;:20;13701:7;13689:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;13538:186;;:::o

Swarm Source

bzzr://7b8f22601a6928eb10e6d611a55908eecf47aec98ae66239f699dfd5693b972b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.