More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 10 from a total of 10 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Status | 11099744 | 1589 days ago | IN | 0 ETH | 0.00479472 | ||||
Set Status | 11069803 | 1594 days ago | IN | 0 ETH | 0.0047916 | ||||
Set Status | 11069002 | 1594 days ago | IN | 0 ETH | 0.00649237 | ||||
Set Status | 11054899 | 1596 days ago | IN | 0 ETH | 0.01063944 | ||||
Del Status | 11054892 | 1596 days ago | IN | 0 ETH | 0.00197611 | ||||
Set Status | 11054862 | 1596 days ago | IN | 0 ETH | 0.00628022 | ||||
Del Status | 11054736 | 1596 days ago | IN | 0 ETH | 0.00189796 | ||||
Set Status | 11054712 | 1596 days ago | IN | 0 ETH | 0.00626798 | ||||
Del Status | 6446389 | 2338 days ago | IN | 0 ETH | 0.00023268 | ||||
Set Status | 6446308 | 2338 days ago | IN | 0 ETH | 0.00081352 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-31 */ /* Verified Crypto Company token Copyright (C) Fusion Solutions KFT <[email protected]> - All Rights Reserved This file is part of Verified Crypto Company token project. Unauthorized copying of this file or source, via any medium is strictly prohibited Proprietary and confidential This file can not be copied and/or distributed without the express permission of the Author. Written by Andor Rajci, August 2018 */ pragma solidity 0.4.24; library SafeMath { /* Internals */ function add(uint256 a, uint256 b) internal pure returns(uint256 c) { c = a + b; assert( c >= a ); return c; } function sub(uint256 a, uint256 b) internal pure returns(uint256 c) { c = a - b; assert( c <= a ); return c; } function mul(uint256 a, uint256 b) internal pure returns(uint256 c) { c = a * b; assert( c == 0 || c / a == b ); return c; } function div(uint256 a, uint256 b) internal pure returns(uint256) { return a / b; } function pow(uint256 a, uint256 b) internal pure returns(uint256 c) { c = a ** b; assert( c % a == 0 ); return a ** b; } } contract Token { /* Declarations */ using SafeMath for uint256; /* Structures */ struct action_s { address origin; uint256 voteCounter; uint256 uid; mapping(address => uint256) voters; } /* Variables */ string public name = "Verified Crypto Company token"; string public symbol = "VRFD"; uint8 public decimals = 0; uint256 public totalSupply = 1e6; uint256 public actionVotedRate; uint256 public ownerCounter; uint256 public voteUID; address public admin; mapping(address => uint256) public balanceOf; mapping(address => string) public nameOf; mapping(address => bool) public owners; mapping(bytes32 => action_s) public actions; /* Constructor */ constructor(address _admin, uint256 _actionVotedRate, address[] _owners) public { uint256 i; require( _actionVotedRate <= 100 ); actionVotedRate = _actionVotedRate; for ( i=0 ; i<_owners.length ; i++ ) { owners[_owners[i]] = true; } ownerCounter = _owners.length; balanceOf[address(this)] = totalSupply; emit Mint(address(this), totalSupply); admin = _admin; } /* Fallback */ function () public { revert(); } /* Externals */ function setStatus(address _target, uint256 _status, string _name) external forAdmin { require( balanceOf[_target] == 0 ); balanceOf[address(this)] = balanceOf[address(this)].sub(_status); balanceOf[_target] = _status; nameOf[_target] = _name; emit Transfer(address(this), _target, _status); } function delStatus(address _target) external forAdmin { require( balanceOf[_target] > 0 ); balanceOf[address(this)] = balanceOf[address(this)].add(balanceOf[_target]); emit Transfer(_target, address(this), balanceOf[_target]); delete balanceOf[_target]; delete nameOf[_target]; } function changeAdmin(address _newAdmin) external forOwner { bytes32 _hash; _hash = keccak256('changeAdmin', _newAdmin); if ( actions[_hash].origin == 0x00 ) { emit newAdminAction(_hash, _newAdmin, msg.sender); } if ( doVote(_hash) ) { admin = _newAdmin; } } function newOwner(address _owner) external forOwner { bytes32 _hash; require( ! owners[_owner] ); _hash = keccak256('addNewOwner', _owner); if ( actions[_hash].origin == 0x00 ) { emit newAddNewOwnerAction(_hash, _owner, msg.sender); } if ( doVote(_hash) ) { ownerCounter = ownerCounter.add(1); owners[_owner] = true; } } function delOwner(address _owner) external forOwner { bytes32 _hash; require( owners[_owner] ); _hash = keccak256('delOwner', _owner); if ( actions[_hash].origin == 0x00 ) { emit newDelOwnerAction(_hash, _owner, msg.sender); } if ( doVote(_hash) ) { ownerCounter = ownerCounter.sub(1); owners[_owner] = false; } } /* Internals */ function doVote(bytes32 _hash) internal returns (bool _voted) { require( owners[msg.sender] ); if ( actions[_hash].origin == 0x00 ) { voteUID = voteUID.add(1); actions[_hash].origin = msg.sender; actions[_hash].voteCounter = 1; actions[_hash].uid = voteUID; } else if ( ( actions[_hash].voters[msg.sender] != actions[_hash].uid ) && actions[_hash].origin != msg.sender ) { actions[_hash].voters[msg.sender] = actions[_hash].uid; actions[_hash].voteCounter = actions[_hash].voteCounter.add(1); emit vote(_hash, msg.sender); } if ( actions[_hash].voteCounter.mul(100).div(ownerCounter) >= actionVotedRate ) { _voted = true; emit votedAction(_hash); delete actions[_hash]; } } /* Modifiers */ modifier forAdmin { require( msg.sender == admin ); _; } modifier forOwner { require( owners[msg.sender] ); _; } /* Events */ event Mint(address indexed _addr, uint256 indexed _value); event Transfer(address indexed _from, address indexed _to, uint _value); event newAddNewOwnerAction(bytes32 _hash, address _owner, address _origin); event newDelOwnerAction(bytes32 _hash, address _owner, address _origin); event newAdminAction(bytes32 _hash, address _newAdmin, address _origin); event vote(bytes32 _hash, address _voter); event votedAction(bytes32 _hash); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"owners","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"voteUID","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":true,"inputs":[],"name":"ownerCounter","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"delOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"actionVotedRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"newOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"},{"name":"_status","type":"uint256"},{"name":"_name","type":"string"}],"name":"setStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"delStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"actions","outputs":[{"name":"origin","type":"address"},{"name":"voteCounter","type":"uint256"},{"name":"uid","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nameOf","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"},{"name":"_actionVotedRate","type":"uint256"},{"name":"_owners","type":"address[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_addr","type":"address"},{"indexed":true,"name":"_value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_hash","type":"bytes32"},{"indexed":false,"name":"_owner","type":"address"},{"indexed":false,"name":"_origin","type":"address"}],"name":"newAddNewOwnerAction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_hash","type":"bytes32"},{"indexed":false,"name":"_owner","type":"address"},{"indexed":false,"name":"_origin","type":"address"}],"name":"newDelOwnerAction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_hash","type":"bytes32"},{"indexed":false,"name":"_newAdmin","type":"address"},{"indexed":false,"name":"_origin","type":"address"}],"name":"newAdminAction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_hash","type":"bytes32"},{"indexed":false,"name":"_voter","type":"address"}],"name":"vote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_hash","type":"bytes32"}],"name":"votedAction","type":"event"}]
Contract Creation Code
60c0604052601d60808190527f56657269666965642043727970746f20436f6d70616e7920746f6b656e00000060a0908152620000409160009190620001aa565b506040805180820190915260048082527f565246440000000000000000000000000000000000000000000000000000000060209092019182526200008791600191620001aa565b506002805460ff19169055620f4240600355348015620000a657600080fd5b50604051620010f5380380620010f5833981016040908152815160208301519183015190920160006064831115620000dd57600080fd5b50600482905560005b815181101562000140576001600a600084848151811015156200010557fe5b602090810291909101810151600160a060020a03168252810191909152604001600020805460ff1916911515919091179055600101620000e6565b815160055560035430600081815260086020526040808220849055517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859190a3505060078054600160a060020a031916600160a060020a039390931692909217909155506200024f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001ed57805160ff19168380011785556200021d565b828001600101855582156200021d579182015b828111156200021d57825182559160200191906001019062000200565b506200022b9291506200022f565b5090565b6200024c91905b808211156200022b576000815560010162000236565b90565b610e96806200025f6000396000f3006080604052600436106100f05763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461010257806306fdde03146101375780630a9ff623146101c157806318160ddd146101e857806330943fcf146101fd578063313ce5671461021257806370a082311461023d578063739841881461025e57806382b68f4f1461028157806385952454146102965780638f283970146102b757806395d89b41146102d8578063a8c204ba146102ed578063b705cd361461031e578063f3abde321461033f578063f5c573821461037f578063f851a440146103a0575b3480156100fc57600080fd5b50600080fd5b34801561010e57600080fd5b50610123600160a060020a03600435166103d1565b604080519115158252519081900360200190f35b34801561014357600080fd5b5061014c6103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018657818101518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cd57600080fd5b506101d6610474565b60408051918252519081900360200190f35b3480156101f457600080fd5b506101d661047a565b34801561020957600080fd5b506101d6610480565b34801561021e57600080fd5b50610227610486565b6040805160ff9092168252519081900360200190f35b34801561024957600080fd5b506101d6600160a060020a036004351661048f565b34801561026a57600080fd5b5061027f600160a060020a03600435166104a1565b005b34801561028d57600080fd5b506101d66105e4565b3480156102a257600080fd5b5061027f600160a060020a03600435166105ea565b3480156102c357600080fd5b5061027f600160a060020a0360043516610733565b3480156102e457600080fd5b5061014c610846565b3480156102f957600080fd5b5061027f60048035600160a060020a03169060248035916044359182019101356108a0565b34801561032a57600080fd5b5061027f600160a060020a0360043516610979565b34801561034b57600080fd5b50610357600435610a70565b60408051600160a060020a039094168452602084019290925282820152519081900360600190f35b34801561038b57600080fd5b5061014c600160a060020a0360043516610a9b565b3480156103ac57600080fd5b506103b5610b03565b60408051600160a060020a039092168252519081900360200190f35b600a6020526000908152604090205460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b505050505081565b60065481565b60035481565b60055481565b60025460ff1681565b60086020526000908152604090205481565b336000908152600a602052604081205460ff1615156104bf57600080fd5b600160a060020a0382166000908152600a602052604090205460ff1615156104e657600080fd5b50604080517f64656c4f776e657200000000000000000000000000000000000000000000000081526c01000000000000000000000000600160a060020a03808516919091026008830152825191829003601c019091206000818152600b602052929092205416151561059a5760408051828152600160a060020a0384166020820152338183015290517f421b8a1e7a7050f4f10e0c93c7c385ed6f5316275ea66719a1b10f2c87aa1e779181900360600190a15b6105a381610b12565b156105e0576005546105bc90600163ffffffff610d3816565b600555600160a060020a0382166000908152600a60205260409020805460ff191690555b5050565b60045481565b336000908152600a602052604081205460ff16151561060857600080fd5b600160a060020a0382166000908152600a602052604090205460ff161561062e57600080fd5b50604080517f6164644e65774f776e657200000000000000000000000000000000000000000081526c01000000000000000000000000600160a060020a0380851691909102600b80840191909152835192839003601f01909220600081815260209390935292909120541615156106e75760408051828152600160a060020a0384166020820152338183015290517f61d9be69eacc4ed667fbe802970a647cd9c68ff45b174f995d530a122288aad89181900360600190a15b6106f081610b12565b156105e05760055461070990600163ffffffff610d4b16565b600555600160a060020a0382166000908152600a60205260409020805460ff191660011790555050565b336000908152600a602052604081205460ff16151561075157600080fd5b50604080517f6368616e676541646d696e00000000000000000000000000000000000000000081526c01000000000000000000000000600160a060020a0380851691909102600b80840191909152835192839003601f019092206000818152602093909352929091205416151561080a5760408051828152600160a060020a0384166020820152338183015290517fa37ca24d2d890325ef62c7274772f70bcdffee301103f91a76f9c3f8e34c8d159181900360600190a15b61081381610b12565b156105e05760078054600160a060020a03841673ffffffffffffffffffffffffffffffffffffffff199091161790555050565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046c5780601f106104415761010080835404028352916020019161046c565b600754600160a060020a031633146108b757600080fd5b600160a060020a038416600090815260086020526040902054156108da57600080fd5b306000908152600860205260409020546108fa908463ffffffff610d3816565b30600090815260086020908152604080832093909355600160a060020a03871682528282208690556009905220610932908383610d8f565b50604080518481529051600160a060020a0386169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505050565b600754600160a060020a0316331461099057600080fd5b600160a060020a038116600090815260086020526040812054116109b357600080fd5b600160a060020a038116600090815260086020526040808220543083529120546109e29163ffffffff610d4b16565b30600081815260086020908152604080832094909455600160a060020a038516808352918490205484519081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600160a060020a038116600090815260086020908152604080832083905560099091528120610a6d91610e0d565b50565b600b60205260009081526040902080546001820154600290920154600160a060020a03909116919083565b60096020908152600091825260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452909183018282801561046c5780601f106104415761010080835404028352916020019161046c565b600754600160a060020a031681565b336000908152600a602052604081205460ff161515610b3057600080fd5b6000828152600b6020526040902054600160a060020a03161515610ba557600654610b6290600163ffffffff610d4b16565b60069081556000838152600b60205260409020805473ffffffffffffffffffffffffffffffffffffffff1916331781556001808201559054600290910155610c87565b6000828152600b60209081526040808320600281015433855260039091019092529091205414801590610bef57506000828152600b6020526040902054600160a060020a03163314155b15610c87576000828152600b602081815260408084206002810154338652600382018452918520919091559285905252600190810154610c349163ffffffff610d4b16565b6000838152600b6020908152604091829020600101929092558051848152339281019290925280517f8d8afd3ded82f188c74cadd59ae4db647cfedefedf1024f39180ee91f4fd04f69281900390910190a15b6004546005546000848152600b6020526040902060010154610cc19190610cb590606463ffffffff610d5816565b9063ffffffff610d7a16565b10610d3357506040805182815290516001917ff329ce99fa414305b2036a49e3fd5fcaab37d882c5671e76e535e1de2c59da93919081900360200190a16000828152600b60205260408120805473ffffffffffffffffffffffffffffffffffffffff1916815560018101829055600201555b919050565b80820382811115610d4557fe5b92915050565b81810182811015610d4557fe5b818102801580610d725750818382811515610d6f57fe5b04145b1515610d4557fe5b60008183811515610d8757fe5b049392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610dd05782800160ff19823516178555610dfd565b82800160010185558215610dfd579182015b82811115610dfd578235825591602001919060010190610de2565b50610e09929150610e4d565b5090565b50805460018160011615610100020316600290046000825580601f10610e335750610a6d565b601f016020900490600052602060002090810190610a6d91905b610e6791905b80821115610e095760008155600101610e53565b905600a165627a7a723058201512aa0a1bb204d04000c9f65f1baf7434470e8c253bea560007369c47e03a6c0029000000000000000000000000e03b330278355f65f2b63e06b6f13f05673c8eb7000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000004000000000000000000000000cb876c2d2639be3325f501cf66c639e37e9f8d4f000000000000000000000000e03b330278355f65f2b63e06b6f13f05673c8eb7000000000000000000000000d327bf1e669b0844ed92f0cc2e0759279c23bf29000000000000000000000000610e3b4e804b367c182c5fc4d65d09c089723389
Deployed Bytecode
0x6080604052600436106100f05763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461010257806306fdde03146101375780630a9ff623146101c157806318160ddd146101e857806330943fcf146101fd578063313ce5671461021257806370a082311461023d578063739841881461025e57806382b68f4f1461028157806385952454146102965780638f283970146102b757806395d89b41146102d8578063a8c204ba146102ed578063b705cd361461031e578063f3abde321461033f578063f5c573821461037f578063f851a440146103a0575b3480156100fc57600080fd5b50600080fd5b34801561010e57600080fd5b50610123600160a060020a03600435166103d1565b604080519115158252519081900360200190f35b34801561014357600080fd5b5061014c6103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018657818101518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cd57600080fd5b506101d6610474565b60408051918252519081900360200190f35b3480156101f457600080fd5b506101d661047a565b34801561020957600080fd5b506101d6610480565b34801561021e57600080fd5b50610227610486565b6040805160ff9092168252519081900360200190f35b34801561024957600080fd5b506101d6600160a060020a036004351661048f565b34801561026a57600080fd5b5061027f600160a060020a03600435166104a1565b005b34801561028d57600080fd5b506101d66105e4565b3480156102a257600080fd5b5061027f600160a060020a03600435166105ea565b3480156102c357600080fd5b5061027f600160a060020a0360043516610733565b3480156102e457600080fd5b5061014c610846565b3480156102f957600080fd5b5061027f60048035600160a060020a03169060248035916044359182019101356108a0565b34801561032a57600080fd5b5061027f600160a060020a0360043516610979565b34801561034b57600080fd5b50610357600435610a70565b60408051600160a060020a039094168452602084019290925282820152519081900360600190f35b34801561038b57600080fd5b5061014c600160a060020a0360043516610a9b565b3480156103ac57600080fd5b506103b5610b03565b60408051600160a060020a039092168252519081900360200190f35b600a6020526000908152604090205460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b505050505081565b60065481565b60035481565b60055481565b60025460ff1681565b60086020526000908152604090205481565b336000908152600a602052604081205460ff1615156104bf57600080fd5b600160a060020a0382166000908152600a602052604090205460ff1615156104e657600080fd5b50604080517f64656c4f776e657200000000000000000000000000000000000000000000000081526c01000000000000000000000000600160a060020a03808516919091026008830152825191829003601c019091206000818152600b602052929092205416151561059a5760408051828152600160a060020a0384166020820152338183015290517f421b8a1e7a7050f4f10e0c93c7c385ed6f5316275ea66719a1b10f2c87aa1e779181900360600190a15b6105a381610b12565b156105e0576005546105bc90600163ffffffff610d3816565b600555600160a060020a0382166000908152600a60205260409020805460ff191690555b5050565b60045481565b336000908152600a602052604081205460ff16151561060857600080fd5b600160a060020a0382166000908152600a602052604090205460ff161561062e57600080fd5b50604080517f6164644e65774f776e657200000000000000000000000000000000000000000081526c01000000000000000000000000600160a060020a0380851691909102600b80840191909152835192839003601f01909220600081815260209390935292909120541615156106e75760408051828152600160a060020a0384166020820152338183015290517f61d9be69eacc4ed667fbe802970a647cd9c68ff45b174f995d530a122288aad89181900360600190a15b6106f081610b12565b156105e05760055461070990600163ffffffff610d4b16565b600555600160a060020a0382166000908152600a60205260409020805460ff191660011790555050565b336000908152600a602052604081205460ff16151561075157600080fd5b50604080517f6368616e676541646d696e00000000000000000000000000000000000000000081526c01000000000000000000000000600160a060020a0380851691909102600b80840191909152835192839003601f019092206000818152602093909352929091205416151561080a5760408051828152600160a060020a0384166020820152338183015290517fa37ca24d2d890325ef62c7274772f70bcdffee301103f91a76f9c3f8e34c8d159181900360600190a15b61081381610b12565b156105e05760078054600160a060020a03841673ffffffffffffffffffffffffffffffffffffffff199091161790555050565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046c5780601f106104415761010080835404028352916020019161046c565b600754600160a060020a031633146108b757600080fd5b600160a060020a038416600090815260086020526040902054156108da57600080fd5b306000908152600860205260409020546108fa908463ffffffff610d3816565b30600090815260086020908152604080832093909355600160a060020a03871682528282208690556009905220610932908383610d8f565b50604080518481529051600160a060020a0386169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505050565b600754600160a060020a0316331461099057600080fd5b600160a060020a038116600090815260086020526040812054116109b357600080fd5b600160a060020a038116600090815260086020526040808220543083529120546109e29163ffffffff610d4b16565b30600081815260086020908152604080832094909455600160a060020a038516808352918490205484519081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600160a060020a038116600090815260086020908152604080832083905560099091528120610a6d91610e0d565b50565b600b60205260009081526040902080546001820154600290920154600160a060020a03909116919083565b60096020908152600091825260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452909183018282801561046c5780601f106104415761010080835404028352916020019161046c565b600754600160a060020a031681565b336000908152600a602052604081205460ff161515610b3057600080fd5b6000828152600b6020526040902054600160a060020a03161515610ba557600654610b6290600163ffffffff610d4b16565b60069081556000838152600b60205260409020805473ffffffffffffffffffffffffffffffffffffffff1916331781556001808201559054600290910155610c87565b6000828152600b60209081526040808320600281015433855260039091019092529091205414801590610bef57506000828152600b6020526040902054600160a060020a03163314155b15610c87576000828152600b602081815260408084206002810154338652600382018452918520919091559285905252600190810154610c349163ffffffff610d4b16565b6000838152600b6020908152604091829020600101929092558051848152339281019290925280517f8d8afd3ded82f188c74cadd59ae4db647cfedefedf1024f39180ee91f4fd04f69281900390910190a15b6004546005546000848152600b6020526040902060010154610cc19190610cb590606463ffffffff610d5816565b9063ffffffff610d7a16565b10610d3357506040805182815290516001917ff329ce99fa414305b2036a49e3fd5fcaab37d882c5671e76e535e1de2c59da93919081900360200190a16000828152600b60205260408120805473ffffffffffffffffffffffffffffffffffffffff1916815560018101829055600201555b919050565b80820382811115610d4557fe5b92915050565b81810182811015610d4557fe5b818102801580610d725750818382811515610d6f57fe5b04145b1515610d4557fe5b60008183811515610d8757fe5b049392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610dd05782800160ff19823516178555610dfd565b82800160010185558215610dfd579182015b82811115610dfd578235825591602001919060010190610de2565b50610e09929150610e4d565b5090565b50805460018160011615610100020316600290046000825580601f10610e335750610a6d565b601f016020900490600052602060002090810190610a6d91905b610e6791905b80821115610e095760008155600101610e53565b905600a165627a7a723058201512aa0a1bb204d04000c9f65f1baf7434470e8c253bea560007369c47e03a6c0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e03b330278355f65f2b63e06b6f13f05673c8eb7000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000004000000000000000000000000cb876c2d2639be3325f501cf66c639e37e9f8d4f000000000000000000000000e03b330278355f65f2b63e06b6f13f05673c8eb7000000000000000000000000d327bf1e669b0844ed92f0cc2e0759279c23bf29000000000000000000000000610e3b4e804b367c182c5fc4d65d09c089723389
-----Decoded View---------------
Arg [0] : _admin (address): 0xe03B330278355F65F2b63E06B6F13f05673C8Eb7
Arg [1] : _actionVotedRate (uint256): 66
Arg [2] : _owners (address[]): 0xCB876C2D2639bE3325F501Cf66C639e37e9f8d4F,0xe03B330278355F65F2b63E06B6F13f05673C8Eb7,0xd327BF1E669B0844ed92F0cC2e0759279C23bf29,0x610E3B4e804b367c182c5FC4D65d09c089723389
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000e03b330278355f65f2b63e06b6f13f05673c8eb7
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 000000000000000000000000cb876c2d2639be3325f501cf66c639e37e9f8d4f
Arg [5] : 000000000000000000000000e03b330278355f65f2b63e06b6f13f05673c8eb7
Arg [6] : 000000000000000000000000d327bf1e669b0844ed92f0cc2e0759279c23bf29
Arg [7] : 000000000000000000000000610e3b4e804b367c182c5fc4d65d09c089723389
Swarm Source
bzzr://1512aa0a1bb204d04000c9f65f1baf7434470e8c253bea560007369c47e03a6c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.