ETH Price: $3,364.94 (+0.08%)

Contract

0x496b277c76e441b59b7bC1AbA4CC7A748EA29406
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer123818522021-05-06 16:40:561332 days ago1620319256IN
Fake_Phishing234643
0 ETH0.0055634488.00000112
Transfer120738092021-03-20 5:27:231380 days ago1616218043IN
Fake_Phishing234643
0 ETH0.00304163116
Transfer120737552021-03-20 5:14:121380 days ago1616217252IN
Fake_Phishing234643
0 ETH0.00469164113.85
Transfer120737152021-03-20 5:06:421380 days ago1616216802IN
Fake_Phishing234643
0 ETH0.0064303114.4
Transfer120677882021-03-19 7:16:381381 days ago1616138198IN
Fake_Phishing234643
0 ETH0.00515262125.00000145
Transfer120544052021-03-17 5:59:091383 days ago1615960749IN
Fake_Phishing234643
0 ETH0.01155581137
Transfer120544052021-03-17 5:59:091383 days ago1615960749IN
Fake_Phishing234643
0 ETH0.01172451139
Transfer120544052021-03-17 5:59:091383 days ago1615960749IN
Fake_Phishing234643
0 ETH0.00474041115
Transfer120172352021-03-11 12:17:361389 days ago1615465056IN
Fake_Phishing234643
0 ETH0.00575421102.35000179
Transfer120160282021-03-11 7:52:031389 days ago1615449123IN
Fake_Phishing234643
0 ETH0.00483522117.3
Transfer120107982021-03-10 12:29:571390 days ago1615379397IN
Fake_Phishing234643
0 ETH0.00540407131.1
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023347389
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.002332689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023347389
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.002332689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0023336689
Transfer120092782021-03-10 6:51:221390 days ago1615359082IN
Fake_Phishing234643
0 ETH0.0036686689
Transfer119839992021-03-06 9:16:401394 days ago1615022200IN
Fake_Phishing234643
0 ETH0.0020461778.00000145
Transfer119702332021-03-04 6:44:491396 days ago1614840289IN
Fake_Phishing234643
0 ETH0.0020452378.00000145
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
ismToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-28
*/

