ETH Price: $3,360.12 (-3.31%)

Contract

0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer175232022023-06-20 20:12:59554 days ago1687291979IN
DeepCloud AI Token
0 ETH0.0010937919.4408
Transfer164186252023-01-16 10:03:23710 days ago1673863403IN
DeepCloud AI Token
0 ETH0.0008109215.75
Transfer160224472022-11-22 2:04:23765 days ago1669082663IN
DeepCloud AI Token
0 ETH0.0008702116.89764521
Transfer159508792022-11-12 2:13:35775 days ago1668219215IN
DeepCloud AI Token
0 ETH0.0007830415.20853428
Transfer153087902022-08-09 15:25:58869 days ago1660058758IN
DeepCloud AI Token
0 ETH0.0011005121.3945614
Transfer From153087702022-08-09 15:21:43869 days ago1660058503IN
DeepCloud AI Token
0 ETH0.0011819219.9174922
Approve153084712022-08-09 14:17:14869 days ago1660054634IN
DeepCloud AI Token
0 ETH0.0018400136.10847261
Transfer142798592022-02-26 5:38:361034 days ago1645853916IN
DeepCloud AI Token
0 ETH0.0010292620
Transfer137888352021-12-12 7:01:431110 days ago1639292503IN
DeepCloud AI Token
0 ETH0.0020639460
Transfer131786992021-09-07 12:50:441205 days ago1631019044IN
DeepCloud AI Token
0 ETH0.0050850798.81027114
Approve124750112021-05-21 2:19:411315 days ago1621563581IN
DeepCloud AI Token
0 ETH0.0026110951
Transfer123521772021-05-02 2:46:241334 days ago1619923584IN
DeepCloud AI Token
0 ETH0.0009795740.5
Transfer123417602021-04-30 12:14:561336 days ago1619784896IN
DeepCloud AI Token
0 ETH0.0018212844.10000023
Transfer122193182021-04-11 15:01:001354 days ago1618153260IN
DeepCloud AI Token
0 ETH0.0035873294
Transfer122117092021-04-10 10:53:021356 days ago1618051982IN
DeepCloud AI Token
0 ETH0.0030660180.34
Transfer120013402021-03-09 1:21:381388 days ago1615252898IN
DeepCloud AI Token
0 ETH0.00496431130
Transfer119440312021-02-28 5:41:461397 days ago1614490906IN
DeepCloud AI Token
0 ETH0.0033583488
Transfer118672052021-02-16 10:09:561409 days ago1613470196IN
DeepCloud AI Token
0 ETH0.00453518118.7625
Transfer116569832021-01-15 2:40:081441 days ago1610678408IN
DeepCloud AI Token
0 ETH0.0021530493
Transfer111525572020-10-29 15:47:331518 days ago1603986453IN
DeepCloud AI Token
0 ETH0.00389507102
Transfer108086952020-09-06 15:09:251571 days ago1599404965IN
DeepCloud AI Token
0 ETH0.00834018361
Transfer107948242020-09-04 12:24:211574 days ago1599222261IN
DeepCloud AI Token
0 ETH0.0038151100
Transfer107904762020-09-03 20:28:591574 days ago1599164939IN
DeepCloud AI Token
0 ETH0.00347265150
Transfer107904572020-09-03 20:24:481574 days ago1599164688IN
DeepCloud AI Token
0 ETH0.00346545150
Transfer107822192020-09-02 13:57:071575 days ago1599055027IN
DeepCloud AI Token
0 ETH0.02201445414.00000037
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DeepCloud

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.5.2;

