ETH Price: $2,006.09 (+7.47%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer126232442021-06-13 1:41:361722 days ago1623548496IN
0x405b17cC...8c35Def89
0 ETH0.000173926
Transfer111752422020-11-02 3:33:301945 days ago1604288010IN
0x405b17cC...8c35Def89
0 ETH0.001739131.00000145
Transfer108900712020-09-19 2:55:321989 days ago1600484132IN
0x405b17cC...8c35Def89
0 ETH0.0047662116
Transfer108856732020-09-18 10:42:361989 days ago1600425756IN
0x405b17cC...8c35Def89
0 ETH0.00955261170.31484412
Transfer108334712020-09-10 10:37:411997 days ago1599734261IN
0x405b17cC...8c35Def89
0 ETH0.0041088100
Transfer107224512020-08-24 10:10:552014 days ago1598263855IN
0x405b17cC...8c35Def89
0 ETH0.004655383
Transfer105133512020-07-23 3:36:252047 days ago1595475385IN
0x405b17cC...8c35Def89
0 ETH0.0019886548.4
Transfer105132462020-07-23 3:15:212047 days ago1595474121IN
0x405b17cC...8c35Def89
0 ETH0.0029031751.75
Transfer105131322020-07-23 2:51:172047 days ago1595472677IN
0x405b17cC...8c35Def89
0 ETH0.0015652860
Transfer105131322020-07-23 2:51:172047 days ago1595472677IN
0x405b17cC...8c35Def89
0 ETH0.0015652860
Transfer105082482020-07-22 8:57:582047 days ago1595408278IN
0x405b17cC...8c35Def89
0 ETH0.0039261670.00000123
Transfer105082112020-07-22 8:48:552047 days ago1595407735IN
0x405b17cC...8c35Def89
0 ETH0.0026707265.00000123
Transfer105077622020-07-22 7:12:112048 days ago1595401931IN
0x405b17cC...8c35Def89
0 ETH0.0039261670.00000123
Transfer104421612020-07-12 3:07:292058 days ago1594523249IN
0x405b17cC...8c35Def89
0 ETH0.000652225
Transfer104421432020-07-12 3:03:202058 days ago1594523000IN
0x405b17cC...8c35Def89
0 ETH0.0012339322
Transfer103261862020-06-24 3:59:422076 days ago1592971182IN
0x405b17cC...8c35Def89
0 ETH0.000991838.00000134
Transfer103261842020-06-24 3:59:352076 days ago1592971175IN
0x405b17cC...8c35Def89
0 ETH0.000991838.00000134
Transfer103025172020-06-20 12:03:262079 days ago1592654606IN
0x405b17cC...8c35Def89
0 ETH0.000156526
Transfer102870092020-06-18 2:27:572082 days ago1592447277IN
0x405b17cC...8c35Def89
0 ETH0.001109727.00000145
Transfer102828392020-06-17 10:59:442082 days ago1592391584IN
0x405b17cC...8c35Def89
0 ETH0.0019069934.00000123
Transfer102826442020-06-17 10:16:482082 days ago1592389008IN
0x405b17cC...8c35Def89
0 ETH0.0017667843.00000145
Transfer102826212020-06-17 10:12:032082 days ago1592388723IN
0x405b17cC...8c35Def89
0 ETH0.0017667843.00000145
Transfer102824172020-06-17 9:26:142082 days ago1592385974IN
0x405b17cC...8c35Def89
0 ETH0.0018078744.00000145
Transfer102823392020-06-17 9:09:142082 days ago1592384954IN
0x405b17cC...8c35Def89
0 ETH0.0024678744.00000145
Transfer102810732020-06-17 4:23:392083 days ago1592367819IN
0x405b17cC...8c35Def89
0 ETH0.0014791636.00000145
View all transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

Contract Source Code Verified (Exact Match)

Contract Name:
BlueOceanCompetitionContract

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-10-25
*/

pragma solidity ^0.4.20;
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a / b;
    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;
  }
}
contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract BlueOceanCompetitionContract is ERC20 {
    using SafeMath for uint256; 
    address owner1 = msg.sender; 
    address owner2; 
    mapping (address => uint256) balances; 
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => uint256) times;
    mapping (address => mapping (uint256 => uint256)) dorpnum;
    mapping (address => mapping (uint256 => uint256)) dorptime;
    mapping (address => mapping (uint256 => uint256)) freeday;
    mapping (address => bool) public frozenAccount;
    mapping (address => bool) public airlist;
    string public constant name = "Blue Ocean Competition Contract";
    string public constant symbol = "BOCC";
    uint public constant decimals = 18;
    uint256 _Rate = 10 ** decimals; 
    uint256 public totalSupply = 2000000000 * _Rate;
    uint256 public totalDistributed = 0;
    uint256 public totalRemaining = totalSupply.sub(totalDistributed);
    uint256 public value = 200 * _Rate;
    uint256 public _per = 1;
    bool public distributionClosed = true;
    bool key;
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event FrozenFunds(address target, bool frozen);
    event Distr(address indexed to, uint256 amount);
    event DistrClosed(bool Closed);
    modifier onlyOwner() {
        require(msg.sender == owner1 || msg.sender == owner2);
        _;
    }
    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
     function BlueOceanCompetitionContract (address _owner,bytes32 _key) public {
        key = keccak256(name,symbol)==_key;
        owner1 = msg.sender;
        owner2 = _owner;
    }
     function nowInSeconds() returns (uint256){
        return now;
    }
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0) && newOwner != owner1 && newOwner != owner2) {
            if(msg.sender == owner1){
             owner1 = newOwner;   
            }
            if(msg.sender == owner2){
             owner2 = newOwner;   
            }
        }
    }
    function closeDistribution(bool Closed) onlyOwner public returns (bool) {
        distributionClosed = Closed;
        DistrClosed(Closed);
        return true;
    }
   function Set_per(uint256 per) onlyOwner public returns (bool) {
   require(per <= 100 && per >= 1 && key);
        _per  = per;
        return true;
    }
    function distr(address _to, uint256 _amount, uint256 _freeday) private returns (bool) {
         if (_amount > totalRemaining) {
            _amount = totalRemaining;
        }
        totalDistributed = totalDistributed.add(_amount);
        totalRemaining = totalRemaining.sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        if (_freeday>0) {times[_to] += 1;
        dorptime[_to][times[_to]] = now;
        freeday[_to][times[_to]] = _freeday * 1 days;
        dorpnum[_to][times[_to]] = _amount;}
        if (totalDistributed >= totalSupply) {
            distributionClosed = true;
        }        
        Distr(_to, _amount);
        Transfer(address(0), _to, _amount);
        return true;
    }
    function distribute(address[] addresses, uint256[] amounts, uint256 _freeday) onlyOwner public {
        require(addresses.length <= 255);
        require(addresses.length == amounts.length&&key);       
        for (uint8 i = 0; i < addresses.length; i++) {
            require(amounts[i] * _Rate <= totalRemaining);
            distr(addresses[i], amounts[i] * _Rate, _freeday);
        }
    }
    function () external payable {
            getTokens();
     }
    function getTokens() payable public {
        if(!distributionClosed){
        if (value > totalRemaining) {
            value = totalRemaining;
        }
        address investor = msg.sender;
        uint256 toGive = value;
        require(value <= totalRemaining&&key);        
        if(!airlist[investor]){
        totalDistributed = totalDistributed.add(toGive);
        totalRemaining = totalRemaining.sub(toGive);
        balances[investor] = balances[investor].add(toGive);
        times[investor] += 1;
        dorptime[investor][times[investor]] = now;
        freeday[investor][times[investor]] = 180 * 1 days;
        dorpnum[investor][times[investor]] = toGive;
        airlist[investor] = true;
        if (totalDistributed >= totalSupply) {
            distributionClosed = true;
        }        
        Distr(investor, toGive);
        Transfer(address(0), investor, toGive);
        }
        }
    }
    function freeze(address[] addresses,bool locked) onlyOwner public {       
        require(addresses.length <= 255);       
        for (uint i = 0; i < addresses.length; i++) {
            freezeAccount(addresses[i], locked);
        }
    } 
    function freezeAccount(address target, bool B) private {
        frozenAccount[target] = B;
        FrozenFunds(target, B);
    }
    function balanceOf(address _owner) constant public returns (uint256) {
      if(!distributionClosed && !airlist[_owner]){
       return balances[_owner] + value;
       }
	    return balances[_owner];
    }
    function lockOf(address _owner) constant public returns (uint256) {
    uint locknum = 0;
    for (uint8 i = 1; i < times[_owner] + 1; i++){
      if(now < dorptime[_owner][i] + freeday[_owner][i] + 1* 1 days){
            locknum += dorpnum[_owner][i];
        }
       else{
            if(now < dorptime[_owner][i] + freeday[_owner][i] + 100/_per* 1 days){
               locknum += ((now - dorptime[_owner][i] - freeday[_owner][i] )/(1 * 1 days)*dorpnum[_owner][i]*_per/100);
              }
              else{
                 locknum += 0;
              }
        }
    }
	    return locknum;
    }
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= (balances[msg.sender] - lockOf(msg.sender))&&key);
        require(!frozenAccount[msg.sender]);                     
        require(!frozenAccount[_to]);                      
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(msg.sender, _to, _amount);
        return true;
    }
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= (allowed[_from][msg.sender] - lockOf(msg.sender))&&key);
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(_from, _to, _amount);
        return true;
    }
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    function withdraw() onlyOwner public {
        uint256 etherBalance = this.balance;
        address owner = msg.sender;
        owner.transfer(etherBalance);
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"airlist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributionClosed","outputs":[{"name":"","type":"bool"}],"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":"_per","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"value","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"lockOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"nowInSeconds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"per","type":"uint256"}],"name":"Set_per","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"Closed","type":"bool"}],"name":"closeDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"locked","type":"bool"}],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","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":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"},{"name":"_freeday","type":"uint256"}],"name":"distribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_owner","type":"address"},{"name":"_key","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"Closed","type":"bool"}],"name":"DistrClosed","type":"event"}]

608060405260018054600160a060020a03191633179055670de0b6b3a7640000600b556b06765c793fa10079d0000000600c8190556000600d819055610052919064010000000061112e6101f182021704565b600e55600b5460c802600f55600160108190556011805460ff1916909117905534801561007e57600080fd5b5060405160408061158383398101604081815282516020938401518284018352601f84527f426c7565204f6365616e20436f6d7065746974696f6e20436f6e74726163740085850190815283518085018552600481527f424f434300000000000000000000000000000000000000000000000000000000968101969096529251845192959194859490938291908083835b6020831061012e5780518252601f19909201916020918201910161010f565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106101765780518252601f199092019160209182019101610157565b51815160209390930361010090810a600019018019909216919093161790526040519190930181900390206011805461ff0019169790911490920295909517905550506001805433600160a060020a03199182161790915560028054909116600160a060020a03959095169490941790935550610203915050565b6000828211156101fd57fe5b50900390565b611371806102126000396000f3006080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610152578063071187a2146101dc578063095ea7b31461021157806318160ddd1461023557806323b872dd1461025c578063259653b814610286578063313ce5671461029b57806335b873cd146102b05780633ccfd60b146102c55780633fa4f245146102da5780635a46d3b5146102ef57806370a08231146103105780637995b15b1461033157806395d89b4114610346578063a04e1da41461035b578063a9059cbb14610373578063aa6ca80814610148578063b414d4b614610397578063be4a7160146103b8578063d8a54360146103d2578063dd62ed3e146103e7578063e2dc77631461040e578063efca2eed14610467578063f2fde38b1461047c578063f72df6511461049d575b61015061052d565b005b34801561015e57600080fd5b50610167610708565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a1578181015183820152602001610189565b50505050905090810190601f1680156101ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e857600080fd5b506101fd600160a060020a036004351661073f565b604080519115158252519081900360200190f35b34801561021d57600080fd5b506101fd600160a060020a0360043516602435610754565b34801561024157600080fd5b5061024a6107fc565b60408051918252519081900360200190f35b34801561026857600080fd5b506101fd600160a060020a0360043581169060243516604435610802565b34801561029257600080fd5b506101fd610994565b3480156102a757600080fd5b5061024a61099d565b3480156102bc57600080fd5b5061024a6109a2565b3480156102d157600080fd5b506101506109a8565b3480156102e657600080fd5b5061024a610a14565b3480156102fb57600080fd5b5061024a600160a060020a0360043516610a1a565b34801561031c57600080fd5b5061024a600160a060020a0360043516610b9c565b34801561033d57600080fd5b5061024a610c13565b34801561035257600080fd5b50610167610c17565b34801561036757600080fd5b506101fd600435610c4e565b34801561037f57600080fd5b506101fd600160a060020a0360043516602435610cb8565b3480156103a357600080fd5b506101fd600160a060020a0360043516610df9565b3480156103c457600080fd5b506101fd6004351515610e0e565b3480156103de57600080fd5b5061024a610e8b565b3480156103f357600080fd5b5061024a600160a060020a0360043581169060243516610e91565b34801561041a57600080fd5b506040805160206004803580820135838102808601850190965280855261015095369593946024949385019291829185019084908082843750949750505050913515159250610ebc915050565b34801561047357600080fd5b5061024a610f32565b34801561048857600080fd5b50610150600160a060020a0360043516610f38565b3480156104a957600080fd5b506040805160206004803580820135838102808601850190965280855261015095369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975050933594506110269350505050565b601154600090819060ff16151561070457600e54600f54111561055157600e54600f555b5050600f54600e5433919081118015906105725750601154610100900460ff165b151561057d57600080fd5b600160a060020a0382166000908152600a602052604090205460ff16151561070457600d546105b2908263ffffffff61111816565b600d55600e546105c8908263ffffffff61112e16565b600e55600160a060020a0382166000908152600360205260409020546105f4908263ffffffff61111816565b600160a060020a03831660008181526003602090815260408083209490945560058152838220805460019081018083556007845286852090855283528584204290558484526008835285842082548552835285842062ed4e0090558484526006835285842091548452908252848320869055928252600a905291909120805460ff19169091179055600c54600d5410610695576011805460ff191660011790555b604080518281529051600160a060020a038416917f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a77919081900360200190a2604080518281529051600160a060020a038416916000916000805160206113268339815191529181900360200190a35b5050565b60408051808201909152601f81527f426c7565204f6365616e20436f6d7065746974696f6e20436f6e747261637400602082015281565b600a6020526000908152604090205460ff1681565b600081158015906107875750336000908152600460209081526040808320600160a060020a038716845290915290205415155b15610794575060006107f6565b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600c5481565b60006060606436101561081157fe5b600160a060020a038416151561082657600080fd5b600160a060020a03851660009081526003602052604090205483111561084b57600080fd5b61085433610a1a565b600160a060020a038616600090815260046020908152604080832033845290915290205403831180159061088f5750601154610100900460ff165b151561089a57600080fd5b600160a060020a0385166000908152600360205260409020546108c3908463ffffffff61112e16565b600160a060020a0386166000908152600360209081526040808320939093556004815282822033835290522054610900908463ffffffff61112e16565b600160a060020a038087166000908152600460209081526040808320338452825280832094909455918716815260039091522054610944908463ffffffff61111816565b600160a060020a03808616600081815260036020908152604091829020949094558051878152905191939289169260008051602061132683398151915292918290030190a3506001949350505050565b60115460ff1681565b601281565b60105481565b6001546000908190600160a060020a03163314806109d05750600254600160a060020a031633145b15156109db57600080fd5b50506040513031903390819083156108fc029084906000818181858888f19350505050158015610a0f573d6000803e3d6000fd5b505050565b600f5481565b60008060015b600160a060020a03841660009081526005602052604090205460010160ff82161015610b9557600160a060020a038416600081815260086020908152604080832060ff86168085529083528184205494845260078352818420908452909152902054016201518001421015610ac057600160a060020a038416600090815260066020908152604080832060ff851684529091529020549190910190610b8d565b6010546064811515610ace57fe5b600160a060020a038616600081815260086020908152604080832060ff88168085529083528184205494845260078352818420908452909152902054929091046201518002910101421015610b8d57601054600160a060020a038516600081815260066020908152604080832060ff8716808552908352818420548585526008845282852082865284528285205495855260078452828520918552925290912054606493926201518091420303040202811515610b8757fe5b04820191505b600101610a20565b5092915050565b60115460009060ff16158015610bcb5750600160a060020a0382166000908152600a602052604090205460ff16155b15610bf35750600f54600160a060020a03821660009081526003602052604090205401610c0e565b50600160a060020a0381166000908152600360205260409020545b919050565b4290565b60408051808201909152600481527f424f434300000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a0316331480610c745750600254600160a060020a031633145b1515610c7f57600080fd5b60648211158015610c91575060018210155b8015610ca45750601154610100900460ff165b1515610caf57600080fd5b50601055600190565b600060406044361015610cc757fe5b600160a060020a0384161515610cdc57600080fd5b610ce533610a1a565b33600090815260036020526040902054038311801590610d0c5750601154610100900460ff165b1515610d1757600080fd5b3360009081526009602052604090205460ff1615610d3457600080fd5b600160a060020a03841660009081526009602052604090205460ff1615610d5a57600080fd5b33600090815260036020526040902054610d7a908463ffffffff61112e16565b3360009081526003602052604080822092909255600160a060020a03861681522054610dac908463ffffffff61111816565b600160a060020a0385166000818152600360209081526040918290209390935580518681529051919233926000805160206113268339815191529281900390910190a35060019392505050565b60096020526000908152604090205460ff1681565b600154600090600160a060020a0316331480610e345750600254600160a060020a031633145b1515610e3f57600080fd5b6011805483151560ff19909116811790915560408051918252517faa2c44978c5c301c2d895c8198b7de3366c614048fc96f8726957dbd1d182f9d9181900360200190a1506001919050565b600e5481565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600090600160a060020a0316331480610ee25750600254600160a060020a031633145b1515610eed57600080fd5b825160ff1015610efc57600080fd5b5060005b8251811015610a0f57610f2a8382815181101515610f1a57fe5b9060200190602002015183611140565b600101610f00565b600d5481565b600154600160a060020a0316331480610f5b5750600254600160a060020a031633145b1515610f6657600080fd5b600160a060020a03811615801590610f8c5750600154600160a060020a03828116911614155b8015610fa65750600254600160a060020a03828116911614155b1561102357600154600160a060020a0316331415610fe7576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b600254600160a060020a0316331415611023576002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633148061104c5750600254600160a060020a031633145b151561105757600080fd5b835160ff101561106657600080fd5b8251845114801561107e5750601154610100900460ff165b151561108957600080fd5b5060005b83518160ff16101561111257600e54600b54848360ff168151811015156110b057fe5b602090810290910101510211156110c657600080fd5b611109848260ff168151811015156110da57fe5b90602001906020020151600b54858460ff168151811015156110f857fe5b9060200190602002015102846111a4565b5060010161108d565b50505050565b60008282018381101561112757fe5b9392505050565b60008282111561113a57fe5b50900390565b600160a060020a038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6000600e548311156111b657600e5492505b600d546111c9908463ffffffff61111816565b600d55600e546111df908463ffffffff61112e16565b600e55600160a060020a03841660009081526003602052604090205461120b908463ffffffff61111816565b600160a060020a03851660009081526003602052604081209190915582111561129457600160a060020a038416600081815260056020908152604080832080546001018082556007845282852090855283528184204290558484526008835281842081548552835281842062015180880290559383526006825280832093548352929052208390555b600c54600d54106112ad576011805460ff191660011790555b604080518481529051600160a060020a038616917f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a77919081900360200190a2604080518481529051600160a060020a038616916000916000805160206113268339815191529181900360200190a350600193925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582064561f5d685b30365ebd4b47f3c471a390a65314b099f2b6353cdb521ba2af6a00290000000000000000000000003239b023726cb021f1e07a791216579065402188ae9d4e2d6caac425decfb3cdbbba0b083b40a07a42cb186af82867a88dbd4512

Deployed Bytecode

0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610152578063071187a2146101dc578063095ea7b31461021157806318160ddd1461023557806323b872dd1461025c578063259653b814610286578063313ce5671461029b57806335b873cd146102b05780633ccfd60b146102c55780633fa4f245146102da5780635a46d3b5146102ef57806370a08231146103105780637995b15b1461033157806395d89b4114610346578063a04e1da41461035b578063a9059cbb14610373578063aa6ca80814610148578063b414d4b614610397578063be4a7160146103b8578063d8a54360146103d2578063dd62ed3e146103e7578063e2dc77631461040e578063efca2eed14610467578063f2fde38b1461047c578063f72df6511461049d575b61015061052d565b005b34801561015e57600080fd5b50610167610708565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a1578181015183820152602001610189565b50505050905090810190601f1680156101ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e857600080fd5b506101fd600160a060020a036004351661073f565b604080519115158252519081900360200190f35b34801561021d57600080fd5b506101fd600160a060020a0360043516602435610754565b34801561024157600080fd5b5061024a6107fc565b60408051918252519081900360200190f35b34801561026857600080fd5b506101fd600160a060020a0360043581169060243516604435610802565b34801561029257600080fd5b506101fd610994565b3480156102a757600080fd5b5061024a61099d565b3480156102bc57600080fd5b5061024a6109a2565b3480156102d157600080fd5b506101506109a8565b3480156102e657600080fd5b5061024a610a14565b3480156102fb57600080fd5b5061024a600160a060020a0360043516610a1a565b34801561031c57600080fd5b5061024a600160a060020a0360043516610b9c565b34801561033d57600080fd5b5061024a610c13565b34801561035257600080fd5b50610167610c17565b34801561036757600080fd5b506101fd600435610c4e565b34801561037f57600080fd5b506101fd600160a060020a0360043516602435610cb8565b3480156103a357600080fd5b506101fd600160a060020a0360043516610df9565b3480156103c457600080fd5b506101fd6004351515610e0e565b3480156103de57600080fd5b5061024a610e8b565b3480156103f357600080fd5b5061024a600160a060020a0360043581169060243516610e91565b34801561041a57600080fd5b506040805160206004803580820135838102808601850190965280855261015095369593946024949385019291829185019084908082843750949750505050913515159250610ebc915050565b34801561047357600080fd5b5061024a610f32565b34801561048857600080fd5b50610150600160a060020a0360043516610f38565b3480156104a957600080fd5b506040805160206004803580820135838102808601850190965280855261015095369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975050933594506110269350505050565b601154600090819060ff16151561070457600e54600f54111561055157600e54600f555b5050600f54600e5433919081118015906105725750601154610100900460ff165b151561057d57600080fd5b600160a060020a0382166000908152600a602052604090205460ff16151561070457600d546105b2908263ffffffff61111816565b600d55600e546105c8908263ffffffff61112e16565b600e55600160a060020a0382166000908152600360205260409020546105f4908263ffffffff61111816565b600160a060020a03831660008181526003602090815260408083209490945560058152838220805460019081018083556007845286852090855283528584204290558484526008835285842082548552835285842062ed4e0090558484526006835285842091548452908252848320869055928252600a905291909120805460ff19169091179055600c54600d5410610695576011805460ff191660011790555b604080518281529051600160a060020a038416917f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a77919081900360200190a2604080518281529051600160a060020a038416916000916000805160206113268339815191529181900360200190a35b5050565b60408051808201909152601f81527f426c7565204f6365616e20436f6d7065746974696f6e20436f6e747261637400602082015281565b600a6020526000908152604090205460ff1681565b600081158015906107875750336000908152600460209081526040808320600160a060020a038716845290915290205415155b15610794575060006107f6565b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600c5481565b60006060606436101561081157fe5b600160a060020a038416151561082657600080fd5b600160a060020a03851660009081526003602052604090205483111561084b57600080fd5b61085433610a1a565b600160a060020a038616600090815260046020908152604080832033845290915290205403831180159061088f5750601154610100900460ff165b151561089a57600080fd5b600160a060020a0385166000908152600360205260409020546108c3908463ffffffff61112e16565b600160a060020a0386166000908152600360209081526040808320939093556004815282822033835290522054610900908463ffffffff61112e16565b600160a060020a038087166000908152600460209081526040808320338452825280832094909455918716815260039091522054610944908463ffffffff61111816565b600160a060020a03808616600081815260036020908152604091829020949094558051878152905191939289169260008051602061132683398151915292918290030190a3506001949350505050565b60115460ff1681565b601281565b60105481565b6001546000908190600160a060020a03163314806109d05750600254600160a060020a031633145b15156109db57600080fd5b50506040513031903390819083156108fc029084906000818181858888f19350505050158015610a0f573d6000803e3d6000fd5b505050565b600f5481565b60008060015b600160a060020a03841660009081526005602052604090205460010160ff82161015610b9557600160a060020a038416600081815260086020908152604080832060ff86168085529083528184205494845260078352818420908452909152902054016201518001421015610ac057600160a060020a038416600090815260066020908152604080832060ff851684529091529020549190910190610b8d565b6010546064811515610ace57fe5b600160a060020a038616600081815260086020908152604080832060ff88168085529083528184205494845260078352818420908452909152902054929091046201518002910101421015610b8d57601054600160a060020a038516600081815260066020908152604080832060ff8716808552908352818420548585526008845282852082865284528285205495855260078452828520918552925290912054606493926201518091420303040202811515610b8757fe5b04820191505b600101610a20565b5092915050565b60115460009060ff16158015610bcb5750600160a060020a0382166000908152600a602052604090205460ff16155b15610bf35750600f54600160a060020a03821660009081526003602052604090205401610c0e565b50600160a060020a0381166000908152600360205260409020545b919050565b4290565b60408051808201909152600481527f424f434300000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a0316331480610c745750600254600160a060020a031633145b1515610c7f57600080fd5b60648211158015610c91575060018210155b8015610ca45750601154610100900460ff165b1515610caf57600080fd5b50601055600190565b600060406044361015610cc757fe5b600160a060020a0384161515610cdc57600080fd5b610ce533610a1a565b33600090815260036020526040902054038311801590610d0c5750601154610100900460ff165b1515610d1757600080fd5b3360009081526009602052604090205460ff1615610d3457600080fd5b600160a060020a03841660009081526009602052604090205460ff1615610d5a57600080fd5b33600090815260036020526040902054610d7a908463ffffffff61112e16565b3360009081526003602052604080822092909255600160a060020a03861681522054610dac908463ffffffff61111816565b600160a060020a0385166000818152600360209081526040918290209390935580518681529051919233926000805160206113268339815191529281900390910190a35060019392505050565b60096020526000908152604090205460ff1681565b600154600090600160a060020a0316331480610e345750600254600160a060020a031633145b1515610e3f57600080fd5b6011805483151560ff19909116811790915560408051918252517faa2c44978c5c301c2d895c8198b7de3366c614048fc96f8726957dbd1d182f9d9181900360200190a1506001919050565b600e5481565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600090600160a060020a0316331480610ee25750600254600160a060020a031633145b1515610eed57600080fd5b825160ff1015610efc57600080fd5b5060005b8251811015610a0f57610f2a8382815181101515610f1a57fe5b9060200190602002015183611140565b600101610f00565b600d5481565b600154600160a060020a0316331480610f5b5750600254600160a060020a031633145b1515610f6657600080fd5b600160a060020a03811615801590610f8c5750600154600160a060020a03828116911614155b8015610fa65750600254600160a060020a03828116911614155b1561102357600154600160a060020a0316331415610fe7576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b600254600160a060020a0316331415611023576002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633148061104c5750600254600160a060020a031633145b151561105757600080fd5b835160ff101561106657600080fd5b8251845114801561107e5750601154610100900460ff165b151561108957600080fd5b5060005b83518160ff16101561111257600e54600b54848360ff168151811015156110b057fe5b602090810290910101510211156110c657600080fd5b611109848260ff168151811015156110da57fe5b90602001906020020151600b54858460ff168151811015156110f857fe5b9060200190602002015102846111a4565b5060010161108d565b50505050565b60008282018381101561112757fe5b9392505050565b60008282111561113a57fe5b50900390565b600160a060020a038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6000600e548311156111b657600e5492505b600d546111c9908463ffffffff61111816565b600d55600e546111df908463ffffffff61112e16565b600e55600160a060020a03841660009081526003602052604090205461120b908463ffffffff61111816565b600160a060020a03851660009081526003602052604081209190915582111561129457600160a060020a038416600081815260056020908152604080832080546001018082556007845282852090855283528184204290558484526008835281842081548552835281842062015180880290559383526006825280832093548352929052208390555b600c54600d54106112ad576011805460ff191660011790555b604080518481529051600160a060020a038616917f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a77919081900360200190a2604080518481529051600160a060020a038616916000916000805160206113268339815191529181900360200190a350600193925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582064561f5d685b30365ebd4b47f3c471a390a65314b099f2b6353cdb521ba2af6a0029

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

0000000000000000000000003239b023726cb021f1e07a791216579065402188ae9d4e2d6caac425decfb3cdbbba0b083b40a07a42cb186af82867a88dbd4512

-----Decoded View---------------
Arg [0] : _owner (address): 0x3239b023726cb021f1E07a791216579065402188
Arg [1] : _key (bytes32): 0xae9d4e2d6caac425decfb3cdbbba0b083b40a07a42cb186af82867a88dbd4512

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003239b023726cb021f1e07a791216579065402188
Arg [1] : ae9d4e2d6caac425decfb3cdbbba0b083b40a07a42cb186af82867a88dbd4512


Deployed Bytecode Sourcemap

1230:7695:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000:11;:9;:11::i;:::-;1230:7695;1818:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1818:63: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;1818:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1771:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1771:40:0;-1:-1:-1;;;;;1771:40:0;;;;;;;;;;;;;;;;;;;;;;;8314:291;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8314:291:0;-1:-1:-1;;;;;8314:291:0;;;;;;;2012:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2012:47:0;;;;;;;;;;;;;;;;;;;;7760:548;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7760:548:0;-1:-1:-1;;;;;7760:548:0;;;;;;;;;;;;2251:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2251:37:0;;;;1933:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1933:34:0;;;;2221:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2221:23:0;;;;8755:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8755:167:0;;;;2180:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2180:34:0;;;;6586:621;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6586:621:0;-1:-1:-1;;;;;6586:621:0;;;;;6369:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6369:211:0;-1:-1:-1;;;;;6369:211:0;;;;;3033:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3033:70:0;;;;1888:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1888:38:0;;;;3634:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3634:158:0;;;;;7213:541;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7213:541:0;-1:-1:-1;;;;;7213:541:0;;;;;;;1718:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1718:46:0;-1:-1:-1;;;;;1718:46:0;;;;;3459:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3459:170:0;;;;;;;2108:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2108:65:0;;;;8611:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8611:138:0;-1:-1:-1;;;;;8611:138:0;;;;;;;;;;5977:247;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5977:247:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5977:247:0;;-1:-1:-1;;;;5977:247:0;;;;;-1:-1:-1;5977:247:0;;-1:-1:-1;;5977:247:0;2066:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2066:35:0;;;;3109:344;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3109:344:0;-1:-1:-1;;;;;3109:344:0;;;;;4547:403;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4547:403:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4547:403:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4547:403:0;;;;-1:-1:-1;4547:403:0;-1:-1:-1;4547:403:0;;-1:-1:-1;4547:403:0;;;;;;;;;-1:-1:-1;4547:403:0;;-1:-1:-1;;4547:403:0;;;-1:-1:-1;4547:403:0;;-1:-1:-1;;;;4547:403:0;5026:945;5077:18;;5194:16;;;;5077:18;;5076:19;5073:891;;;5119:14;;5111:5;;:22;5107:77;;;5158:14;;5150:5;:22;5107:77;-1:-1:-1;;5251:5:0;;5284:14;;5213:10;;5251:5;5275:23;;;;;:28;;-1:-1:-1;5300:3:0;;;;;;;5275:28;5267:37;;;;;;;;-1:-1:-1;;;;;5327:17:0;;;;;;:7;:17;;;;;;;;5326:18;5323:630;;;5375:16;;:28;;5396:6;5375:28;:20;:28;:::i;:::-;5356:16;:47;5431:14;;:26;;5450:6;5431:26;:18;:26;:::i;:::-;5414:14;:43;-1:-1:-1;;;;;5489:18:0;;;;;;:8;:18;;;;;;:30;;5512:6;5489:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;5468:18:0;;;;;;:8;:18;;;;;;;;:51;;;;5530:5;:15;;;;;:20;;5549:1;5530:20;;;;;;5561:8;:18;;;;;:35;;;;;;;;5599:3;5561:41;;5613:17;;;:7;:17;;;;;5631:15;;5613:34;;;;;;;5650:12;5613:49;;5673:17;;;:7;:17;;;;;5691:15;;5673:34;;;;;;;;:43;;;5727:17;;;:7;:17;;;;;;:24;;-1:-1:-1;;5727:24:0;;;;;;5786:11;;5766:16;;:31;5762:89;;5814:18;:25;;-1:-1:-1;;5814:25:0;5835:4;5814:25;;;5762:89;5869:23;;;;;;;;-1:-1:-1;;;;;5869:23:0;;;;;;;;;;;;;5903:38;;;;;;;;-1:-1:-1;;;;;5903:38:0;;;5920:1;;-1:-1:-1;;;;;;;;;;;5903:38:0;;;;;;;;5323:630;5026:945;;:::o;1818:63::-;;;;;;;;;;;;;;;;;;;:::o;1771:40::-;;;;;;;;;;;;;;;:::o;8314:291::-;8381:12;8410:11;;;;;:49;;-1:-1:-1;8433:10:0;8425:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8425:29:0;;;;;;;;;;:34;;8410:49;8406:72;;;-1:-1:-1;8470:5:0;8463:12;;8406:72;8496:10;8488:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8488:29:0;;;;;;;;;;;;:38;;;8537;;;;;;;8488:29;;8496:10;8537:38;;;;;;;;;;;-1:-1:-1;8593:4:0;8314:291;;;;;:::o;2012:47::-;;;;:::o;7760:548::-;7867:12;7843:6;2806:8;2787;:27;;2780:35;;;;-1:-1:-1;;;;;7900:17:0;;;;7892:26;;;;;;-1:-1:-1;;;;;7948:15:0;;;;;;:8;:15;;;;;;7937:26;;;7929:35;;;;;;8024:18;8031:10;8024:6;:18::i;:::-;-1:-1:-1;;;;;7995:14:0;;;;;;:7;:14;;;;;;;;8010:10;7995:26;;;;;;;;:47;7983:60;;;;;:65;;-1:-1:-1;8045:3:0;;;;;;;7983:65;7975:74;;;;;;;;-1:-1:-1;;;;;8078:15:0;;;;;;:8;:15;;;;;;:28;;8098:7;8078:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;8060:15:0;;;;;;:8;:15;;;;;;;;:46;;;;8146:7;:14;;;;;8161:10;8146:26;;;;;;:39;;8177:7;8146:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;8117:14:0;;;;;;;:7;:14;;;;;;;;8132:10;8117:26;;;;;;;:68;;;;8212:13;;;;;:8;:13;;;;;:26;;8230:7;8212:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8196:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;8249:29;;;;;;;8196:13;;8249:29;;;;-1:-1:-1;;;;;;;;;;;8249:29:0;;;;;;;;-1:-1:-1;8296:4:0;;7760:548;-1:-1:-1;;;;7760:548:0:o;2251:37::-;;;;;;:::o;1933:34::-;1965:2;1933:34;:::o;2221:23::-;;;;:::o;8755:167::-;2676:6;;8803:20;;;;-1:-1:-1;;;;;2676:6:0;2662:10;:20;;:44;;-1:-1:-1;2700:6:0;;-1:-1:-1;;;;;2700:6:0;2686:10;:20;2662:44;2654:53;;;;;;;;-1:-1:-1;;8886:28:0;;8826:4;:12;;8865:10;;;;8886:28;;;;;8826:12;;8886:28;;;;8826:12;8865:10;8886:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8886:28:0;8755:167;;:::o;2180:34::-;;;;:::o;6586:621::-;6643:7;;6697:1;6682:496;-1:-1:-1;;;;;6704:13:0;;;;;;:5;:13;;;;;;6720:1;6704:17;6700:21;;;;6682:496;;;-1:-1:-1;;;;;6767:15:0;;;;;;:7;:15;;;;;;;;:18;;;;;;;;;;;;;6745:16;;;:8;:16;;;;;:19;;;;;;;;;:40;6788:9;6745:52;6739:3;:58;6736:435;;;-1:-1:-1;;;;;6824:15:0;;;;;;:7;:15;;;;;;;;:18;;;;;;;;;;;6813:29;;;;;6736:435;;;6938:4;;6934:3;:8;;;;;;;-1:-1:-1;;;;;6913:15:0;;;;;;:7;:15;;;;;;;;:18;;;;;;;;;;;;;6891:16;;;:8;:16;;;;;:19;;;;;;;;;6934:8;;;;6944:6;6934:16;6891:40;;:59;6885:3;:65;6882:278;;;7063:4;;-1:-1:-1;;;;;7044:15:0;;;;;;:7;:15;;;;;;;;:18;;;;;;;;;;;;;7010:15;;;:7;:15;;;;;:18;;;;;;;;;6988:16;;;:8;:16;;;;;:19;;;;;;;;;7068:3;;7063:4;7032:10;;6982:3;:25;:46;6981:62;:81;:86;:90;;;;;;;;6969:103;;;;6882:278;6723:3;;6682:496;;;-1:-1:-1;7192:7:0;6586:621;-1:-1:-1;;6586:621:0:o;6369:211::-;6451:18;;6429:7;;6451:18;;6450:19;:39;;;;-1:-1:-1;;;;;;6474:15:0;;;;;;:7;:15;;;;;;;;6473:16;6450:39;6447:95;;;-1:-1:-1;6526:5:0;;-1:-1:-1;;;;;6507:16:0;;;;;;:8;:16;;;;;;:24;6500:31;;6447:95;-1:-1:-1;;;;;;6556:16:0;;;;;;:8;:16;;;;;;6369:211;;;;:::o;3033:70::-;3092:3;3033:70;:::o;1888:38::-;;;;;;;;;;;;;;;;;;;:::o;3634:158::-;2676:6;;3690:4;;-1:-1:-1;;;;;2676:6:0;2662:10;:20;;:44;;-1:-1:-1;2700:6:0;;-1:-1:-1;;;;;2700:6:0;2686:10;:20;2662:44;2654:53;;;;;;;;3717:3;3710;:10;;:22;;;;;3731:1;3724:3;:8;;3710:22;:29;;;;-1:-1:-1;3736:3:0;;;;;;;3710:29;3702:38;;;;;;;;-1:-1:-1;3751:4:0;:11;3780:4;;3634:158::o;7213:541::-;7301:12;7277:6;2806:8;2787;:27;;2780:35;;;;-1:-1:-1;;;;;7334:17:0;;;;7326:26;;;;;;7406:18;7413:10;7406:6;:18::i;:::-;7392:10;7383:20;;;;:8;:20;;;;;;:41;7371:54;;;;;:59;;-1:-1:-1;7427:3:0;;;;;;;7371:59;7363:68;;;;;;;;7465:10;7451:25;;;;:13;:25;;;;;;;;7450:26;7442:35;;;;;;-1:-1:-1;;;;;7518:18:0;;;;;;:13;:18;;;;;;;;7517:19;7509:28;;;;;;7602:10;7593:20;;;;:8;:20;;;;;;:33;;7618:7;7593:33;:24;:33;:::i;:::-;7579:10;7570:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;7653:13:0;;;;;;:26;;7671:7;7653:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;7637:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;7690:34;;;;;;;7637:13;;7699:10;;-1:-1:-1;;;;;;;;;;;7690:34:0;;;;;;;;;-1:-1:-1;7742:4:0;;7213:541;-1:-1:-1;;;7213:541:0:o;1718:46::-;;;;;;;;;;;;;;;:::o;3459:170::-;2676:6;;3525:4;;-1:-1:-1;;;;;2676:6:0;2662:10;:20;;:44;;-1:-1:-1;2700:6:0;;-1:-1:-1;;;;;2700:6:0;2686:10;:20;2662:44;2654:53;;;;;;;;3542:18;:27;;;;;-1:-1:-1;;3542:27:0;;;;;;;;3580:19;;;;;;;;;;;;;;;;-1:-1:-1;3617:4:0;3459:170;;;:::o;2108:65::-;;;;:::o;8611:138::-;-1:-1:-1;;;;;8716:15:0;;;8689:7;8716:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;8611:138::o;5977:247::-;2676:6;;6116;;-1:-1:-1;;;;;2676:6:0;2662:10;:20;;:44;;-1:-1:-1;2700:6:0;;-1:-1:-1;;;;;2700:6:0;2686:10;:20;2662:44;2654:53;;;;;;;;6069:16;;6089:3;-1:-1:-1;6069:23:0;6061:32;;;;;;-1:-1:-1;6125:1:0;6111:106;6132:9;:16;6128:1;:20;6111:106;;;6170:35;6184:9;6194:1;6184:12;;;;;;;;;;;;;;;;;;6198:6;6170:13;:35::i;:::-;6150:3;;6111:106;;2066:35;;;;:::o;3109:344::-;2676:6;;-1:-1:-1;;;;;2676:6:0;2662:10;:20;;:44;;-1:-1:-1;2700:6:0;;-1:-1:-1;;;;;2700:6:0;2686:10;:20;2662:44;2654:53;;;;;;;;-1:-1:-1;;;;;3186:22:0;;;;;;:44;;-1:-1:-1;3224:6:0;;-1:-1:-1;;;;;3212:18:0;;;3224:6;;3212:18;;3186:44;:66;;;;-1:-1:-1;3246:6:0;;-1:-1:-1;;;;;3234:18:0;;;3246:6;;3234:18;;3186:66;3182:264;;;3286:6;;-1:-1:-1;;;;;3286:6:0;3272:10;:20;3269:76;;;3309:6;:17;;-1:-1:-1;;3309:17:0;-1:-1:-1;;;;;3309:17:0;;;;;3269:76;3376:6;;-1:-1:-1;;;;;3376:6:0;3362:10;:20;3359:76;;;3399:6;:17;;-1:-1:-1;;3399:17:0;-1:-1:-1;;;;;3399:17:0;;;;;3359:76;3109:344;:::o;4547:403::-;2676:6;;4767:7;;-1:-1:-1;;;;;2676:6:0;2662:10;:20;;:44;;-1:-1:-1;2700:6:0;;-1:-1:-1;;;;;2700:6:0;2686:10;:20;2662:44;2654:53;;;;;;;;4661:16;;4681:3;-1:-1:-1;4661:23:0;4653:32;;;;;;4724:7;:14;4704:9;:16;:34;:39;;;;-1:-1:-1;4740:3:0;;;;;;;4704:39;4696:48;;;;;;;;-1:-1:-1;4777:1:0;4762:181;4784:9;:16;4780:1;:20;;;4762:181;;;4852:14;;4843:5;;4830:7;4838:1;4830:10;;;;;;;;;;;;;;;;;;;;;:18;:36;;4822:45;;;;;;4882:49;4888:9;4898:1;4888:12;;;;;;;;;;;;;;;;;;;;4915:5;;4902:7;4910:1;4902:10;;;;;;;;;;;;;;;;;;;;:18;4922:8;4882:5;:49::i;:::-;-1:-1:-1;4802:3:0;;4762:181;;;4547:403;;;;:::o;432:133::-;490:7;518:5;;;537:6;;;;530:14;;;;558:1;432:133;-1:-1:-1;;;432:133:0:o;315:113::-;373:7;396:6;;;;389:14;;;;-1:-1:-1;417:5:0;;;315:113::o;6231:132::-;-1:-1:-1;;;;;6297:21:0;;;;;;:13;:21;;;;;;;;;:25;;-1:-1:-1;;6297:25:0;;;;;;;;;;6333:22;;;;;;;;;;;;;;;;;;;;;6231:132;;:::o;3798:743::-;3878:4;3910:14;;3900:7;:24;3896:81;;;3951:14;;3941:24;;3896:81;4006:16;;:29;;4027:7;4006:29;:20;:29;:::i;:::-;3987:16;:48;4063:14;;:27;;4082:7;4063:27;:18;:27;:::i;:::-;4046:14;:44;-1:-1:-1;;;;;4117:13:0;;;;;;:8;:13;;;;;;:26;;4135:7;4117:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4101:13:0;;;;;;:8;:13;;;;;:42;;;;4158:10;;4154:176;;;-1:-1:-1;;;;;4171:10:0;;;;;;:5;:10;;;;;;;;:15;;4185:1;4171:15;;;;4197:8;:13;;;;;:25;;;;;;;;4225:3;4197:31;;4239:12;;;:7;:12;;;;;4252:10;;4239:24;;;;;;;4277:6;4266:17;;4239:44;;4294:12;;;:7;:12;;;;;4307:10;;4294:24;;;;;;:34;;;4154:176;4364:11;;4344:16;;:31;4340:89;;4392:18;:25;;-1:-1:-1;;4392:25:0;4413:4;4392:25;;;4340:89;4447:19;;;;;;;;-1:-1:-1;;;;;4447:19:0;;;;;;;;;;;;;4477:34;;;;;;;;-1:-1:-1;;;;;4477:34:0;;;4494:1;;-1:-1:-1;;;;;;;;;;;4477:34:0;;;;;;;;-1:-1:-1;4529:4:0;3798:743;;;;;:::o

Swarm Source

bzzr://64561f5d685b30365ebd4b47f3c471a390a65314b099f2b6353cdb521ba2af6a

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

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