Overview
Max Total Supply
500,000,000,000 iBBT
Holders
5,784 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
iBlockchainBankAndTrustToken
Compiler Version
v0.5.10+commit.5a6ea5b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-27 */ /* * * * ;'+: * ''''''` * '''''''; * ''''''''+. * +''''''''', * '''''''''+'. * '''''''''''' * ''''''''''''' * ,'''''''''''''. * ''''''''''''''' * ''''''''''''''' * :'''''''''''''''. * ''''''''''''''''; * .''''''''''''''''' * '''''''''''''''''' * ;'''''''''''''''''' * '''''''''''''''''+' * '''''''''''''''''''' * '''''''''''''''''''', * ,'''''''''''''''''''' * ''''''''''''''''''''' * ''''''''''''''''''''': * ''''''''''''''''''''+' * `''''''''''''''''''''': * '''''''''''''''''''''' * .'''''''''''''''''''''; * ''''''''''''''''''''''` * '''''''''''''''''''''' * '''''''''''''''''''''' * : '''''''''''''''''''''' * ,: '''''''''''''''''''''' * :::. ''+''''''''''''''''''': * ,:,,:` .:::::::,. :''''''''''''''''''''''. * ,,,::::,.,::::::::,:::,::,'''''''''''''''''''''''; * :::::::,::,::::::::,,,''''''''''''''''''''''''''''''` * :::::::::,::::::::;'''''''''''''''''''''''''''''''''+` * ,:,::::::::::::,;'''''''''''''''''''''''''''''''''''''; * :,,:::::::::::''''''''''''''''''''''''''''''''''''''''' * ::::::::::,'''''''''''''''''''''''''''''''''''''''''''' * :,,:,:,:''''''''''''''''''''''''''''''''''''''''''''''` * .;::;''''''''''''''''''''''''''''''''''''''''''''''''' * :'+''''''''''''''''''''''''''''''''''''''''''''''' * ``.::;'''''''''''''';;:::,..`````,'''''''''', * '''''''; * '''''' * .'''''''; ''''''''''''' '''''''' ''''' * '''''''''''` ''''''''''''' ;''''''''''; '''; * ''' '''` '' ''', ,''' '': * ''' : '' `'' ''` :'` * '' '' '': :'' ' * '' '''''''''' '' '' ' * `'' ''''''''' '''''''''' '' '' * '' '''''''': '' '' '' * '' '' '' ''' ''' * ''' ''' '' ''' ''' * '''. .''' '' '''. .''' * `'''''''''' '''''''''''''` `'''''''''' * ''''''' '''''''''''''` .''''''. **/ pragma solidity ^0.5.2; // --------------------------------------------------------------------------------------------- // 'iBlockchain Bank & Trust™' ERC20 Token // // Symbol : iBBT // Trademarks (tm) : iBBT™ , IBBT™ , iBlockchain Bank & Trust™ // Name : Utility Token // Total supply : 100,000,000,000 (Million) // Decimals : 18 // Github : https://github.com/Geopay/iBlockchain-Bank-and-Trust-Utility-Token // // (c) by A. Valamontes with Blockchain Ventures / Geopay.me Inc 2013-2019. Affero GPLv3 Licence. // -- // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md // ---------------------------------------------------------------------------- contract ERC20Interface { function totalSharesIssued() public pure returns (uint); function balanceOf(address tokenOwner) public pure returns (uint balance); function allowance(address tokenOwner, address spender) public pure returns (uint remaining); function transfer(address to, uint tokens) public returns (bool success); function approve(address spender, uint tokens) public returns (bool success); function transferFrom(address from, address to, uint tokens) public returns (bool success); event Transfer(address indexed from, address indexed to, uint tokens); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); } /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/math/SafeMath.sol /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } contract Ownable { address public owner; constructor() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } } // File: contracts/token/ERC20/ERC20.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://eips.ethereum.org/EIPS/eip-20 * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token 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) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _transfer(from, to, value); _approve(from, msg.sender, _allowed[from][msg.sender].sub(value)); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue)); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Approve an address to spend another addresses' tokens. * @param owner The address that owns the tokens. * @param spender The address that will spend the tokens. * @param value The number of tokens that can be spent. */ function _approve(address owner, address spender, uint256 value) internal { require(spender != address(0)); require(owner != address(0)); _allowed[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _burn(account, value); _approve(account, msg.sender, _allowed[account][msg.sender].sub(value)); } // ------------------------------------------------------------------------ // Owner can transfer out any accidentally sent ERC20 tokens // ------------------------------------------------------------------------ function transferOtherERC20Assets(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } } // File: contracts/token/ERC20/ERC20Detailed.sol /** * @title ERC20Detailed token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } } // File: contracts/access/Roles.sol /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev give an account access to this role */ function add(Role storage role, address account) internal { require(account != address(0)); require(!has(role, account)); role.bearer[account] = true; } /** * @dev remove an account's access to this role */ function remove(Role storage role, address account) internal { require(account != address(0)); require(has(role, account)); role.bearer[account] = false; } /** * @dev check if an account has this role * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } // File: contracts/access/roles/MinterRole.sol contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender)); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: contracts/token/ERC20/ERC20Mintable.sol /** * @title ERC20Mintable * @dev ERC20 minting logic */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev Function to mint tokens * @param to The address that will receive the minted tokens. * @param value The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address to, uint256 value) public onlyMinter returns (bool) { _mint(to, value); return true; } } contract iBlockchainBankAndTrustToken is ERC20, ERC20Detailed, ERC20Mintable { string public version = '0.2'; constructor( string memory name, string memory symbol, uint8 decimals ) ERC20Mintable() ERC20Detailed(name, symbol, decimals) ERC20() public {} } // (c) by A. Valamontes with Blockchain Ventures / Geopay.me Inc 2013-2019. Affero GPLv3 Licence. // ----------------------------------------------------------------------------------------------
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":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferOtherERC20Assets","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"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":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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"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"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60c0604052600360808190527f302e32000000000000000000000000000000000000000000000000000000000060a090815262000040916008919062000263565b503480156200004e57600080fd5b5060405162000eb038038062000eb0833981810160405260608110156200007457600080fd5b8101908080516401000000008111156200008d57600080fd5b82016020810184811115620000a157600080fd5b8151640100000000811182820187101715620000bc57600080fd5b50509291906020018051640100000000811115620000d957600080fd5b82016020810184811115620000ed57600080fd5b81516401000000008111828201871017156200010857600080fd5b5050602091820151600080546001600160a01b0319163317905585519194509250849184918491620001409160049186019062000263565b5081516200015690600590602085019062000263565b506006805460ff191660ff92909216919091179055506200017990503362000182565b50505062000308565b6200019d816007620001d460201b62000acf1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6001600160a01b038116620001e857600080fd5b620001fd82826001600160e01b036200022d16565b156200020857600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200024357600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a657805160ff1916838001178555620002d6565b82800160010185558215620002d6579182015b82811115620002d6578251825591602001919060010190620002b9565b50620002e4929150620002e8565b5090565b6200030591905b80821115620002e45760008155600101620002ef565b90565b610b9880620003186000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a25780639865027511610071578063986502751461034c578063a457c2d714610354578063a9059cbb14610380578063aa271e1a146103ac578063dd62ed3e146103d257610116565b806370a08231146102d25780638da5cb5b146102f857806395d89b411461031c578063983b2d561461032457610116565b806323b872dd116100e957806323b872dd1461021e578063313ce56714610254578063395093511461027257806340c10f191461029e57806354fd4d50146102ca57610116565b806306fdde031461011b578063095ea7b31461019857806317655f6c146101d857806318160ddd14610204575b600080fd5b610123610400565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610496565b604080519115158252519081900360200190f35b6101c4600480360360408110156101ee57600080fd5b506001600160a01b0381351690602001356104ac565b61020c61054e565b60408051918252519081900360200190f35b6101c46004803603606081101561023457600080fd5b506001600160a01b03813581169160208101359091169060400135610554565b61025c6105ab565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028857600080fd5b506001600160a01b0381351690602001356105b4565b6101c4600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356105f0565b61012361060e565b61020c600480360360208110156102e857600080fd5b50356001600160a01b031661069c565b6103006106b7565b604080516001600160a01b039092168252519081900360200190f35b6101236106c6565b61034a6004803603602081101561033a57600080fd5b50356001600160a01b0316610727565b005b61034a610745565b6101c46004803603604081101561036a57600080fd5b506001600160a01b038135169060200135610750565b6101c46004803603604081101561039657600080fd5b506001600160a01b03813516906020013561078c565b6101c4600480360360208110156103c257600080fd5b50356001600160a01b0316610799565b61020c600480360360408110156103e857600080fd5b506001600160a01b03813581169160200135166107b2565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561048c5780601f106104615761010080835404028352916020019161048c565b820191906000526020600020905b81548152906001019060200180831161046f57829003601f168201915b5050505050905090565b60006104a33384846107dd565b50600192915050565b600080546001600160a01b031633146104c457600080fd5b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b15801561051b57600080fd5b505af115801561052f573d6000803e3d6000fd5b505050506040513d602081101561054557600080fd5b50519392505050565b60035490565b6000610561848484610865565b6001600160a01b0384166000908152600260209081526040808320338085529252909120546105a191869161059c908663ffffffff61093216565b6107dd565b5060019392505050565b60065460ff1690565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104a391859061059c908663ffffffff61094716565b60006105fb33610799565b61060457600080fd5b6104a38383610960565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b505050505081565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031681565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561048c5780601f106104615761010080835404028352916020019161048c565b61073033610799565b61073957600080fd5b61074281610a0a565b50565b61074e33610a52565b565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104a391859061059c908663ffffffff61093216565b60006104a3338484610865565b60006107ac60078363ffffffff610a9a16565b92915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6001600160a01b0382166107f057600080fd5b6001600160a01b03831661080357600080fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661087857600080fd5b6001600160a01b0383166000908152600160205260409020546108a1908263ffffffff61093216565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108d6908263ffffffff61094716565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561094157600080fd5b50900390565b60008282018381101561095957600080fd5b9392505050565b6001600160a01b03821661097357600080fd5b600354610986908263ffffffff61094716565b6003556001600160a01b0382166000908152600160205260409020546109b2908263ffffffff61094716565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a1b60078263ffffffff610acf16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610a6360078263ffffffff610b1b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610aaf57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038116610ae257600080fd5b610aec8282610a9a565b15610af657600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038116610b2e57600080fd5b610b388282610a9a565b610b4157600080fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fea265627a7a723058208555d41bfc643d57f8251d4aa252acb66f4c6715feba122ac61d40e89307175d64736f6c634300050a0032000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001269424254205574696c69747920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046942425400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a25780639865027511610071578063986502751461034c578063a457c2d714610354578063a9059cbb14610380578063aa271e1a146103ac578063dd62ed3e146103d257610116565b806370a08231146102d25780638da5cb5b146102f857806395d89b411461031c578063983b2d561461032457610116565b806323b872dd116100e957806323b872dd1461021e578063313ce56714610254578063395093511461027257806340c10f191461029e57806354fd4d50146102ca57610116565b806306fdde031461011b578063095ea7b31461019857806317655f6c146101d857806318160ddd14610204575b600080fd5b610123610400565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610496565b604080519115158252519081900360200190f35b6101c4600480360360408110156101ee57600080fd5b506001600160a01b0381351690602001356104ac565b61020c61054e565b60408051918252519081900360200190f35b6101c46004803603606081101561023457600080fd5b506001600160a01b03813581169160208101359091169060400135610554565b61025c6105ab565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028857600080fd5b506001600160a01b0381351690602001356105b4565b6101c4600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356105f0565b61012361060e565b61020c600480360360208110156102e857600080fd5b50356001600160a01b031661069c565b6103006106b7565b604080516001600160a01b039092168252519081900360200190f35b6101236106c6565b61034a6004803603602081101561033a57600080fd5b50356001600160a01b0316610727565b005b61034a610745565b6101c46004803603604081101561036a57600080fd5b506001600160a01b038135169060200135610750565b6101c46004803603604081101561039657600080fd5b506001600160a01b03813516906020013561078c565b6101c4600480360360208110156103c257600080fd5b50356001600160a01b0316610799565b61020c600480360360408110156103e857600080fd5b506001600160a01b03813581169160200135166107b2565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561048c5780601f106104615761010080835404028352916020019161048c565b820191906000526020600020905b81548152906001019060200180831161046f57829003601f168201915b5050505050905090565b60006104a33384846107dd565b50600192915050565b600080546001600160a01b031633146104c457600080fd5b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b15801561051b57600080fd5b505af115801561052f573d6000803e3d6000fd5b505050506040513d602081101561054557600080fd5b50519392505050565b60035490565b6000610561848484610865565b6001600160a01b0384166000908152600260209081526040808320338085529252909120546105a191869161059c908663ffffffff61093216565b6107dd565b5060019392505050565b60065460ff1690565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104a391859061059c908663ffffffff61094716565b60006105fb33610799565b61060457600080fd5b6104a38383610960565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b505050505081565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031681565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561048c5780601f106104615761010080835404028352916020019161048c565b61073033610799565b61073957600080fd5b61074281610a0a565b50565b61074e33610a52565b565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104a391859061059c908663ffffffff61093216565b60006104a3338484610865565b60006107ac60078363ffffffff610a9a16565b92915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6001600160a01b0382166107f057600080fd5b6001600160a01b03831661080357600080fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661087857600080fd5b6001600160a01b0383166000908152600160205260409020546108a1908263ffffffff61093216565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108d6908263ffffffff61094716565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561094157600080fd5b50900390565b60008282018381101561095957600080fd5b9392505050565b6001600160a01b03821661097357600080fd5b600354610986908263ffffffff61094716565b6003556001600160a01b0382166000908152600160205260409020546109b2908263ffffffff61094716565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a1b60078263ffffffff610acf16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610a6360078263ffffffff610b1b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610aaf57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038116610ae257600080fd5b610aec8282610a9a565b15610af657600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038116610b2e57600080fd5b610b388282610a9a565b610b4157600080fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fea265627a7a723058208555d41bfc643d57f8251d4aa252acb66f4c6715feba122ac61d40e89307175d64736f6c634300050a0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001269424254205574696c69747920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046942425400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): iBBT Utility Token
Arg [1] : symbol (string): iBBT
Arg [2] : decimals (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 69424254205574696c69747920546f6b656e0000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 6942425400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
22420:345:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22420:345:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19471:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;19471:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13372:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13372:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18626:185;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18626:185:0;;;;;;;;:::i;11523:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;13993:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13993:228:0;;;;;;;;;;;;;;;;;:::i;19787:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14736:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14736:203:0;;;;;;;;:::i;22280:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22280:131:0;;;;;;;;:::i;22504:29::-;;;:::i;11834:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11834:106:0;-1:-1:-1;;;;;11834:106:0;;:::i;10446:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;10446:20:0;;;;;;;;;;;;;;19621:87;;;:::i;21414:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21414:92:0;-1:-1:-1;;;;;21414:92:0;;:::i;:::-;;21514:77;;;:::i;15459:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15459:213:0;;;;;;;;:::i;12585:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12585:140:0;;;;;;;;:::i;21297:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21297:109:0;-1:-1:-1;;;;;21297:109:0;;:::i;12279:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12279:131:0;;;;;;;;;;:::i;19471:83::-;19541:5;19534:12;;;;;;;;-1:-1:-1;;19534:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19508:13;;19534:12;;19541:5;;19534:12;;19541:5;19534:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19471:83;:::o;13372:148::-;13437:4;13454:36;13463:10;13475:7;13484:5;13454:8;:36::i;:::-;-1:-1:-1;13508:4:0;13372:148;;;;:::o;18626:185::-;18721:12;10579:5;;-1:-1:-1;;;;;10579:5:0;10565:10;:19;10557:28;;;;;;18791:5;;;18753:52;;;-1:-1:-1;;;18753:52:0;;-1:-1:-1;;;;;18791:5:0;;;18753:52;;;;;;;;;;;;:37;;;;;;:52;;;;;;;;;;;;;;;;;:37;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;18753:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18753:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18753:52:0;;18626:185;-1:-1:-1;;;18626:185:0:o;11523:91::-;11594:12;;11523:91;:::o;13993:228::-;14072:4;14089:26;14099:4;14105:2;14109:5;14089:9;:26::i;:::-;-1:-1:-1;;;;;14153:14:0;;;;;;:8;:14;;;;;;;;14141:10;14153:26;;;;;;;;;14126:65;;14135:4;;14153:37;;14184:5;14153:37;:30;:37;:::i;:::-;14126:8;:65::i;:::-;-1:-1:-1;14209:4:0;13993:228;;;;;:::o;19787:83::-;19853:9;;;;19787:83;:::o;14736:203::-;14842:10;14816:4;14863:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;14863:29:0;;;;;;;;;;14816:4;;14833:76;;14854:7;;14863:45;;14897:10;14863:45;:33;:45;:::i;22280:131::-;22348:4;21248:20;21257:10;21248:8;:20::i;:::-;21240:29;;;;;;22365:16;22371:2;22375:5;22365;:16::i;22504:29::-;;;;;;;;;;;;;;;-1:-1:-1;;22504:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11834:106::-;-1:-1:-1;;;;;11916:16:0;11889:7;11916:16;;;:9;:16;;;;;;;11834:106::o;10446:20::-;;;-1:-1:-1;;;;;10446:20:0;;:::o;19621:87::-;19693:7;19686:14;;;;;;;;-1:-1:-1;;19686:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19660:13;;19686:14;;19693:7;;19686:14;;19693:7;19686:14;;;;;;;;;;;;;;;;;;;;;;;;21414:92;21248:20;21257:10;21248:8;:20::i;:::-;21240:29;;;;;;21479:19;21490:7;21479:10;:19::i;:::-;21414:92;:::o;21514:77::-;21558:25;21572:10;21558:13;:25::i;:::-;21514:77::o;15459:213::-;15570:10;15544:4;15591:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;15591:29:0;;;;;;;;;;15544:4;;15561:81;;15582:7;;15591:50;;15625:15;15591:50;:33;:50;:::i;12585:140::-;12646:4;12663:32;12673:10;12685:2;12689:5;12663:9;:32::i;21297:109::-;21353:4;21377:21;:8;21390:7;21377:21;:12;:21;:::i;:::-;21370:28;21297:109;-1:-1:-1;;21297:109:0:o;12279:131::-;-1:-1:-1;;;;;12378:15:0;;;12351:7;12378:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;12279:131::o;17558:254::-;-1:-1:-1;;;;;17651:21:0;;17643:30;;;;;;-1:-1:-1;;;;;17692:19:0;;17684:28;;;;;;-1:-1:-1;;;;;17725:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;17773:31;;;;;;;;;;;;;;;;;17558:254;;;:::o;15899:262::-;-1:-1:-1;;;;;15987:16:0;;15979:25;;;;;;-1:-1:-1;;;;;16035:15:0;;;;;;:9;:15;;;;;;:26;;16055:5;16035:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;16017:15:0;;;;;;;:9;:15;;;;;;:44;;;;16088:13;;;;;;;:24;;16106:5;16088:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;16072:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;16128:25;;;;;;;16072:13;;16128:25;;;;;;;;;;;;;15899:262;;;:::o;9746:150::-;9804:7;9837:1;9832;:6;;9824:15;;;;;;-1:-1:-1;9862:5:0;;;9746:150::o;9984:::-;10042:7;10074:5;;;10098:6;;;;10090:15;;;;;;10125:1;9984:150;-1:-1:-1;;;9984:150:0:o;16513:269::-;-1:-1:-1;;;;;16588:21:0;;16580:30;;;;;;16638:12;;:23;;16655:5;16638:23;:16;:23;:::i;:::-;16623:12;:38;-1:-1:-1;;;;;16693:18:0;;;;;;:9;:18;;;;;;:29;;16716:5;16693:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;16672:18:0;;;;;;:9;:18;;;;;;;;:50;;;;16738:36;;;;;;;16672:18;;;;16738:36;;;;;;;;;;16513:269;;:::o;21599:122::-;21656:21;:8;21669:7;21656:21;:12;:21;:::i;:::-;21693:20;;-1:-1:-1;;;;;21693:20:0;;;;;;;;21599:122;:::o;21729:130::-;21789:24;:8;21805:7;21789:24;:15;:24;:::i;:::-;21829:22;;-1:-1:-1;;;;;21829:22:0;;;;;;;;21729:130;:::o;20710:165::-;20782:4;-1:-1:-1;;;;;20807:21:0;;20799:30;;;;;;-1:-1:-1;;;;;;20847:20:0;:11;:20;;;;;;;;;;;;;;;20710:165::o;20162:186::-;-1:-1:-1;;;;;20239:21:0;;20231:30;;;;;;20281:18;20285:4;20291:7;20281:3;:18::i;:::-;20280:19;20272:28;;;;;;-1:-1:-1;;;;;20313:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20313:27:0;20336:4;20313:27;;;20162:186::o;20427:189::-;-1:-1:-1;;;;;20507:21:0;;20499:30;;;;;;20548:18;20552:4;20558:7;20548:3;:18::i;:::-;20540:27;;;;;;-1:-1:-1;;;;;20580:20:0;20603:5;20580:20;;;;;;;;;;;:28;;-1:-1:-1;;20580:28:0;;;20427:189::o
Swarm Source
bzzr://8555d41bfc643d57f8251d4aa252acb66f4c6715feba122ac61d40e89307175d
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.