/**
 * @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 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 ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    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);

    function totalSupply() external view returns (uint256);

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

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

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

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






/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}








/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @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 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 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 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 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 Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
     * @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 A 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 to 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) {
        _approve(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) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        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 Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, 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 {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}





/**
 * @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 _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 {
        _paused = true;
        emit Paused(msg.sender);
    }

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


/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    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 DeepCloud is ERC20Pausable, ERC20Detailed {
    uint8 public constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = 200000000 * (10 ** uint256(DECIMALS));
    uint256 public constant CROWDSALE = 90000000 * (10 ** uint256(DECIMALS));
    uint256 public constant BOOTSTRAP = 30000000 * (10 ** uint256(DECIMALS));
    uint256 public constant RESERVES = 30000000 * (10 ** uint256(DECIMALS));
    uint256 public constant ADVISORS = 10000000 * (10 ** uint256(DECIMALS));
    uint256 public constant DEVELOPMENT = 30000000 * (10 ** uint256(DECIMALS));
    uint256 public constant MARKETING = 10000000 * (10 ** uint256(DECIMALS));

    uint256 public unblock = 1623974399;
    address private _owner;
    uint256 private CrowdSale = 0;
    uint256 private Bootstrap = 0;
    uint256 private Reserves = 0;
    uint256 private Advisors = 0;
    uint256 private Development = 0;
    uint256 private Marketing = 0;


    mapping(address => bool) public capAddress;
    uint256[] caps = [CROWDSALE,BOOTSTRAP,RESERVES,ADVISORS,DEVELOPMENT,MARKETING];
    uint256[] supplied = [0,0,0,0,0,0];

    constructor () public ERC20Detailed("DeepCloud", "DEEP", DECIMALS) {
      _owner = msg.sender;
      _mint(msg.sender, INITIAL_SUPPLY);
    }

    function initialTransfer(uint index,address to, uint256 value) public onlyOwner returns (bool){
      _checkAvailableCap(index, value);
      _updateCapSupply(index, value);
      capAddress[to] = true;
      transfer(to, value);
      return true;
    }

    function _updateCapSupply(uint index, uint256 value)  internal  {
      supplied[index] += value;
    }

    function _checkAvailableCap(uint index, uint256 value) internal view  {
      require(caps[index] >= (supplied[index] + value), "Balance: Low balance");
    }

    function transfer(address to, uint256 value) public returns (bool) {
        require(checkLock());
        return super.transfer(to, value);
    }

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

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

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

    function decreaseAllowance(address spender, uint subtractedValue) public returns (bool) {
        require(checkLock());
        return super.decreaseAllowance(spender, subtractedValue);
    }
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }
    function checkLock() internal view returns (bool){
      if(capAddress[msg.sender]){
          return now > unblock;
      } else {
          return true;
      }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RESERVES","outputs":[{"name":"","type":"uint256"}],"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":"","type":"address"}],"name":"capAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CROWDSALE","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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","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":"ADVISORS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BOOTSTRAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DEVELOPMENT","outputs":[{"name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"index","type":"uint256"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"initialTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unblock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","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":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MARKETING","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"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":"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"}]

60806040526360cbe1ff6008556000600a556000600b556000600c556000600d556000600e556000600f5560c060405190810160405280601260ff16600a0a63055d4a80028152602001601260ff16600a0a6301c9c380028152602001601260ff16600a0a6301c9c380028152602001601260ff16600a0a62989680028152602001601260ff16600a0a6301c9c380028152602001601260ff16600a0a62989680028152506011906006620000b6929190620005d9565b5060c060405190810160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff1681525060129060066200010f9291906200062b565b503480156200011d57600080fd5b506040805190810160405280600981526020017f44656570436c6f756400000000000000000000000000000000000000000000008152506040805190810160405280600481526020017f44454550000000000000000000000000000000000000000000000000000000008152506012620001a63362000280640100000000026401000000009004565b6000600460006101000a81548160ff0219169083151502179055508260059080519060200190620001d992919062000682565b508160069080519060200190620001f292919062000682565b5080600760006101000a81548160ff021916908360ff16021790555050505033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200027a33601260ff16600a0a630bebc20002620002ea640100000000026401000000009004565b62000731565b620002a48160036200045f6401000000000262001551179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156200032757600080fd5b6200034c81600254620005226401000000000262001a0e179091906401000000009004565b600281905550620003b3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005226401000000000262001a0e179091906401000000009004565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156200049c57600080fd5b620004b7828262000544640100000000026401000000009004565b151515620004c457600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008082840190508381101515156200053a57600080fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156200058257600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b82805482825590600052602060002090810192821562000618579160200282015b8281111562000617578251825591602001919060010190620005fa565b5b50905062000627919062000709565b5090565b8280548282559060005260206000209081019282156200066f579160200282015b828111156200066e578251829060ff169055916020019190600101906200064c565b5b5090506200067e919062000709565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006c557805160ff1916838001178555620006f6565b82800160010185558215620006f6579182015b82811115620006f5578251825591602001919060010190620006d8565b5b50905062000705919062000709565b5090565b6200072e91905b808211156200072a57600081600090555060010162000710565b5090565b90565b611a5b80620007416000396000f3fe608060405234801561001057600080fd5b50600436106101ec576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb116101215780638456cb59116100bf578063a457c2d71161008e578063a457c2d7146107a7578063a9059cbb1461080d578063dd62ed3e14610873578063e530a7d0146108eb576101ec565b80638456cb59146106da5780638f32d59b146106e457806395d89b41146107065780639cbdffc614610789576101ec565b80636ef8d66d116100fb5780636ef8d66d146105c457806370a08231146105ce57806382dc1ec414610626578063836a90471461066a576101ec565b80635c975abb146105665780635e7858cc14610588578063661e7ac4146105a6576101ec565b80632e0f26251161018e5780633950935111610168578063395093511461047c5780633f4ba83a146104e257806346fbf68e146104ec5780634ed8771314610548576101ec565b80632e0f2625146104165780632ff2e9dc1461043a578063313ce56714610458576101ec565b80630b1f5d80116101ca5780630b1f5d80146102f857806318160ddd1461035457806323138b601461037257806323b872dd14610390576101ec565b806306fdde03146101f15780630922f9c514610274578063095ea7b314610292575b600080fd5b6101f9610909565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023957808201518184015260208101905061021e565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027c6109ab565b6040518082815260200191505060405180910390f35b6102de600480360360408110156102a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109bc565b604051808215151515815260200191505060405180910390f35b61033a6004803603602081101561030e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109e3565b604051808215151515815260200191505060405180910390f35b61035c610a03565b6040518082815260200191505060405180910390f35b61037a610a0d565b6040518082815260200191505060405180910390f35b6103fc600480360360608110156103a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a1e565b604051808215151515815260200191505060405180910390f35b61041e610a47565b604051808260ff1660ff16815260200191505060405180910390f35b610442610a4c565b6040518082815260200191505060405180910390f35b610460610a5d565b604051808260ff1660ff16815260200191505060405180910390f35b6104c86004803603604081101561049257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a74565b604051808215151515815260200191505060405180910390f35b6104ea610a9b565b005b61052e6004803603602081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b4a565b604051808215151515815260200191505060405180910390f35b610550610b67565b6040518082815260200191505060405180910390f35b61056e610b77565b604051808215151515815260200191505060405180910390f35b610590610b8e565b6040518082815260200191505060405180910390f35b6105ae610b9f565b6040518082815260200191505060405180910390f35b6105cc610bb0565b005b610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bbb565b6040518082815260200191505060405180910390f35b6106686004803603602081101561063c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c03565b005b6106c06004803603606081101561068057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c23565b604051808215151515815260200191505060405180910390f35b6106e2610d23565b005b6106ec610dd3565b604051808215151515815260200191505060405180910390f35b61070e610e2b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561074e578082015181840152602081019050610733565b50505050905090810190601f16801561077b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610791610ecd565b6040518082815260200191505060405180910390f35b6107f3600480360360408110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed3565b604051808215151515815260200191505060405180910390f35b6108596004803603604081101561082357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610efa565b604051808215151515815260200191505060405180910390f35b6108d56004803603604081101561088957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f21565b6040518082815260200191505060405180910390f35b6108f3610fa8565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b601260ff16600a0a6301c9c3800281565b60006109c6610fb8565b15156109d157600080fd5b6109db8383611020565b905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b601260ff16600a0a63055d4a800281565b6000610a28610fb8565b1515610a3357600080fd5b610a3e848484611050565b90509392505050565b601281565b601260ff16600a0a630bebc2000281565b6000600760009054906101000a900460ff16905090565b6000610a7e610fb8565b1515610a8957600080fd5b610a938383611082565b905092915050565b610aa433610b4a565b1515610aaf57600080fd5b600460009054906101000a900460ff161515610aca57600080fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610b608260036110b290919063ffffffff16565b9050919050565b601260ff16600a0a629896800281565b6000600460009054906101000a900460ff16905090565b601260ff16600a0a6301c9c3800281565b601260ff16600a0a6301c9c3800281565b610bb933611146565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c0c33610b4a565b1515610c1757600080fd5b610c20816111a0565b50565b6000610c2d610dd3565b1515610ca1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610cab84836111fa565b610cb584836112aa565b6001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d178383610efa565b50600190509392505050565b610d2c33610b4a565b1515610d3757600080fd5b600460009054906101000a900460ff16151515610d5357600080fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b5050505050905090565b60085481565b6000610edd610fb8565b1515610ee857600080fd5b610ef283836112d5565b905092915050565b6000610f04610fb8565b1515610f0f57600080fd5b610f198383611305565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601260ff16600a0a629896800281565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611018576008544211905061101d565b600190505b90565b6000600460009054906101000a900460ff1615151561103e57600080fd5b6110488383611335565b905092915050565b6000600460009054906101000a900460ff1615151561106e57600080fd5b61107984848461134c565b90509392505050565b6000600460009054906101000a900460ff161515156110a057600080fd5b6110aa83836113fd565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156110ef57600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115a8160036114a290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6111b481600361155190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b8060128381548110151561120a57fe5b90600052602060002001540160118381548110151561122557fe5b9060005260206000200154101515156112a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f42616c616e63653a204c6f772062616c616e636500000000000000000000000081525060200191505060405180910390fd5b5050565b806012838154811015156112ba57fe5b90600052602060002001600082825401925050819055505050565b6000600460009054906101000a900460ff161515156112f357600080fd5b6112fd8383611601565b905092915050565b6000600460009054906101000a900460ff1615151561132357600080fd5b61132d83836116a6565b905092915050565b60006113423384846116bd565b6001905092915050565b6000611359848484611820565b6113f284336113ed85600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119ec90919063ffffffff16565b6116bd565b600190509392505050565b6000611498338461149385600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0e90919063ffffffff16565b6116bd565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156114de57600080fd5b6114e882826110b2565b15156114f357600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561158d57600080fd5b61159782826110b2565b1515156115a357600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061169c338461169785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119ec90919063ffffffff16565b6116bd565b6001905092915050565b60006116b3338484611820565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156116f957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561173557600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561185c57600080fd5b6118ad816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119ec90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611940816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008282111515156119fd57600080fd5b600082840390508091505092915050565b6000808284019050838110151515611a2557600080fd5b809150509291505056fea165627a7a723058206b2b3be26e9b9caaf6a8777a9724e195e7c6420803c7726f402604de38d532a20029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ec576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb116101215780638456cb59116100bf578063a457c2d71161008e578063a457c2d7146107a7578063a9059cbb1461080d578063dd62ed3e14610873578063e530a7d0146108eb576101ec565b80638456cb59146106da5780638f32d59b146106e457806395d89b41146107065780639cbdffc614610789576101ec565b80636ef8d66d116100fb5780636ef8d66d146105c457806370a08231146105ce57806382dc1ec414610626578063836a90471461066a576101ec565b80635c975abb146105665780635e7858cc14610588578063661e7ac4146105a6576101ec565b80632e0f26251161018e5780633950935111610168578063395093511461047c5780633f4ba83a146104e257806346fbf68e146104ec5780634ed8771314610548576101ec565b80632e0f2625146104165780632ff2e9dc1461043a578063313ce56714610458576101ec565b80630b1f5d80116101ca5780630b1f5d80146102f857806318160ddd1461035457806323138b601461037257806323b872dd14610390576101ec565b806306fdde03146101f15780630922f9c514610274578063095ea7b314610292575b600080fd5b6101f9610909565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023957808201518184015260208101905061021e565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027c6109ab565b6040518082815260200191505060405180910390f35b6102de600480360360408110156102a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109bc565b604051808215151515815260200191505060405180910390f35b61033a6004803603602081101561030e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109e3565b604051808215151515815260200191505060405180910390f35b61035c610a03565b6040518082815260200191505060405180910390f35b61037a610a0d565b6040518082815260200191505060405180910390f35b6103fc600480360360608110156103a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a1e565b604051808215151515815260200191505060405180910390f35b61041e610a47565b604051808260ff1660ff16815260200191505060405180910390f35b610442610a4c565b6040518082815260200191505060405180910390f35b610460610a5d565b604051808260ff1660ff16815260200191505060405180910390f35b6104c86004803603604081101561049257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a74565b604051808215151515815260200191505060405180910390f35b6104ea610a9b565b005b61052e6004803603602081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b4a565b604051808215151515815260200191505060405180910390f35b610550610b67565b6040518082815260200191505060405180910390f35b61056e610b77565b604051808215151515815260200191505060405180910390f35b610590610b8e565b6040518082815260200191505060405180910390f35b6105ae610b9f565b6040518082815260200191505060405180910390f35b6105cc610bb0565b005b610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bbb565b6040518082815260200191505060405180910390f35b6106686004803603602081101561063c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c03565b005b6106c06004803603606081101561068057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c23565b604051808215151515815260200191505060405180910390f35b6106e2610d23565b005b6106ec610dd3565b604051808215151515815260200191505060405180910390f35b61070e610e2b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561074e578082015181840152602081019050610733565b50505050905090810190601f16801561077b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610791610ecd565b6040518082815260200191505060405180910390f35b6107f3600480360360408110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed3565b604051808215151515815260200191505060405180910390f35b6108596004803603604081101561082357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610efa565b604051808215151515815260200191505060405180910390f35b6108d56004803603604081101561088957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f21565b6040518082815260200191505060405180910390f35b6108f3610fa8565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b601260ff16600a0a6301c9c3800281565b60006109c6610fb8565b15156109d157600080fd5b6109db8383611020565b905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b601260ff16600a0a63055d4a800281565b6000610a28610fb8565b1515610a3357600080fd5b610a3e848484611050565b90509392505050565b601281565b601260ff16600a0a630bebc2000281565b6000600760009054906101000a900460ff16905090565b6000610a7e610fb8565b1515610a8957600080fd5b610a938383611082565b905092915050565b610aa433610b4a565b1515610aaf57600080fd5b600460009054906101000a900460ff161515610aca57600080fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610b608260036110b290919063ffffffff16565b9050919050565b601260ff16600a0a629896800281565b6000600460009054906101000a900460ff16905090565b601260ff16600a0a6301c9c3800281565b601260ff16600a0a6301c9c3800281565b610bb933611146565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c0c33610b4a565b1515610c1757600080fd5b610c20816111a0565b50565b6000610c2d610dd3565b1515610ca1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610cab84836111fa565b610cb584836112aa565b6001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d178383610efa565b50600190509392505050565b610d2c33610b4a565b1515610d3757600080fd5b600460009054906101000a900460ff16151515610d5357600080fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b5050505050905090565b60085481565b6000610edd610fb8565b1515610ee857600080fd5b610ef283836112d5565b905092915050565b6000610f04610fb8565b1515610f0f57600080fd5b610f198383611305565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601260ff16600a0a629896800281565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611018576008544211905061101d565b600190505b90565b6000600460009054906101000a900460ff1615151561103e57600080fd5b6110488383611335565b905092915050565b6000600460009054906101000a900460ff1615151561106e57600080fd5b61107984848461134c565b90509392505050565b6000600460009054906101000a900460ff161515156110a057600080fd5b6110aa83836113fd565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156110ef57600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115a8160036114a290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6111b481600361155190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b8060128381548110151561120a57fe5b90600052602060002001540160118381548110151561122557fe5b9060005260206000200154101515156112a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f42616c616e63653a204c6f772062616c616e636500000000000000000000000081525060200191505060405180910390fd5b5050565b806012838154811015156112ba57fe5b90600052602060002001600082825401925050819055505050565b6000600460009054906101000a900460ff161515156112f357600080fd5b6112fd8383611601565b905092915050565b6000600460009054906101000a900460ff1615151561132357600080fd5b61132d83836116a6565b905092915050565b60006113423384846116bd565b6001905092915050565b6000611359848484611820565b6113f284336113ed85600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119ec90919063ffffffff16565b6116bd565b600190509392505050565b6000611498338461149385600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0e90919063ffffffff16565b6116bd565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156114de57600080fd5b6114e882826110b2565b15156114f357600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561158d57600080fd5b61159782826110b2565b1515156115a357600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061169c338461169785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119ec90919063ffffffff16565b6116bd565b6001905092915050565b60006116b3338484611820565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156116f957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561173557600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561185c57600080fd5b6118ad816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119ec90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611940816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008282111515156119fd57600080fd5b600082840390508091505092915050565b6000808284019050838110151515611a2557600080fd5b809150509291505056fea165627a7a723058206b2b3be26e9b9caaf6a8777a9724e195e7c6420803c7726f402604de38d532a20029

Deployed Bytecode Sourcemap

15636:3117:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15636:3117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3298:83;;;:::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;3298:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15979:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17809:157;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17809:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16588:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16588:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6480:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15821:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17624:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17624:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15694:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15736:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3614:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17974:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17974:184:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14542:118;;;:::i;:::-;;1362:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1362:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16057:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13795:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15900:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16135:74;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1579:77;;;:::i;:::-;;6790:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6790:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1479:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1479:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16918:260;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16918:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14331:116;;;:::i;:::-;;18366:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3448:87;;;:::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;3448:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16297:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18166:194;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18166:194:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17467:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17467:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7235:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7235:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16216:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3298:83;3335:13;3368:5;3361:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3298:83;:::o;15979:71::-;15727:2;16032:17;;16026:2;:23;16014:8;:36;15979:71;:::o;17809:157::-;17874:4;17899:11;:9;:11::i;:::-;17891:20;;;;;;;;17929:29;17943:7;17952:5;17929:13;:29::i;:::-;17922:36;;17809:157;;;;:::o;16588:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;6480:91::-;6524:7;6551:12;;6544:19;;6480:91;:::o;15821:72::-;15727:2;15875:17;;15869:2;:23;15857:8;:36;15821:72;:::o;17624:177::-;17703:4;17728:11;:9;:11::i;:::-;17720:20;;;;;;;;17758:35;17777:4;17783:2;17787:5;17758:18;:35::i;:::-;17751:42;;17624:177;;;;;:::o;15694:35::-;15727:2;15694:35;:::o;15736:78::-;15727:2;15796:17;;15790:2;:23;15777:9;:37;15736:78;:::o;3614:83::-;3655:5;3680:9;;;;;;;;;;;3673:16;;3614:83;:::o;17974:184::-;18051:4;18076:11;:9;:11::i;:::-;18068:20;;;;;;;;18106:44;18130:7;18139:10;18106:23;:44::i;:::-;18099:51;;17974:184;;;;:::o;14542:118::-;1313:20;1322:10;1313:8;:20::i;:::-;1305:29;;;;;;;;14211:7;;;;;;;;;;;14203:16;;;;;;;;14611:5;14601:7;;:15;;;;;;;;;;;;;;;;;;14632:20;14641:10;14632:20;;;;;;;;;;;;;;;;;;;;;;14542:118::o;1362:109::-;1418:4;1442:21;1455:7;1442:8;:12;;:21;;;;:::i;:::-;1435:28;;1362:109;;;:::o;16057:71::-;15727:2;16110:17;;16104:2;:23;16092:8;:36;16057:71;:::o;13795:78::-;13834:4;13858:7;;;;;;;;;;;13851:14;;13795:78;:::o;15900:72::-;15727:2;15954:17;;15948:2;:23;15936:8;:36;15900:72;:::o;16135:74::-;15727:2;16191:17;;16185:2;:23;16173:8;:36;16135:74;:::o;1579:77::-;1623:25;1637:10;1623:13;:25::i;:::-;1579:77::o;6790:106::-;6845:7;6872:9;:16;6882:5;6872:16;;;;;;;;;;;;;;;;6865:23;;6790:106;;;:::o;1479:92::-;1313:20;1322:10;1313:8;:20::i;:::-;1305:29;;;;;;;;1544:19;1555:7;1544:10;:19::i;:::-;1479:92;:::o;16918:260::-;17007:4;18504:9;:7;:9::i;:::-;18496:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17021:32;17040:5;17047;17021:18;:32::i;:::-;17062:30;17079:5;17086;17062:16;:30::i;:::-;17118:4;17101:10;:14;17112:2;17101:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;17131:19;17140:2;17144:5;17131:8;:19::i;:::-;;17166:4;17159:11;;16918:260;;;;;:::o;14331:116::-;1313:20;1322:10;1313:8;:20::i;:::-;1305:29;;;;;;;;14032:7;;;;;;;;;;;14031:8;14023:17;;;;;;;;14401:4;14391:7;;:14;;;;;;;;;;;;;;;;;;14421:18;14428:10;14421:18;;;;;;;;;;;;;;;;;;;;;;14331:116::o;18366:92::-;18406:4;18444:6;;;;;;;;;;;18430:20;;:10;:20;;;18423:27;;18366:92;:::o;3448:87::-;3487:13;3520:7;3513:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3448:87;:::o;16297:35::-;;;;:::o;18166:194::-;18248:4;18273:11;:9;:11::i;:::-;18265:20;;;;;;;;18303:49;18327:7;18336:15;18303:23;:49::i;:::-;18296:56;;18166:194;;;;:::o;17467:149::-;17528:4;17553:11;:9;:11::i;:::-;17545:20;;;;;;;;17583:25;17598:2;17602:5;17583:14;:25::i;:::-;17576:32;;17467:149;;;;:::o;7235:131::-;7307:7;7334:8;:15;7343:5;7334:15;;;;;;;;;;;;;;;:24;7350:7;7334:24;;;;;;;;;;;;;;;;7327:31;;7235:131;;;;:::o;16216:72::-;15727:2;16270:17;;16264:2;:23;16252:8;:36;16216:72;:::o;18576:174::-;18620:4;18637:10;:22;18648:10;18637:22;;;;;;;;;;;;;;;;;;;;;;;;;18634:109;;;18686:7;;18680:3;:13;18673:20;;;;18634:109;18729:4;18722:11;;18576:174;;:::o;15111:140::-;15190:4;14032:7;;;;;;;;;;;14031:8;14023:17;;;;;;;;15214:29;15228:7;15237:5;15214:13;:29::i;:::-;15207:36;;15111:140;;;;:::o;14943:160::-;15036:4;14032:7;;;;;;;;;;;14031:8;14023:17;;;;;;;;15060:35;15079:4;15085:2;15089:5;15060:18;:35::i;:::-;15053:42;;14943:160;;;;;:::o;15259:175::-;15350:12;14032:7;;;;;;;;;;;14031:8;14023:17;;;;;;;;15382:44;15406:7;15415:10;15382:23;:44::i;:::-;15375:51;;15259:175;;;;:::o;821:165::-;893:4;937:1;918:21;;:7;:21;;;;910:30;;;;;;;;958:4;:11;;:20;970:7;958:20;;;;;;;;;;;;;;;;;;;;;;;;;951:27;;821:165;;;;:::o;1794:130::-;1854:24;1870:7;1854:8;:15;;:24;;;;:::i;:::-;1908:7;1894:22;;;;;;;;;;;;1794:130;:::o;1664:122::-;1721:21;1734:7;1721:8;:12;;:21;;;;:::i;:::-;1770:7;1758:20;;;;;;;;;;;;1664:122;:::o;17299:160::-;17420:5;17402:8;17411:5;17402:15;;;;;;;;;;;;;;;;;;:23;17386:4;17391:5;17386:11;;;;;;;;;;;;;;;;;;:40;;17378:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17299:160;;:::o;17186:105::-;17278:5;17259:8;17268:5;17259:15;;;;;;;;;;;;;;;;;;:24;;;;;;;;;;;17186:105;;:::o;15442:185::-;15538:12;14032:7;;;;;;;;;;;14031:8;14023:17;;;;;;;;15570:49;15594:7;15603:15;15570:23;:49::i;:::-;15563:56;;15442:185;;;;:::o;14803:132::-;14878:4;14032:7;;;;;;;;;;;14031:8;14023:17;;;;;;;;14902:25;14917:2;14921:5;14902:14;:25::i;:::-;14895:32;;14803:132;;;;:::o;8327:148::-;8392:4;8409:36;8418:10;8430:7;8439:5;8409:8;:36::i;:::-;8463:4;8456:11;;8327:148;;;;:::o;8948:228::-;9027:4;9044:26;9054:4;9060:2;9064:5;9044:9;:26::i;:::-;9081:65;9090:4;9096:10;9108:37;9139:5;9108:8;:14;9117:4;9108:14;;;;;;;;;;;;;;;:26;9123:10;9108:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;9081:8;:65::i;:::-;9164:4;9157:11;;8948:228;;;;;:::o;9702:203::-;9782:4;9799:76;9808:10;9820:7;9829:45;9863:10;9829:8;:20;9838:10;9829:20;;;;;;;;;;;;;;;:29;9850:7;9829:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;9799:8;:76::i;:::-;9893:4;9886:11;;9702:203;;;;:::o;538:189::-;637:1;618:21;;:7;:21;;;;610:30;;;;;;;;659:18;663:4;669:7;659:3;:18::i;:::-;651:27;;;;;;;;714:5;691:4;:11;;:20;703:7;691:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;538:189;;:::o;273:186::-;369:1;350:21;;:7;:21;;;;342:30;;;;;;;;392:18;396:4;402:7;392:3;:18::i;:::-;391:19;383:28;;;;;;;;447:4;424;:11;;:20;436:7;424:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;273:186;;:::o;10436:213::-;10521:4;10538:81;10547:10;10559:7;10568:50;10602:15;10568:8;:20;10577:10;10568:20;;;;;;;;;;;;;;;:29;10589:7;10568:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;10538:8;:81::i;:::-;10637:4;10630:11;;10436:213;;;;:::o;7540:140::-;7601:4;7618:32;7628:10;7640:2;7644:5;7618:9;:32::i;:::-;7668:4;7661:11;;7540:140;;;;:::o;12535:254::-;12647:1;12628:21;;:7;:21;;;;12620:30;;;;;;;;12686:1;12669:19;;:5;:19;;;;12661:28;;;;;;;;12729:5;12702:8;:15;12711:5;12702:15;;;;;;;;;;;;;;;:24;12718:7;12702:24;;;;;;;;;;;;;;;:32;;;;12766:7;12750:31;;12759:5;12750:31;;;12775:5;12750:31;;;;;;;;;;;;;;;;;;12535:254;;;:::o;10876:262::-;10978:1;10964:16;;:2;:16;;;;10956:25;;;;;;;;11012:26;11032:5;11012:9;:15;11022:4;11012:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;10994:9;:15;11004:4;10994:15;;;;;;;;;;;;;;;:44;;;;11065:24;11083:5;11065:9;:13;11075:2;11065:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;11049:9;:13;11059:2;11049:13;;;;;;;;;;;;;;;:40;;;;11120:2;11105:25;;11114:4;11105:25;;;11124:5;11105:25;;;;;;;;;;;;;;;;;;10876:262;;;:::o;4941:150::-;4999:7;5032:1;5027;:6;;5019:15;;;;;;;;5045:9;5061:1;5057;:5;5045:17;;5082:1;5075:8;;;4941:150;;;;:::o;5179:::-;5237:7;5257:9;5273:1;5269;:5;5257:17;;5298:1;5293;:6;;5285:15;;;;;;;;5320:1;5313:8;;;5179:150;;;;:::o

Swarm Source

bzzr://6b2b3be26e9b9caaf6a8777a9724e195e7c6420803c7726f402604de38d532a2

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  ]

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.