pragma solidity ^0.4.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    /**
      * @dev The Ownable constructor sets the original `owner` of the contract to the sender
      * account.
      */
    function Ownable() public {
        owner = msg.sender;
    }

    /**
      * @dev Throws if called by any account other than the owner.
      */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
    uint public _totalSupply;
    function totalSupply() public constant returns (uint);
    function balanceOf(address who) public constant returns (uint);
    function transfer(address to, uint value) public;
    event Transfer(address indexed from, address indexed to, uint value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint);
    function transferFrom(address from, address to, uint value) public;
    function approve(address spender, uint value) public;
    event Approval(address indexed owner, address indexed spender, uint value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is Ownable, ERC20Basic {
    using SafeMath for uint;

    mapping(address => uint) public balances;

    // additional variables for use if transaction fees ever became necessary
    uint public basisPointsRate = 0;
    uint public maximumFee = 0;

    /**
    * @dev Fix for the ERC20 short address attack.
    */
    modifier onlyPayloadSize(uint size) {
        require(!(msg.data.length < size + 4));
        _;
    }

    /**
    * @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, uint _value) public onlyPayloadSize(2 * 32) {
        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        uint sendAmount = _value.sub(fee);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(msg.sender, owner, fee);
        }
        Transfer(msg.sender, _to, sendAmount);
    }

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

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is BasicToken, ERC20 {

    mapping (address => mapping (address => uint)) public allowed;

    uint public constant MAX_UINT = 2**256 - 1;

    /**
    * @dev Transfer tokens from one address to another
    * @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 uint the amount of tokens to be transferred
    */
    function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) {
        var _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // if (_value > _allowance) throw;

        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        if (_allowance < MAX_UINT) {
            allowed[_from][msg.sender] = _allowance.sub(_value);
        }
        uint sendAmount = _value.sub(fee);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(_from, owner, fee);
        }
        Transfer(_from, _to, sendAmount);
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * @param _spender The address which will spend the funds.
    * @param _value The amount of tokens to be spent.
    */
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {

        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender, 0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));

        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
    }

    /**
    * @dev Function to check the amount of tokens than 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 uint specifying the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        return allowed[_owner][_spender];
    }

}


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @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() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}

contract BlackList is Ownable, BasicToken {

    /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded CNYT) ///////
    function getBlackListStatus(address _maker) external constant returns (bool) {
        return isBlackListed[_maker];
    }

    function getOwner() external constant returns (address) {
        return owner;
    }

    mapping (address => bool) public isBlackListed;
    
    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        _totalSupply -= dirtyFunds;
        DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);

}

contract UpgradedStandardToken is StandardToken{
    // those methods are called by the legacy contract
    // and they must ensure msg.sender to be the contract address
    function transferByLegacy(address from, address to, uint value) public;
    function transferFromByLegacy(address sender, address from, address spender, uint value) public;
    function approveByLegacy(address from, address spender, uint value) public;
}

contract ismToken is Pausable, StandardToken, BlackList {

    string public name;
    string public symbol;
    uint public decimals;
    address public upgradedAddress;
    bool public deprecated;

    //  The contract can be initialized with a number of tokens
    //  All the tokens are deposited to the owner address
    //
    // @param _balance Initial supply of the contract
    // @param _name Token Name
    // @param _symbol Token symbol
    // @param _decimals Token decimals
    function ismToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public {
        _totalSupply = _initialSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        balances[owner] = _initialSupply;
        deprecated = false;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[msg.sender]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
            return super.transfer(_to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[_from]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
        } else {
            return super.transferFrom(_from, _to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function balanceOf(address who) public constant returns (uint) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).balanceOf(who);
        } else {
            return super.balanceOf(who);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
        } else {
            return super.approve(_spender, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        if (deprecated) {
            return StandardToken(upgradedAddress).allowance(_owner, _spender);
        } else {
            return super.allowance(_owner, _spender);
        }
    }

    // deprecate current contract in favour of a new one
    function deprecate(address _upgradedAddress) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        Deprecate(_upgradedAddress);
    }

    // deprecate current contract if favour of a new one
    function totalSupply() public constant returns (uint) {
        if (deprecated) {
            return StandardToken(upgradedAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }

    // Issue a new amount of tokens
    // these tokens are deposited into the owner address
    //
    // @param _amount Number of tokens to be issued
    function issue(uint amount) public onlyOwner {
        require(_totalSupply + amount > _totalSupply);
        require(balances[owner] + amount > balances[owner]);

        balances[owner] += amount;
        _totalSupply += amount;
        Issue(amount);
    }

    // Redeem tokens.
    // These tokens are withdrawn from the owner address
    // if the balance must be enough to cover the redeem
    // or the call will fail.
    // @param _amount Number of tokens to be issued
    function redeem(uint amount) public onlyOwner {
        require(_totalSupply >= amount);
        require(balances[owner] >= amount);

        _totalSupply -= amount;
        balances[owner] -= amount;
        Redeem(amount);
    }

    function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
        // Ensure transparency by hardcoding limit beyond which fees can never be added
        require(newBasisPoints < 20);
        require(newMaxFee < 50);

        basisPointsRate = newBasisPoints;
        maximumFee = newMaxFee.mul(10**decimals);

        Params(basisPointsRate, maximumFee);
    }

    // Called when new token are issued
    event Issue(uint amount);

    // Called when tokens are redeemed
    event Redeem(uint amount);

    // Called when contract is deprecated
    event Deprecate(address newAddress);

    // Called if contract ever adds fees
    event Params(uint feeBasisPoints, uint maxFee);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","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":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","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"},{"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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]

Deployed Bytecode

0x6080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461019a5780630753c30c14610224578063095ea7b3146102475780630e136b191461026b5780630ecb93c01461029457806318160ddd146102b557806323b872dd146102dc57806326976e3f1461030657806327e235e314610337578063313ce56714610358578063353907141461036d5780633eaaf86b146103825780633f4ba83a1461039757806359bf1abe146103ac5780635c658165146103cd5780635c975abb146103f457806370a08231146104095780638456cb591461042a578063893d20e81461043f5780638da5cb5b1461045457806395d89b4114610469578063a9059cbb1461047e578063c0324c77146104a2578063cc872b66146104bd578063db006a75146104d5578063dd62ed3e146104ed578063dd644f7214610514578063e47d606014610529578063e4997dc51461054a578063e5b5019a1461056b578063f2fde38b14610580578063f3bdc228146105a1575b600080fd5b3480156101a657600080fd5b506101af6105c2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e95781810151838201526020016101d1565b50505050905090810190601f1680156102165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023057600080fd5b50610245600160a060020a0360043516610650565b005b34801561025357600080fd5b50610245600160a060020a03600435166024356106e8565b34801561027757600080fd5b506102806107aa565b604080519115158252519081900360200190f35b3480156102a057600080fd5b50610245600160a060020a03600435166107ba565b3480156102c157600080fd5b506102ca61082c565b60408051918252519081900360200190f35b3480156102e857600080fd5b50610245600160a060020a03600435811690602435166044356108e8565b34801561031257600080fd5b5061031b6109be565b60408051600160a060020a039092168252519081900360200190f35b34801561034357600080fd5b506102ca600160a060020a03600435166109cd565b34801561036457600080fd5b506102ca6109df565b34801561037957600080fd5b506102ca6109e5565b34801561038e57600080fd5b506102ca6109eb565b3480156103a357600080fd5b506102456109f1565b3480156103b857600080fd5b50610280600160a060020a0360043516610a67565b3480156103d957600080fd5b506102ca600160a060020a0360043581169060243516610a89565b34801561040057600080fd5b50610280610aa6565b34801561041557600080fd5b506102ca600160a060020a0360043516610ab6565b34801561043657600080fd5b50610245610b76565b34801561044b57600080fd5b5061031b610bf1565b34801561046057600080fd5b5061031b610c00565b34801561047557600080fd5b506101af610c0f565b34801561048a57600080fd5b50610245600160a060020a0360043516602435610c6a565b3480156104ae57600080fd5b50610245600435602435610d4f565b3480156104c957600080fd5b50610245600435610de4565b3480156104e157600080fd5b50610245600435610e8f565b3480156104f957600080fd5b506102ca600160a060020a0360043581169060243516610f3a565b34801561052057600080fd5b506102ca611005565b34801561053557600080fd5b50610280600160a060020a036004351661100b565b34801561055657600080fd5b50610245600160a060020a0360043516611020565b34801561057757600080fd5b506102ca61108f565b34801561058c57600080fd5b50610245600160a060020a0360043516611095565b3480156105ad57600080fd5b50610245600160a060020a03600435166110e7565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106485780601f1061061d57610100808354040283529160200191610648565b820191906000526020600020905b81548152906001019060200180831161062b57829003601f168201915b505050505081565b600054600160a060020a0316331461066757600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b604060443610156106f857600080fd5b600a5460a060020a900460ff161561079b57600a54604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15801561077e57600080fd5b505af1158015610792573d6000803e3d6000fd5b505050506107a5565b6107a58383611193565b505050565b600a5460a060020a900460ff1681565b600054600160a060020a031633146107d157600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600a5460009060a060020a900460ff16156108e057600a60009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1580156108ad57600080fd5b505af11580156108c1573d6000803e3d6000fd5b505050506040513d60208110156108d757600080fd5b505190506108e5565b506001545b90565b60005460a060020a900460ff16156108ff57600080fd5b600160a060020a03831660009081526006602052604090205460ff161561092557600080fd5b600a5460a060020a900460ff16156109b357600a54604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b15801561077e57600080fd5b6107a5838383611241565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b600054600160a060020a03163314610a0857600080fd5b60005460a060020a900460ff161515610a2057600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610b6657600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a082319160248083019260209291908290030181600087803b158015610b3357600080fd5b505af1158015610b47573d6000803e3d6000fd5b505050506040513d6020811015610b5d57600080fd5b50519050610a84565b610b6f8261143d565b9050610a84565b600054600160a060020a03163314610b8d57600080fd5b60005460a060020a900460ff1615610ba457600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031690565b600054600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106485780601f1061061d57610100808354040283529160200191610648565b60005460a060020a900460ff1615610c8157600080fd5b3360009081526006602052604090205460ff1615610c9e57600080fd5b600a5460a060020a900460ff1615610d4157600a54604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0385811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b158015610d2457600080fd5b505af1158015610d38573d6000803e3d6000fd5b50505050610d4b565b610d4b8282611458565b5050565b600054600160a060020a03163314610d6657600080fd5b60148210610d7357600080fd5b60328110610d8057600080fd5b6003829055600954610d9c908290600a0a63ffffffff6115c516565b600481905560035460408051918252602082019290925281517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e929181900390910190a15050565b600054600160a060020a03163314610dfb57600080fd5b60015481810111610e0b57600080fd5b60008054600160a060020a031681526002602052604090205481810111610e3157600080fd5b60008054600160a060020a03168152600260209081526040918290208054840190556001805484019055815183815291517fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9281900390910190a150565b600054600160a060020a03163314610ea657600080fd5b600154811115610eb557600080fd5b60008054600160a060020a0316815260026020526040902054811115610eda57600080fd5b60018054829003905560008054600160a060020a031681526002602090815260409182902080548490039055815183815291517f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449281900390910190a150565b600a5460009060a060020a900460ff1615610ff257600a54604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e9160448083019260209291908290030181600087803b158015610fbf57600080fd5b505af1158015610fd3573d6000803e3d6000fd5b505050506040513d6020811015610fe957600080fd5b50519050610fff565b610ffc83836115fb565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b600054600160a060020a0316331461103757600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60001981565b600054600160a060020a031633146110ac57600080fd5b600160a060020a038116156110e4576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60008054600160a060020a031633146110ff57600080fd5b600160a060020a03821660009081526006602052604090205460ff16151561112657600080fd5b61112f82610ab6565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15050565b604060443610156111a357600080fd5b81158015906111d45750336000908152600560209081526040808320600160a060020a038716845290915290205415155b156111de57600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3505050565b600080806060606436101561125557600080fd5b600160a060020a03871660009081526005602090815260408083203384529091529020546003549094506112a4906127109061129890889063ffffffff6115c516565b9063ffffffff61162616565b92506004548311156112b65760045492505b6000198410156112f5576112d0848663ffffffff61163d16565b600160a060020a03881660009081526005602090815260408083203384529091529020555b611305858463ffffffff61163d16565b600160a060020a038816600090815260026020526040902054909250611331908663ffffffff61163d16565b600160a060020a038089166000908152600260205260408082209390935590881681522054611366908363ffffffff61164f16565b600160a060020a0387166000908152600260205260408120919091558311156113fb5760008054600160a060020a03168152600260205260409020546113b2908463ffffffff61164f16565b60008054600160a060020a0390811682526002602090815260408084209490945591548351878152935190821693918b169260008051602061165f833981519152928290030190a35b85600160a060020a031687600160a060020a031660008051602061165f833981519152846040518082815260200191505060405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561146b57600080fd5b611486612710611298600354876115c590919063ffffffff16565b92506004548311156114985760045492505b6114a8848463ffffffff61163d16565b336000908152600260205260409020549092506114cb908563ffffffff61163d16565b3360009081526002602052604080822092909255600160a060020a038716815220546114fd908363ffffffff61164f16565b600160a060020a0386166000908152600260205260408120919091558311156115905760008054600160a060020a0316815260026020526040902054611549908463ffffffff61164f16565b60008054600160a060020a03908116825260026020908152604080842094909455915483518781529351911692339260008051602061165f83398151915292918290030190a35b604080518381529051600160a060020a03871691339160008051602061165f8339815191529181900360200190a35050505050565b6000808315156115d857600091506115f4565b508282028284828115156115e857fe5b04146115f057fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600080828481151561163457fe5b04949350505050565b60008282111561164957fe5b50900390565b6000828201838110156115f057fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d15aa5221312a2fce2bf67bd8516f5aefeef8ac206962df11788a0fc4e8c01440029

Deployed Bytecode Sourcemap

9969:4911:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10034:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10034:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10034:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12787:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12787:181:0;-1:-1:-1;;;;;12787:181:0;;;;;;;12041:302;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12041:302:0;-1:-1:-1;;;;;12041:302:0;;;;;;;10150:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10150:22:0;;;;;;;;;;;;;;;;;;;;;;8712:145;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8712:145:0;-1:-1:-1;;;;;8712:145:0;;;;;13034:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13034:218:0;;;;;;;;;;;;;;;;;;;;11265:362;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11265:362:0;-1:-1:-1;;;;;11265:362:0;;;;;;;;;;;;10113:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10113:30:0;;;;;;;;-1:-1:-1;;;;;10113:30:0;;;;;;;;;;;;;;2951:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2951:40:0;-1:-1:-1;;;;;2951:40:0;;;;;10086:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10086:20:0;;;;3117:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3117:26:0;;;;2053:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2053:24:0;;;;8160:90;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8160:90:0;;;;8426:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8426:124:0;-1:-1:-1;;;;;8426:124:0;;;;;4741:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4741:61:0;-1:-1:-1;;;;;4741:61:0;;;;;;;;;;7544:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7544:26:0;;;;11712:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11712:244:0;-1:-1:-1;;;;;11712:244:0;;;;;7985:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7985:88:0;;;;8558:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8558:87:0;;;;1162:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1162:20:0;;;;10059;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10059:20:0;;;;10854:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10854:326:0;-1:-1:-1;;;;;10854:326:0;;;;;;;14158:387;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14158:387:0;;;;;;;13416:266;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13416:266:0;;;;;13913:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13913:237:0;;;;;12428:293;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12428:293:0;-1:-1:-1;;;;;12428:293:0;;;;;;;;;;3079:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3079:31:0;;;;8653:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8653:46:0;-1:-1:-1;;;;;8653:46:0;;;;;8865:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8865:160:0;-1:-1:-1;;;;;8865:160:0;;;;;4811:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4811:42:0;;;;1734:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1734:151:0;-1:-1:-1;;;;;1734:151:0;;;;;9033:324;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9033:324:0;-1:-1:-1;;;;;9033:324:0;;;;;10034:18;;;;;;;;;;;;;;;-1:-1:-1;;10034:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12787:181::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;12860:10;:17;;-1:-1:-1;;;;;12860:17:0;;;;-1:-1:-1;;12888:34:0;-1:-1:-1;;;;;12888:34:0;;;;;;;;12933:27;;;;;;;;;;;;;;;;;12787:181;:::o;12041:302::-;12112:6;3296:8;3278;:26;3276:29;3268:38;;;;;;12135:10;;-1:-1:-1;;;12135:10:0;;;;12131:205;;;12191:15;;12169:84;;;;;;12224:10;12169:84;;;;-1:-1:-1;;;;;12169:84:0;;;;;;;;;;;;;;;12191:15;;;;;12169:54;;:84;;;;;12191:15;;12169:84;;;;;;;12191:15;;12169:84;;;5:2:-1;;;;30:1;27;20:12;5:2;12169:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12169:84:0;;;;12162:91;;12131:205;12293:31;12307:8;12317:6;12293:13;:31::i;:::-;12041:302;;;:::o;10150:22::-;;;-1:-1:-1;;;10150:22:0;;;;;:::o;8712:145::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;8782:24:0;;;;;;:13;:24;;;;;;;;;:31;;-1:-1:-1;;8782:31:0;8809:4;8782:31;;;8824:25;;;;;;;;;;;;;;;;;8712:145;:::o;13034:218::-;13103:10;;13082:4;;-1:-1:-1;;;13103:10:0;;;;13099:146;;;13151:15;;;;;;;;;-1:-1:-1;;;;;13151:15:0;-1:-1:-1;;;;;13137:42:0;;:44;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13137:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13137:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13137:44:0;;-1:-1:-1;13130:51:0;;13099:146;-1:-1:-1;13221:12:0;;13099:146;13034:218;:::o;11265:362::-;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;-1:-1:-1;;;;;11369:20:0;;;;;;:13;:20;;;;;;;;11368:21;11360:30;;;;;;11405:10;;-1:-1:-1;;;11405:10:0;;;;11401:219;;;11461:15;;11439:91;;;;;;11499:10;11439:91;;;;-1:-1:-1;;;;;11439:91:0;;;;;;;;;;;;;;;;;;;;;;11461:15;;;;;11439:59;;:91;;;;;11461:15;;11439:91;;;;;;;11461:15;;11439:91;;;5:2:-1;;;;30:1;27;20:12;11401:219:0;11570:38;11589:5;11596:3;11601:6;11570:18;:38::i;10113:30::-;;;-1:-1:-1;;;;;10113:30:0;;:::o;2951:40::-;;;;;;;;;;;;;:::o;10086:20::-;;;;:::o;3117:26::-;;;;:::o;2053:24::-;;;;:::o;8160:90::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;7880:6;;-1:-1:-1;;;7880:6:0;;;;7872:15;;;;;;;;8223:5;8214:14;;-1:-1:-1;;8214:14:0;;;8235:9;;;;8223:5;8235:9;8160:90::o;8426:124::-;-1:-1:-1;;;;;8521:21:0;;8497:4;8521:21;;;:13;:21;;;;;;;;8426:124;;;;:::o;4741:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7544:26::-;;;-1:-1:-1;;;7544:26:0;;;;;:::o;11712:244::-;11790:10;;11769:4;;-1:-1:-1;;;11790:10:0;;;;11786:163;;;11846:15;;11824:53;;;;;;-1:-1:-1;;;;;11824:53:0;;;;;;;;;11846:15;;;;;11824:48;;:53;;;;;;;;;;;;;;11846:15;;11824:53;;;5:2:-1;;;;30:1;27;20:12;5:2;11824:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11824:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11824:53:0;;-1:-1:-1;11817:60:0;;11786:163;11917:20;11933:3;11917:15;:20::i;:::-;11910:27;;;;7985:88;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;8040:6;:13;;-1:-1:-1;;8040:13:0;-1:-1:-1;;;8040:13:0;;;8060:7;;;;8040:6;8060:7;7985:88::o;8558:87::-;8605:7;8632:5;-1:-1:-1;;;;;8632:5:0;8558:87;:::o;1162:20::-;;;-1:-1:-1;;;;;1162:20:0;;:::o;10059:::-;;;;;;;;;;;;;;;-1:-1:-1;;10059:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10854:326;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;10953:10;10939:25;;;;:13;:25;;;;;;;;10938:26;10930:35;;;;;;10980:10;;-1:-1:-1;;;10980:10:0;;;;10976:197;;;11036:15;;11014:80;;;;;;11070:10;11014:80;;;;-1:-1:-1;;;;;11014:80:0;;;;;;;;;;;;;;;11036:15;;;;;11014:55;;:80;;;;;11036:15;;11014:80;;;;;;;11036:15;;11014:80;;;5:2:-1;;;;30:1;27;20:12;5:2;11014:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11014:80:0;;;;11007:87;;10976:197;11134:27;11149:3;11154:6;11134:14;:27::i;:::-;10854:326;;:::o;14158:387::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;14356:2;14339:19;;14331:28;;;;;;14390:2;14378:14;;14370:23;;;;;;14406:15;:32;;;14480:8;;14462:27;;:9;;14476:2;:12;14462:27;:13;:27;:::i;:::-;14449:10;:40;;;14509:15;;14502:35;;;;;;;;;;;;;;;;;;;;;;;;;;14158:387;;:::o;13416:266::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;13504:12;;13480:21;;;:36;13472:45;;;;;;13563:15;13572:5;;-1:-1:-1;;;;;13572:5:0;13563:15;;:8;:15;;;;;;13536:24;;;:42;13528:51;;;;;;13592:15;13601:5;;-1:-1:-1;;;;;13601:5:0;13592:15;;:8;:15;;;;;;;;;:25;;;;;;13601:5;13628:22;;;;;;13661:13;;;;;;;;;;;;;;;;;13416:266;:::o;13913:237::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;13978:12;;:22;-1:-1:-1;13978:22:0;13970:31;;;;;;14020:15;14029:5;;-1:-1:-1;;;;;14029:5:0;14020:15;;:8;:15;;;;;;:25;-1:-1:-1;14020:25:0;14012:34;;;;;;14059:12;:22;;;;;;;:12;14101:5;;-1:-1:-1;;;;;14101:5:0;14092:15;;:8;:15;;;;;;;;;:25;;;;;;;14128:14;;;;;;;;;;;;;;;;;13913:237;:::o;12428:293::-;12537:10;;12506:14;;-1:-1:-1;;;12537:10:0;;;;12533:181;;;12585:15;;12571:58;;;;;;-1:-1:-1;;;;;12571:58:0;;;;;;;;;;;;;;;;12585:15;;;;;12571:40;;:58;;;;;;;;;;;;;;12585:15;;12571:58;;;5:2:-1;;;;30:1;27;20:12;5:2;12571:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12571:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12571:58:0;;-1:-1:-1;12564:65:0;;12533:181;12669:33;12685:6;12693:8;12669:15;:33::i;:::-;12662:40;;12533:181;12428:293;;;;:::o;3079:31::-;;;;:::o;8653:46::-;;;;;;;;;;;;;;;:::o;8865:160::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;8941:27:0;;8971:5;8941:27;;;:13;:27;;;;;;;;;:35;;-1:-1:-1;;8941:35:0;;;8987:30;;;;;;;;;;;;;;;;;8865:160;:::o;4811:42::-;-1:-1:-1;;4811:42:0;:::o;1734:151::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;1811:22:0;;;1807:71;;1850:5;:16;;-1:-1:-1;;1850:16:0;-1:-1:-1;;;;;1850:16:0;;;;;1807:71;1734:151;:::o;9033:324::-;9166:15;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;9123:31:0;;;;;;:13;:31;;;;;;;;9115:40;;;;;;;;9184:27;9194:16;9184:9;:27::i;:::-;-1:-1:-1;;;;;9222:26:0;;9251:1;9222:26;;;:8;:26;;;;;;;;:30;;;;9263:12;:26;;;;;;;9300:49;;;;;;;;;;;;9166:45;;-1:-1:-1;9300:49:0;;;;;;;;;9033:324;;:::o;6291:573::-;6362:6;3296:8;3278;:26;3276:29;3268:38;;;;;;6702:11;;;;;6701:53;;-1:-1:-1;6727:10:0;6719:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6719:29:0;;;;;;;;;;:34;;6701:53;6699:56;6691:65;;;;;;6777:10;6769:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6769:29:0;;;;;;;;;;;;:38;;;6818;;;;;;;6769:29;;6777:10;6818:38;;;;;;;;;;;6291:573;;;:::o;5143:901::-;5248:14;;;5229:6;3296:8;3278;:26;3276:29;3268:38;;;;;;-1:-1:-1;;;;;5265:14:0;;;;;;:7;:14;;;;;;;;5280:10;5265:26;;;;;;;;5485:15;;5265:26;;-1:-1:-1;5473:40:0;;5507:5;;5474:27;;:6;;:27;:10;:27;:::i;:::-;5473:33;:40;:33;:40;:::i;:::-;5462:51;;5534:10;;5528:3;:16;5524:65;;;5567:10;;5561:16;;5524:65;-1:-1:-1;;5603:10:0;:21;5599:105;;;5670:22;:10;5685:6;5670:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5641:14:0;;;;;;:7;:14;;;;;;;;5656:10;5641:26;;;;;;;:51;5599:105;5732:15;:6;5743:3;5732:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5776:15:0;;;;;;:8;:15;;;;;;5714:33;;-1:-1:-1;5776:27:0;;5796:6;5776:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5758:15:0;;;;;;;:8;:15;;;;;;:45;;;;5830:13;;;;;;;:29;;5848:10;5830:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5814:13:0;;;;;;:8;:13;;;;;:45;;;;5874:7;;5870:124;;;5916:15;5925:5;;-1:-1:-1;;;;;5925:5:0;5916:15;;:8;:15;;;;;;:24;;5936:3;5916:24;:19;:24;:::i;:::-;5898:15;5907:5;;-1:-1:-1;;;;;5907:5:0;;;5898:15;;:8;:15;;;;;;;;:42;;;;5971:5;;5955:27;;;;;;;5971:5;;;;5955:27;;;;-1:-1:-1;;;;;;;;;;;5955:27:0;;;;;;;5870:124;6020:3;-1:-1:-1;;;;;6004:32:0;6013:5;-1:-1:-1;;;;;6004:32:0;-1:-1:-1;;;;;;;;;;;6025:10:0;6004:32;;;;;;;;;;;;;;;;;;5143:901;;;;;;;:::o;4290:116::-;-1:-1:-1;;;;;4382:16:0;4350:12;4382:16;;;:8;:16;;;;;;;4290:116::o;3499:573::-;3585:8;;3566:6;3296:8;3278;:26;3276:29;3268:38;;;;;;3596:40;3630:5;3597:27;3608:15;;3597:6;:10;;:27;;;;:::i;3596:40::-;3585:51;;3657:10;;3651:3;:16;3647:65;;;3690:10;;3684:16;;3647:65;3740:15;:6;3751:3;3740:15;:10;:15;:::i;:::-;3798:10;3789:20;;;;:8;:20;;;;;;3722:33;;-1:-1:-1;3789:32:0;;3814:6;3789:32;:24;:32;:::i;:::-;3775:10;3766:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3848:13:0;;;;;;:29;;3866:10;3848:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3832:13:0;;;;;;:8;:13;;;;;:45;;;;3892:7;;3888:129;;;3934:15;3943:5;;-1:-1:-1;;;;;3943:5:0;3934:15;;:8;:15;;;;;;:24;;3954:3;3934:24;:19;:24;:::i;:::-;3916:15;3925:5;;-1:-1:-1;;;;;3925:5:0;;;3916:15;;:8;:15;;;;;;;;:42;;;;3994:5;;3973:32;;;;;;;3994:5;;;3982:10;;-1:-1:-1;;;;;;;;;;;3973:32:0;;;;;;;;3888:129;4027:37;;;;;;;;-1:-1:-1;;;;;4027:37:0;;;4036:10;;-1:-1:-1;;;;;;;;;;;4027:37:0;;;;;;;;3499:573;;;;;:::o;146:208::-;204:7;;228:6;;224:47;;;258:1;251:8;;;;224:47;-1:-1:-1;293:5:0;;;297:1;293;:5;316;;;;;;;;:10;309:18;;;;345:1;338:8;;146:208;;;;;;:::o;7197:145::-;-1:-1:-1;;;;;7309:15:0;;;7275:14;7309:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7197:145::o;362:288::-;420:7;519:9;535:1;531;:5;;;;;;;;;362:288;-1:-1:-1;;;;362:288:0:o;658:123::-;716:7;743:6;;;;736:14;;;;-1:-1:-1;768:5:0;;;658:123::o;789:147::-;847:7;879:5;;;902:6;;;;895:14;;

Swarm Source

bzzr://d15aa5221312a2fce2bf67bd8516f5aefeef8ac206962df11788a0fc4e8c0144

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.