Token migration announcement. STACS token contract has migrated to a new address.
ERC-20
GBX
Overview
Max Total Supply
900,000,000 STACS
Holders
15,128 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,148.129 STACSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StacsToken
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-11-23 */ pragma solidity 0.4.25; contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev Transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_value <= balances[msg.sender]); require(_to != address(0)); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view 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 Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() 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 { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract Claimable is Ownable { address public pendingOwner; /** * @dev Modifier throws if called by any account other than the pendingOwner. */ modifier onlyPendingOwner() { require(msg.sender == pendingOwner); _; } /** * @dev Allows the current owner to set the pendingOwner address. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { pendingOwner = newOwner; } /** * @dev Allows the pendingOwner address to finalize the transfer. */ function claimOwnership() onlyPendingOwner public { emit OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); } } contract Pausable { address public requester; address public approver; bool public paused = true; bool public pausePending = false; bool public unpausePending = false; function requestPause() public onlyRequester { pausePending = true; unpausePending = false; } function requestUnpause() public onlyRequester { pausePending = false; unpausePending = true; } function cancelRequestPause() public onlyRequester { pausePending = false; } function approveRequestPause() public onlyApprover { require(pausePending); pausePending = false; paused = true; } function rejectRequestPause() public onlyApprover { pausePending = false; } function cancelRequestUnpause() public onlyRequester { unpausePending = false; } function approveRequestUnpause() public onlyApprover { require(unpausePending); unpausePending = false; paused = false; } function rejectRequestUnpause() public onlyApprover { unpausePending = false; } /** * @dev Throws if called by any account other than the owner. */ modifier whenPaused() { require(paused); _; } modifier whenNotPaused() { require(!paused); _; } modifier onlyRequester() { require(msg.sender == requester); _; } modifier onlyApprover() { require(msg.sender == approver); _; } } library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ 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 a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @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 uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); require(_to != address(0)); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance( address _spender, uint256 _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance( address _spender, uint256 _subtractedValue ) public returns (bool) { uint256 oldValue = allowed[msg.sender][_spender]; if (_subtractedValue >= oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract StacsToken is StandardToken, Claimable, Pausable { using SafeMath for uint256; uint8 public constant decimals = 18; string public constant symbol = "STACS"; string public constant name = "STACS"; uint256 private constant MAX_TOKEN_SUPPLY = 900000000 * (10 ** uint256(decimals)); bool public migrationPhase = true; address public migrationOperator; constructor(address _migrationOperator, address _requester, address _approver) public { owner = msg.sender; migrationOperator = _migrationOperator; requester = _requester; approver = _approver; } /** * @dev Mint specified number of tokens to respective address. Can only be called during migration phase * @param _accounts The target addresses to transfer to. * @param _amounts The amounts to be transferred. */ function mint(address[] _accounts, uint256[] _amounts) public onlyMigrationOperator { require(migrationPhase); uint256 length = _accounts.length; require(length == _amounts.length); for (uint256 i = 0; i < length; i++) { balances[_accounts[i]] = balances[_accounts[i]].add(_amounts[i]); emit Transfer(address(0), _accounts[i], _amounts[i]); totalSupply_ = totalSupply_.add(_amounts[i]); } require(totalSupply_ <= MAX_TOKEN_SUPPLY); } /** * @dev End migration phase and disallow minting */ function endMigration() public onlyOwner { migrationPhase = false; } /** * @dev Transfer any ERC20 token belonging to this contract to owner * @param tokenAddress The target ERC20 token address * @param tokens The amount of tokens to be transferred */ function transferAnyERC20Token(address tokenAddress, uint256 tokens) public onlyOwner returns (bool success) { return ERC20Basic(tokenAddress).transfer(owner, tokens); } modifier onlyMigrationOperator() { require(msg.sender == migrationOperator); _; } // Overriden methods function transfer(address _to, uint256 _value) public whenNotPaused returns (bool success) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseAllowance(spender, subtractedValue); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"approver","outputs":[{"name":"","type":"address"}],"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":"rejectRequestUnpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"requestPause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"requestUnpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"approveRequestUnpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"cancelRequestUnpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"approveRequestPause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"endMigration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"rejectRequestPause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"unpausePending","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"migrationOperator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"cancelRequestPause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"requester","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"migrationPhase","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pausePending","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_migrationOperator","type":"address"},{"name":"_requester","type":"address"},{"name":"_approver","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"}]
Contract Creation Code
60806040526006805460a860020a62ffffff021960a060020a60ff02199091167401000000000000000000000000000000000000000017167701000000000000000000000000000000000000000000000017905534801561005f57600080fd5b506040516060806113478339810160409081528151602083015191909201516003805433600160a060020a03199182168117821617909155600780548216600160a060020a039586161790556005805482169385169390931790925560068054909216921691909117905561126e806100d96000396000f3006080604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101a5578063095ea7b31461022f578063141a8dd81461026757806318160ddd1461029857806319978a49146102bf5780631e935ab1146102d657806323b872dd146102eb57806324fe722e14610315578063267ff78c1461032a578063313ce5671461033f578063395093511461036a5780634e71e0c81461038e57806358a122a2146103a35780635c975abb146103b85780635fa58268146103cd5780636c525d04146103e257806370a08231146103f75780638da5cb5b1461041857806395d89b41146101a5578063a43655c41461042d578063a457c2d714610442578063a56e721314610466578063a7d4e89d1461047b578063a9059cbb14610490578063b25461ec146104b4578063b61e96a5146104c9578063c95320db146104de578063d56ea1b0146104f3578063dc39d06d14610508578063dd62ed3e1461052c578063e30c397814610553578063e467f7e014610568578063f2fde38b146105f6575b600080fd5b3480156101b157600080fd5b506101ba610617565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f45781810151838201526020016101dc565b50505050905090810190601f1680156102215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023b57600080fd5b50610253600160a060020a036004351660243561064e565b604080519115158252519081900360200190f35b34801561027357600080fd5b5061027c610679565b60408051600160a060020a039092168252519081900360200190f35b3480156102a457600080fd5b506102ad610688565b60408051918252519081900360200190f35b3480156102cb57600080fd5b506102d461068e565b005b3480156102e257600080fd5b506102d46106c7565b3480156102f757600080fd5b50610253600160a060020a0360043581169060243516604435610733565b34801561032157600080fd5b506102d4610760565b34801561033657600080fd5b506102d46107b2565b34801561034b57600080fd5b50610354610816565b6040805160ff9092168252519081900360200190f35b34801561037657600080fd5b50610253600160a060020a036004351660243561081b565b34801561039a57600080fd5b506102d461083f565b3480156103af57600080fd5b506102d46108c9565b3480156103c457600080fd5b506102536108e0565b3480156103d957600080fd5b506102d46108f0565b3480156103ee57600080fd5b506102d4610958565b34801561040357600080fd5b506102ad600160a060020a0360043516610992565b34801561042457600080fd5b5061027c6109ad565b34801561043957600080fd5b506102d46109bc565b34801561044e57600080fd5b50610253600160a060020a03600435166024356109f4565b34801561047257600080fd5b50610253610a18565b34801561048757600080fd5b5061027c610a3b565b34801561049c57600080fd5b50610253600160a060020a0360043516602435610a4a565b3480156104c057600080fd5b506102d4610a6e565b3480156104d557600080fd5b5061027c610a85565b3480156104ea57600080fd5b50610253610a94565b3480156104ff57600080fd5b50610253610ab8565b34801561051457600080fd5b50610253600160a060020a0360043516602435610ada565b34801561053857600080fd5b506102ad600160a060020a0360043581169060243516610b96565b34801561055f57600080fd5b5061027c610bc1565b34801561057457600080fd5b50604080516020600480358082013583810280860185019096528085526102d495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610bd09650505050505050565b34801561060257600080fd5b506102d4600160a060020a0360043516610d95565b60408051808201909152600581527f5354414353000000000000000000000000000000000000000000000000000000602082015281565b60065460009060a060020a900460ff161561066857600080fd5b6106728383610ddb565b9392505050565b600654600160a060020a031681565b60015490565b600654600160a060020a031633146106a557600080fd5b6006805476ff0000000000000000000000000000000000000000000019169055565b600554600160a060020a031633146106de57600080fd5b6006805476ff000000000000000000000000000000000000000000001975ff00000000000000000000000000000000000000000019909116750100000000000000000000000000000000000000000017169055565b60065460009060a060020a900460ff161561074d57600080fd5b610758848484610e41565b949350505050565b600554600160a060020a0316331461077757600080fd5b6006805476ffff0000000000000000000000000000000000000000001916760100000000000000000000000000000000000000000000179055565b600654600160a060020a031633146107c957600080fd5b600654760100000000000000000000000000000000000000000000900460ff1615156107f457600080fd5b6006805476ff00ff000000000000000000000000000000000000000019169055565b601281565b60065460009060a060020a900460ff161561083557600080fd5b6106728383610fb6565b600454600160a060020a0316331461085657600080fd5b600454600354604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600554600160a060020a031633146106a557600080fd5b60065460a060020a900460ff1681565b600654600160a060020a0316331461090757600080fd5b6006547501000000000000000000000000000000000000000000900460ff16151561093157600080fd5b6006805475ffff0000000000000000000000000000000000000000191660a060020a179055565b600354600160a060020a0316331461096f57600080fd5b6006805477ff000000000000000000000000000000000000000000000019169055565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031681565b600654600160a060020a031633146109d357600080fd5b6006805475ff00000000000000000000000000000000000000000019169055565b60065460009060a060020a900460ff1615610a0e57600080fd5b610672838361104f565b600654760100000000000000000000000000000000000000000000900460ff1681565b600754600160a060020a031681565b60065460009060a060020a900460ff1615610a6457600080fd5b610672838361113e565b600554600160a060020a031633146109d357600080fd5b600554600160a060020a031681565b60065477010000000000000000000000000000000000000000000000900460ff1681565b6006547501000000000000000000000000000000000000000000900460ff1681565b600354600090600160a060020a03163314610af457600080fd5b600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b158015610b6357600080fd5b505af1158015610b77573d6000803e3d6000fd5b505050506040513d6020811015610b8d57600080fd5b50519392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b6007546000908190600160a060020a03163314610bec57600080fd5b60065477010000000000000000000000000000000000000000000000900460ff161515610c1857600080fd5b835183519092508214610c2a57600080fd5b5060005b81811015610d7457610c918382815181101515610c4757fe5b906020019060200201516000808785815181101515610c6257fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61121d16565b6000808684815181101515610ca257fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558351849082908110610cd357fe5b90602001906020020151600160a060020a03166000600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8584815181101515610d2057fe5b906020019060200201516040518082815260200191505060405180910390a3610d698382815181101515610d5057fe5b602090810290910101516001549063ffffffff61121d16565b600190815501610c2e565b6001546b02e87669c308736a040000001015610d8f57600080fd5b50505050565b600354600160a060020a03163314610dac57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a038316600090815260208190526040812054821115610e6657600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610e9657600080fd5b600160a060020a0383161515610eab57600080fd5b600160a060020a038416600090815260208190526040902054610ed4908363ffffffff61123016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610f09908363ffffffff61121d16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f4b908363ffffffff61123016565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610fea908363ffffffff61121d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106110a357336000908152600260209081526040808320600160a060020a03881684529091528120556110d8565b6110b3818463ffffffff61123016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526020819052604081205482111561115a57600080fd5b600160a060020a038316151561116f57600080fd5b3360009081526020819052604090205461118f908363ffffffff61123016565b3360009081526020819052604080822092909255600160a060020a038516815220546111c1908363ffffffff61121d16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561122a57fe5b92915050565b60008282111561123c57fe5b509003905600a165627a7a72305820e80d334af0d728ddae1a58ac101db91fc3c8e77203247b16635409bfdf1e3b320029000000000000000000000000e96e68ebff436df211efa1c0d60ef07f0df61d3a000000000000000000000000e96e68ebff436df211efa1c0d60ef07f0df61d3a000000000000000000000000cb9d41149a868f24218afb65628ae45bccf501cb
Deployed Bytecode
0x6080604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101a5578063095ea7b31461022f578063141a8dd81461026757806318160ddd1461029857806319978a49146102bf5780631e935ab1146102d657806323b872dd146102eb57806324fe722e14610315578063267ff78c1461032a578063313ce5671461033f578063395093511461036a5780634e71e0c81461038e57806358a122a2146103a35780635c975abb146103b85780635fa58268146103cd5780636c525d04146103e257806370a08231146103f75780638da5cb5b1461041857806395d89b41146101a5578063a43655c41461042d578063a457c2d714610442578063a56e721314610466578063a7d4e89d1461047b578063a9059cbb14610490578063b25461ec146104b4578063b61e96a5146104c9578063c95320db146104de578063d56ea1b0146104f3578063dc39d06d14610508578063dd62ed3e1461052c578063e30c397814610553578063e467f7e014610568578063f2fde38b146105f6575b600080fd5b3480156101b157600080fd5b506101ba610617565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f45781810151838201526020016101dc565b50505050905090810190601f1680156102215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023b57600080fd5b50610253600160a060020a036004351660243561064e565b604080519115158252519081900360200190f35b34801561027357600080fd5b5061027c610679565b60408051600160a060020a039092168252519081900360200190f35b3480156102a457600080fd5b506102ad610688565b60408051918252519081900360200190f35b3480156102cb57600080fd5b506102d461068e565b005b3480156102e257600080fd5b506102d46106c7565b3480156102f757600080fd5b50610253600160a060020a0360043581169060243516604435610733565b34801561032157600080fd5b506102d4610760565b34801561033657600080fd5b506102d46107b2565b34801561034b57600080fd5b50610354610816565b6040805160ff9092168252519081900360200190f35b34801561037657600080fd5b50610253600160a060020a036004351660243561081b565b34801561039a57600080fd5b506102d461083f565b3480156103af57600080fd5b506102d46108c9565b3480156103c457600080fd5b506102536108e0565b3480156103d957600080fd5b506102d46108f0565b3480156103ee57600080fd5b506102d4610958565b34801561040357600080fd5b506102ad600160a060020a0360043516610992565b34801561042457600080fd5b5061027c6109ad565b34801561043957600080fd5b506102d46109bc565b34801561044e57600080fd5b50610253600160a060020a03600435166024356109f4565b34801561047257600080fd5b50610253610a18565b34801561048757600080fd5b5061027c610a3b565b34801561049c57600080fd5b50610253600160a060020a0360043516602435610a4a565b3480156104c057600080fd5b506102d4610a6e565b3480156104d557600080fd5b5061027c610a85565b3480156104ea57600080fd5b50610253610a94565b3480156104ff57600080fd5b50610253610ab8565b34801561051457600080fd5b50610253600160a060020a0360043516602435610ada565b34801561053857600080fd5b506102ad600160a060020a0360043581169060243516610b96565b34801561055f57600080fd5b5061027c610bc1565b34801561057457600080fd5b50604080516020600480358082013583810280860185019096528085526102d495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610bd09650505050505050565b34801561060257600080fd5b506102d4600160a060020a0360043516610d95565b60408051808201909152600581527f5354414353000000000000000000000000000000000000000000000000000000602082015281565b60065460009060a060020a900460ff161561066857600080fd5b6106728383610ddb565b9392505050565b600654600160a060020a031681565b60015490565b600654600160a060020a031633146106a557600080fd5b6006805476ff0000000000000000000000000000000000000000000019169055565b600554600160a060020a031633146106de57600080fd5b6006805476ff000000000000000000000000000000000000000000001975ff00000000000000000000000000000000000000000019909116750100000000000000000000000000000000000000000017169055565b60065460009060a060020a900460ff161561074d57600080fd5b610758848484610e41565b949350505050565b600554600160a060020a0316331461077757600080fd5b6006805476ffff0000000000000000000000000000000000000000001916760100000000000000000000000000000000000000000000179055565b600654600160a060020a031633146107c957600080fd5b600654760100000000000000000000000000000000000000000000900460ff1615156107f457600080fd5b6006805476ff00ff000000000000000000000000000000000000000019169055565b601281565b60065460009060a060020a900460ff161561083557600080fd5b6106728383610fb6565b600454600160a060020a0316331461085657600080fd5b600454600354604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600554600160a060020a031633146106a557600080fd5b60065460a060020a900460ff1681565b600654600160a060020a0316331461090757600080fd5b6006547501000000000000000000000000000000000000000000900460ff16151561093157600080fd5b6006805475ffff0000000000000000000000000000000000000000191660a060020a179055565b600354600160a060020a0316331461096f57600080fd5b6006805477ff000000000000000000000000000000000000000000000019169055565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031681565b600654600160a060020a031633146109d357600080fd5b6006805475ff00000000000000000000000000000000000000000019169055565b60065460009060a060020a900460ff1615610a0e57600080fd5b610672838361104f565b600654760100000000000000000000000000000000000000000000900460ff1681565b600754600160a060020a031681565b60065460009060a060020a900460ff1615610a6457600080fd5b610672838361113e565b600554600160a060020a031633146109d357600080fd5b600554600160a060020a031681565b60065477010000000000000000000000000000000000000000000000900460ff1681565b6006547501000000000000000000000000000000000000000000900460ff1681565b600354600090600160a060020a03163314610af457600080fd5b600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b158015610b6357600080fd5b505af1158015610b77573d6000803e3d6000fd5b505050506040513d6020811015610b8d57600080fd5b50519392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b6007546000908190600160a060020a03163314610bec57600080fd5b60065477010000000000000000000000000000000000000000000000900460ff161515610c1857600080fd5b835183519092508214610c2a57600080fd5b5060005b81811015610d7457610c918382815181101515610c4757fe5b906020019060200201516000808785815181101515610c6257fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61121d16565b6000808684815181101515610ca257fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558351849082908110610cd357fe5b90602001906020020151600160a060020a03166000600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8584815181101515610d2057fe5b906020019060200201516040518082815260200191505060405180910390a3610d698382815181101515610d5057fe5b602090810290910101516001549063ffffffff61121d16565b600190815501610c2e565b6001546b02e87669c308736a040000001015610d8f57600080fd5b50505050565b600354600160a060020a03163314610dac57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a038316600090815260208190526040812054821115610e6657600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610e9657600080fd5b600160a060020a0383161515610eab57600080fd5b600160a060020a038416600090815260208190526040902054610ed4908363ffffffff61123016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610f09908363ffffffff61121d16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f4b908363ffffffff61123016565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610fea908363ffffffff61121d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106110a357336000908152600260209081526040808320600160a060020a03881684529091528120556110d8565b6110b3818463ffffffff61123016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526020819052604081205482111561115a57600080fd5b600160a060020a038316151561116f57600080fd5b3360009081526020819052604090205461118f908363ffffffff61123016565b3360009081526020819052604080822092909255600160a060020a038516815220546111c1908363ffffffff61121d16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561122a57fe5b92915050565b60008282111561123c57fe5b509003905600a165627a7a72305820e80d334af0d728ddae1a58ac101db91fc3c8e77203247b16635409bfdf1e3b320029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e96e68ebff436df211efa1c0d60ef07f0df61d3a000000000000000000000000e96e68ebff436df211efa1c0d60ef07f0df61d3a000000000000000000000000cb9d41149a868f24218afb65628ae45bccf501cb
-----Decoded View---------------
Arg [0] : _migrationOperator (address): 0xe96e68eBFF436dF211eFa1c0d60eF07f0df61d3a
Arg [1] : _requester (address): 0xe96e68eBFF436dF211eFa1c0d60eF07f0df61d3a
Arg [2] : _approver (address): 0xCB9D41149a868f24218Afb65628AE45Bccf501cb
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000e96e68ebff436df211efa1c0d60ef07f0df61d3a
Arg [1] : 000000000000000000000000e96e68ebff436df211efa1c0d60ef07f0df61d3a
Arg [2] : 000000000000000000000000cb9d41149a868f24218afb65628ae45bccf501cb
Swarm Source
bzzr://e80d334af0d728ddae1a58ac101db91fc3c8e77203247b16635409bfdf1e3b32
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.