Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
ERC20Token
Compiler Version
v0.5.8+commit.23d335f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-05-28 */ pragma solidity ^0.5.8; // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > 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 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * > Note that this information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * `IERC20.balanceOf` and `IERC20.transfer`. */ function decimals() public view returns (uint8) { return _decimals; } } // File: openzeppelin-solidity/contracts/math/SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot 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, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: openzeppelin-solidity/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(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); 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), "Roles: account is the zero address"); return role.bearer[account]; } } // File: openzeppelin-solidity/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), "MinterRole: caller does not have the Minter role"); _; } 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: openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Capped.sol /** * @dev Extension of `ERC20Mintable` that adds a cap to the supply of tokens. */ contract ERC20Capped is ERC20Mintable { uint256 private _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor (uint256 cap) public { require(cap > 0, "ERC20Capped: cap is 0"); _cap = cap; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view returns (uint256) { return _cap; } /** * @dev See `ERC20Mintable.mint`. * * Requirements: * * - `value` must not cause the total supply to go over the cap. */ function _mint(address account, uint256 value) internal { require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded"); super._mint(account, value); } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol /** * @dev Extension of `ERC20` that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: eth-token-recover/contracts/TokenRecover.sol /** * @title TokenRecover * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Allow to recover any ERC20 sent into the contract for error */ contract TokenRecover is Ownable { /** * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts. * @param tokenAddress The token contract address * @param tokenAmount Number of tokens to be sent */ function recoverERC20(address tokenAddress, uint256 tokenAmount) public onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } } // File: ico-maker/contracts/access/roles/OperatorRole.sol contract OperatorRole { using Roles for Roles.Role; event OperatorAdded(address indexed account); event OperatorRemoved(address indexed account); Roles.Role private _operators; constructor() internal { _addOperator(msg.sender); } modifier onlyOperator() { require(isOperator(msg.sender)); _; } function isOperator(address account) public view returns (bool) { return _operators.has(account); } function addOperator(address account) public onlyOperator { _addOperator(account); } function renounceOperator() public { _removeOperator(msg.sender); } function _addOperator(address account) internal { _operators.add(account); emit OperatorAdded(account); } function _removeOperator(address account) internal { _operators.remove(account); emit OperatorRemoved(account); } } // File: ico-maker/contracts/token/ERC20/BaseERC20Token.sol /** * @title BaseERC20Token * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Implementation of the BaseERC20Token */ contract BaseERC20Token is ERC20Detailed, ERC20Capped, ERC20Burnable, OperatorRole, TokenRecover { event MintFinished(); event TransferEnabled(); // indicates if minting is finished bool private _mintingFinished = false; // indicates if transfer is enabled bool private _transferEnabled = false; /** * @dev Tokens can be minted only before minting finished. */ modifier canMint() { require(!_mintingFinished); _; } /** * @dev Tokens can be moved only after if transfer enabled or if you are an approved operator. */ modifier canTransfer(address from) { require(_transferEnabled || isOperator(from)); _; } /** * @param name Name of the token * @param symbol A symbol to be used as ticker * @param decimals Number of decimals. All the operations are done using the smallest and indivisible token unit * @param cap Maximum number of tokens mintable * @param initialSupply Initial token supply */ constructor( string memory name, string memory symbol, uint8 decimals, uint256 cap, uint256 initialSupply ) public ERC20Detailed(name, symbol, decimals) ERC20Capped(cap) { if (initialSupply > 0) { _mint(owner(), initialSupply); } } /** * @return if minting is finished or not. */ function mintingFinished() public view returns (bool) { return _mintingFinished; } /** * @return if transfer is enabled or not. */ function transferEnabled() public view returns (bool) { return _transferEnabled; } /** * @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 canMint returns (bool) { return super.mint(to, value); } /** * @dev Transfer token to a specified address * @param to The address to transfer to. * @param value The amount to be transferred. * @return A boolean that indicates if the operation was successful. */ function transfer(address to, uint256 value) public canTransfer(msg.sender) returns (bool) { return super.transfer(to, value); } /** * @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 * @return A boolean that indicates if the operation was successful. */ function transferFrom(address from, address to, uint256 value) public canTransfer(from) returns (bool) { return super.transferFrom(from, to, value); } /** * @dev Function to stop minting new tokens and enable transfer. */ function finishMinting() public onlyOwner canMint { _mintingFinished = true; emit MintFinished(); } /** * @dev Function to enable transfers. */ function enableTransfer() public onlyOwner { _transferEnabled = true; emit TransferEnabled(); } /** * @dev remove the `operator` role from address * @param account Address you want to remove role */ function removeOperator(address account) public onlyOwner { _removeOperator(account); } /** * @dev remove the `minter` role from address * @param account Address you want to remove role */ function removeMinter(address account) public onlyOwner { _removeMinter(account); } } // File: contracts/ERC20Token.sol /** * @title ERC20Token * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Implementation of a BaseERC20Token */ contract ERC20Token is BaseERC20Token { string public builtOn = "https://vittominacori.github.io/erc20-generator"; constructor( string memory name, string memory symbol, uint8 decimals, uint256 cap, uint256 initialSupply ) public BaseERC20Token(name, symbol, decimals, cap, initialSupply) {} // solhint-disable-line no-empty-blocks }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","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":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":"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":false,"inputs":[],"name":"renounceOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isOperator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"account","type":"address"}],"name":"addOperator","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":false,"inputs":[{"name":"account","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"builtOn","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"enableTransfer","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":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"cap","type":"uint256"},{"name":"initialSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"TransferEnabled","type":"event"},{"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":"account","type":"address"}],"name":"OperatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"OperatorRemoved","type":"event"},{"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
60098054600160a01b61ffff021916905560e0604052602f6080818152906200206f60a03980516200003a91600a91602090910190620006bb565b503480156200004857600080fd5b506040516200209e3803806200209e833981018060405260a08110156200006e57600080fd5b8101908080516401000000008111156200008757600080fd5b820160208101848111156200009b57600080fd5b8151640100000000811182820187101715620000b657600080fd5b50509291906020018051640100000000811115620000d357600080fd5b82016020810184811115620000e757600080fd5b81516401000000008111828201871017156200010257600080fd5b505060208083015160408401516060909401518751939650909450918691869186918691869183918791879187916200014191600091860190620006bb565b50815162000157906001906020850190620006bb565b506002805460ff191660ff9290921691909117905550620001819050336200028a602090811b901c565b60008111620001f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b6007556200020633620002dc602090811b901c565b600980546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a380156200027a576200027a6200026d6200032e60201b60201c565b826200033e60201b60201c565b505050505050505050506200075d565b620002a5816006620003f360201b620015d31790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620002f7816008620003f360201b620015d31790919060201c565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b6009546001600160a01b03165b90565b6007546200036a82620003566200049760201b60201c565b6200049d60201b62000fc61790919060201c565b1115620003d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b620003ef82826200051960201b620016571760201c565b5050565b6200040582826200063860201b60201c565b156200047257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60055490565b6000828201838110156200051257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166200058f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620005ab816005546200049d60201b62000fc61790919060201c565b6005556001600160a01b038216600090815260036020908152604090912054620005e091839062000fc66200049d821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006001600160a01b0382166200069b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200204d6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006fe57805160ff19168380011785556200072e565b828001600101855582156200072e579182015b828111156200072e57825182559160200191906001019062000711565b506200073c92915062000740565b5090565b6200033b91905b808211156200073c576000815560010162000747565b6118e0806200076d6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806379cc67901161011a5780639870d7fe116100ad578063ac8a584a1161007c578063ac8a584a146105a2578063b60b7084146105c8578063dd62ed3e146105d0578063f1b50c1d146105fe578063f2fde38b14610606576101fb565b80639870d7fe146104fe578063a457c2d714610524578063a9059cbb14610550578063aa271e1a1461057c576101fb565b80638f32d59b116100e95780638f32d59b146104c057806395d89b41146104c8578063983b2d56146104d057806398650275146104f6576101fb565b806379cc67901461043c5780637d64bcb4146104685780638980f11f146104705780638da5cb5b1461049c576101fb565b8063355274ea116101925780634cd412d5116101615780634cd412d5146103e05780636d70f7ae146103e857806370a082311461040e578063715018a614610434576101fb565b8063355274ea14610363578063395093511461036b57806340c10f191461039757806342966c68146103c3576101fb565b806323b872dd116101ce57806323b872dd146102df5780632ab6f8db146103155780633092afd51461031f578063313ce56714610345576101fb565b806305d2035b1461020057806306fdde031461021c578063095ea7b31461029957806318160ddd146102c5575b600080fd5b61020861062c565b604080519115158252519081900360200190f35b61022461063c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025e578181015183820152602001610246565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610208600480360360408110156102af57600080fd5b506001600160a01b0381351690602001356106d2565b6102cd6106e8565b60408051918252519081900360200190f35b610208600480360360608110156102f557600080fd5b506001600160a01b038135811691602081013590911690604001356106ee565b61031d61072c565b005b61031d6004803603602081101561033557600080fd5b50356001600160a01b0316610737565b61034d61078d565b6040805160ff9092168252519081900360200190f35b6102cd610796565b6102086004803603604081101561038157600080fd5b506001600160a01b03813516906020013561079c565b610208600480360360408110156103ad57600080fd5b506001600160a01b0381351690602001356107dd565b61031d600480360360208110156103d957600080fd5b5035610808565b610208610812565b610208600480360360208110156103fe57600080fd5b50356001600160a01b0316610822565b6102cd6004803603602081101561042457600080fd5b50356001600160a01b031661083b565b61031d610856565b61031d6004803603604081101561045257600080fd5b506001600160a01b0381351690602001356108ea565b61031d6108f8565b61031d6004803603604081101561048657600080fd5b506001600160a01b0381351690602001356109a8565b6104a4610a89565b604080516001600160a01b039092168252519081900360200190f35b610208610a98565b610224610aa9565b61031d600480360360208110156104e657600080fd5b50356001600160a01b0316610b09565b61031d610b59565b61031d6004803603602081101561051457600080fd5b50356001600160a01b0316610b62565b6102086004803603604081101561053a57600080fd5b506001600160a01b038135169060200135610b7d565b6102086004803603604081101561056657600080fd5b506001600160a01b038135169060200135610bb9565b6102086004803603602081101561059257600080fd5b50356001600160a01b0316610bf5565b61031d600480360360208110156105b857600080fd5b50356001600160a01b0316610c08565b610224610c5b565b6102cd600480360360408110156105e657600080fd5b506001600160a01b0381358116916020013516610ce9565b61031d610d14565b61031d6004803603602081101561061c57600080fd5b50356001600160a01b0316610d9f565b600954600160a01b900460ff1690565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b60006106df338484610df2565b50600192915050565b60055490565b6009546000908490600160a81b900460ff168061070f575061070f81610822565b61071857600080fd5b610723858585610ee4565b95945050505050565b61073533610f36565b565b61073f610a98565b6107815760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b61078a81610f7e565b50565b60025460ff1690565b60075490565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106df9185906107d8908663ffffffff610fc616565b610df2565b600954600090600160a01b900460ff16156107f757600080fd5b6108018383611023565b9392505050565b61078a3382611076565b600954600160a81b900460ff1690565b600061083560088363ffffffff61115416565b92915050565b6001600160a01b031660009081526003602052604090205490565b61085e610a98565b6108a05760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6108f482826111be565b5050565b610900610a98565b6109425760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b600954600160a01b900460ff161561095957600080fd5b6009805474ff00000000000000000000000000000000000000001916600160a01b1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b6109b0610a98565b6109f25760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb610a09610a89565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a5957600080fd5b505af1158015610a6d573d6000803e3d6000fd5b505050506040513d6020811015610a8357600080fd5b50505050565b6009546001600160a01b031690565b6009546001600160a01b0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c85780601f1061069d576101008083540402835291602001916106c8565b610b1233610bf5565b610b5057604051600160e51b62461bcd0281526004018080602001828103825260308152602001806117b86030913960400191505060405180910390fd5b61078a81611203565b61073533610f7e565b610b6b33610822565b610b7457600080fd5b61078a8161124b565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106df9185906107d8908663ffffffff61129316565b6009546000903390600160a81b900460ff1680610bda5750610bda81610822565b610be357600080fd5b610bed84846112f3565b949350505050565b600061083560068363ffffffff61115416565b610c10610a98565b610c525760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b61078a81610f36565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ce15780601f10610cb657610100808354040283529160200191610ce1565b820191906000526020600020905b815481529060010190602001808311610cc457829003601f168201915b505050505081565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610d1c610a98565b610d5e5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b60098054600160a81b60ff021916600160a81b1790556040517f75fce015c314a132947a3e42f6ab79ab8e05397dabf35b4d742dea228bbadc2d90600090a1565b610da7610a98565b610de95760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b61078a81611300565b6001600160a01b038316610e3a57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806118916024913960400191505060405180910390fd5b6001600160a01b038216610e8257604051600160e51b62461bcd0281526004018080602001828103825260228152602001806117966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610ef18484846113a4565b6001600160a01b038416600090815260046020908152604080832033808552925290912054610f2c9186916107d8908663ffffffff61129316565b5060019392505050565b610f4760088263ffffffff6114ee16565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b610f8f60068263ffffffff6114ee16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000828201838110156108015760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061102e33610bf5565b61106c57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806117b86030913960400191505060405180910390fd5b6106df8383611558565b6001600160a01b0382166110be57604051600160e51b62461bcd02815260040180806020018281038252602181526020018061184b6021913960400191505060405180910390fd5b6005546110d1908263ffffffff61129316565b6005556001600160a01b0382166000908152600360205260409020546110fd908263ffffffff61129316565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b03821661119e57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806118296022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6111c88282611076565b6001600160a01b0382166000908152600460209081526040808320338085529252909120546108f49184916107d8908563ffffffff61129316565b61121460068263ffffffff6115d316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61125c60088263ffffffff6115d316565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b6000828211156112ed5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006106df3384846113a4565b6001600160a01b03811661134857604051600160e51b62461bcd0281526004018080602001828103825260268152602001806117706026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166113ec57604051600160e51b62461bcd02815260040180806020018281038252602581526020018061186c6025913960400191505060405180910390fd5b6001600160a01b03821661143457604051600160e51b62461bcd02815260040180806020018281038252602381526020018061174d6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205461145d908263ffffffff61129316565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611492908263ffffffff610fc616565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6114f88282611154565b61153657604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117e86021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600754611573826115676106e8565b9063ffffffff610fc616565b11156115c95760408051600160e51b62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6108f48282611657565b6115dd8282611154565b156116325760408051600160e51b62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b0382166116b55760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546116c8908263ffffffff610fc616565b6005556001600160a01b0382166000908152600360205260409020546116f4908263ffffffff610fc616565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820eb2cec6a0c7b5c43000b65acad6e8ca4c8dd763b7a0aadc7753c9d5950b42b790029526f6c65733a206163636f756e7420697320746865207a65726f206164647265737368747470733a2f2f766974746f6d696e61636f72692e6769746875622e696f2f65726332302d67656e657261746f7200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000001431e0fae6d7217caa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006446f6c6c6172000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035553440000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806379cc67901161011a5780639870d7fe116100ad578063ac8a584a1161007c578063ac8a584a146105a2578063b60b7084146105c8578063dd62ed3e146105d0578063f1b50c1d146105fe578063f2fde38b14610606576101fb565b80639870d7fe146104fe578063a457c2d714610524578063a9059cbb14610550578063aa271e1a1461057c576101fb565b80638f32d59b116100e95780638f32d59b146104c057806395d89b41146104c8578063983b2d56146104d057806398650275146104f6576101fb565b806379cc67901461043c5780637d64bcb4146104685780638980f11f146104705780638da5cb5b1461049c576101fb565b8063355274ea116101925780634cd412d5116101615780634cd412d5146103e05780636d70f7ae146103e857806370a082311461040e578063715018a614610434576101fb565b8063355274ea14610363578063395093511461036b57806340c10f191461039757806342966c68146103c3576101fb565b806323b872dd116101ce57806323b872dd146102df5780632ab6f8db146103155780633092afd51461031f578063313ce56714610345576101fb565b806305d2035b1461020057806306fdde031461021c578063095ea7b31461029957806318160ddd146102c5575b600080fd5b61020861062c565b604080519115158252519081900360200190f35b61022461063c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025e578181015183820152602001610246565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610208600480360360408110156102af57600080fd5b506001600160a01b0381351690602001356106d2565b6102cd6106e8565b60408051918252519081900360200190f35b610208600480360360608110156102f557600080fd5b506001600160a01b038135811691602081013590911690604001356106ee565b61031d61072c565b005b61031d6004803603602081101561033557600080fd5b50356001600160a01b0316610737565b61034d61078d565b6040805160ff9092168252519081900360200190f35b6102cd610796565b6102086004803603604081101561038157600080fd5b506001600160a01b03813516906020013561079c565b610208600480360360408110156103ad57600080fd5b506001600160a01b0381351690602001356107dd565b61031d600480360360208110156103d957600080fd5b5035610808565b610208610812565b610208600480360360208110156103fe57600080fd5b50356001600160a01b0316610822565b6102cd6004803603602081101561042457600080fd5b50356001600160a01b031661083b565b61031d610856565b61031d6004803603604081101561045257600080fd5b506001600160a01b0381351690602001356108ea565b61031d6108f8565b61031d6004803603604081101561048657600080fd5b506001600160a01b0381351690602001356109a8565b6104a4610a89565b604080516001600160a01b039092168252519081900360200190f35b610208610a98565b610224610aa9565b61031d600480360360208110156104e657600080fd5b50356001600160a01b0316610b09565b61031d610b59565b61031d6004803603602081101561051457600080fd5b50356001600160a01b0316610b62565b6102086004803603604081101561053a57600080fd5b506001600160a01b038135169060200135610b7d565b6102086004803603604081101561056657600080fd5b506001600160a01b038135169060200135610bb9565b6102086004803603602081101561059257600080fd5b50356001600160a01b0316610bf5565b61031d600480360360208110156105b857600080fd5b50356001600160a01b0316610c08565b610224610c5b565b6102cd600480360360408110156105e657600080fd5b506001600160a01b0381358116916020013516610ce9565b61031d610d14565b61031d6004803603602081101561061c57600080fd5b50356001600160a01b0316610d9f565b600954600160a01b900460ff1690565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b60006106df338484610df2565b50600192915050565b60055490565b6009546000908490600160a81b900460ff168061070f575061070f81610822565b61071857600080fd5b610723858585610ee4565b95945050505050565b61073533610f36565b565b61073f610a98565b6107815760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b61078a81610f7e565b50565b60025460ff1690565b60075490565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106df9185906107d8908663ffffffff610fc616565b610df2565b600954600090600160a01b900460ff16156107f757600080fd5b6108018383611023565b9392505050565b61078a3382611076565b600954600160a81b900460ff1690565b600061083560088363ffffffff61115416565b92915050565b6001600160a01b031660009081526003602052604090205490565b61085e610a98565b6108a05760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6108f482826111be565b5050565b610900610a98565b6109425760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b600954600160a01b900460ff161561095957600080fd5b6009805474ff00000000000000000000000000000000000000001916600160a01b1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b6109b0610a98565b6109f25760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb610a09610a89565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a5957600080fd5b505af1158015610a6d573d6000803e3d6000fd5b505050506040513d6020811015610a8357600080fd5b50505050565b6009546001600160a01b031690565b6009546001600160a01b0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c85780601f1061069d576101008083540402835291602001916106c8565b610b1233610bf5565b610b5057604051600160e51b62461bcd0281526004018080602001828103825260308152602001806117b86030913960400191505060405180910390fd5b61078a81611203565b61073533610f7e565b610b6b33610822565b610b7457600080fd5b61078a8161124b565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106df9185906107d8908663ffffffff61129316565b6009546000903390600160a81b900460ff1680610bda5750610bda81610822565b610be357600080fd5b610bed84846112f3565b949350505050565b600061083560068363ffffffff61115416565b610c10610a98565b610c525760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b61078a81610f36565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ce15780601f10610cb657610100808354040283529160200191610ce1565b820191906000526020600020905b815481529060010190602001808311610cc457829003601f168201915b505050505081565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610d1c610a98565b610d5e5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b60098054600160a81b60ff021916600160a81b1790556040517f75fce015c314a132947a3e42f6ab79ab8e05397dabf35b4d742dea228bbadc2d90600090a1565b610da7610a98565b610de95760408051600160e51b62461bcd0281526020600482018190526024820152600080516020611809833981519152604482015290519081900360640190fd5b61078a81611300565b6001600160a01b038316610e3a57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806118916024913960400191505060405180910390fd5b6001600160a01b038216610e8257604051600160e51b62461bcd0281526004018080602001828103825260228152602001806117966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610ef18484846113a4565b6001600160a01b038416600090815260046020908152604080832033808552925290912054610f2c9186916107d8908663ffffffff61129316565b5060019392505050565b610f4760088263ffffffff6114ee16565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b610f8f60068263ffffffff6114ee16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000828201838110156108015760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061102e33610bf5565b61106c57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806117b86030913960400191505060405180910390fd5b6106df8383611558565b6001600160a01b0382166110be57604051600160e51b62461bcd02815260040180806020018281038252602181526020018061184b6021913960400191505060405180910390fd5b6005546110d1908263ffffffff61129316565b6005556001600160a01b0382166000908152600360205260409020546110fd908263ffffffff61129316565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b03821661119e57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806118296022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6111c88282611076565b6001600160a01b0382166000908152600460209081526040808320338085529252909120546108f49184916107d8908563ffffffff61129316565b61121460068263ffffffff6115d316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61125c60088263ffffffff6115d316565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b6000828211156112ed5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006106df3384846113a4565b6001600160a01b03811661134857604051600160e51b62461bcd0281526004018080602001828103825260268152602001806117706026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166113ec57604051600160e51b62461bcd02815260040180806020018281038252602581526020018061186c6025913960400191505060405180910390fd5b6001600160a01b03821661143457604051600160e51b62461bcd02815260040180806020018281038252602381526020018061174d6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205461145d908263ffffffff61129316565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611492908263ffffffff610fc616565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6114f88282611154565b61153657604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117e86021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600754611573826115676106e8565b9063ffffffff610fc616565b11156115c95760408051600160e51b62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6108f48282611657565b6115dd8282611154565b156116325760408051600160e51b62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b0382166116b55760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546116c8908263ffffffff610fc616565b6005556001600160a01b0382166000908152600360205260409020546116f4908263ffffffff610fc616565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820eb2cec6a0c7b5c43000b65acad6e8ca4c8dd763b7a0aadc7753c9d5950b42b790029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000001431e0fae6d7217caa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006446f6c6c6172000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035553440000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Dollar
Arg [1] : symbol (string): USD
Arg [2] : decimals (uint8): 18
Arg [3] : cap (uint256): 100000000000000000000000000000
Arg [4] : initialSupply (uint256): 0
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000001431e0fae6d7217caa0000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 446f6c6c61720000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5553440000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
29120:421:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29120:421:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26505:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;3570: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;3570:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10699:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10699:148:0;;;;;;;;:::i;9722:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;27902:164;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27902:164:0;;;;;;;;;;;;;;;;;:::i;24434:81::-;;;:::i;:::-;;28838:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28838:97:0;-1:-1:-1;;;;;28838:97:0;;:::i;4428:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19538:75;;;:::i;11983:206::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11983:206:0;;;;;;;;:::i;27025:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27025:118:0;;;;;;;;:::i;20410:81::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20410:81:0;;:::i;26674:96::-;;;:::i;24207:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24207:113:0;-1:-1:-1;;;;;24207:113:0;;:::i;9876:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9876:110:0;-1:-1:-1;;;;;9876:110:0;;:::i;22354:140::-;;;:::i;20553:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20553:103:0;;;;;;;;:::i;28162:124::-;;;:::i;23610:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23610:152:0;;;;;;;;:::i;21543:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21543:79:0;;;;;;;;;;;;;;21909:92;;;:::i;3772:87::-;;;:::i;17867:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17867:92:0;-1:-1:-1;;;;;17867:92:0;;:::i;17967:77::-;;;:::i;24328:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24328:98:0;-1:-1:-1;;;;;24328:98:0;;:::i;12692:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12692:216:0;;;;;;;;:::i;27391:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27391:142:0;;;;;;;;:::i;17750:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17750:109:0;-1:-1:-1;;;;;17750:109:0;;:::i;28605:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28605:101:0;-1:-1:-1;;;;;28605:101:0;;:::i;29167:73::-;;;:::i;10418:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10418:134:0;;;;;;;;;;:::i;28351:120::-;;;:::i;22649:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22649:109:0;-1:-1:-1;;;;;22649:109:0;;:::i;26505:96::-;26577:16;;-1:-1:-1;;;26577:16:0;;;;;26505:96::o;3570:83::-;3640:5;3633:12;;;;;;;;-1:-1:-1;;3633:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3607:13;;3633:12;;3640:5;;3633:12;;3640:5;3633:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3570:83;:::o;10699:148::-;10764:4;10781:36;10790:10;10802:7;10811:5;10781:8;:36::i;:::-;-1:-1:-1;10835:4:0;10699:148;;;;:::o;9722:91::-;9793:12;;9722:91;:::o;27902:164::-;25689:16;;27999:4;;27984;;-1:-1:-1;;;25689:16:0;;;;;:36;;;25709:16;25720:4;25709:10;:16::i;:::-;25681:45;;;;;;28023:35;28042:4;28048:2;28052:5;28023:18;:35::i;:::-;28016:42;27902:164;-1:-1:-1;;;;;27902:164:0:o;24434:81::-;24480:27;24496:10;24480:15;:27::i;:::-;24434:81::o;28838:97::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;28905:22;28919:7;28905:13;:22::i;:::-;28838:97;:::o;4428:83::-;4494:9;;;;4428:83;:::o;19538:75::-;19601:4;;19538:75;:::o;11983:206::-;12089:10;12063:4;12110:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12110:32:0;;;;;;;;;;12063:4;;12080:79;;12101:7;;12110:48;;12147:10;12110:48;:36;:48;:::i;:::-;12080:8;:79::i;27025:118::-;25472:16;;27090:4;;-1:-1:-1;;;25472:16:0;;;;25471:17;25463:26;;;;;;27114:21;27125:2;27129:5;27114:10;:21::i;:::-;27107:28;27025:118;-1:-1:-1;;;27025:118:0:o;20410:81::-;20458:25;20464:10;20476:6;20458:5;:25::i;26674:96::-;26746:16;;-1:-1:-1;;;26746:16:0;;;;;26674:96::o;24207:113::-;24265:4;24289:23;:10;24304:7;24289:23;:14;:23;:::i;:::-;24282:30;24207:113;-1:-1:-1;;24207:113:0:o;9876:110::-;-1:-1:-1;;;;;9960:18:0;9933:7;9960:18;;;:9;:18;;;;;;;9876:110::o;22354:140::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;22437:6;;22416:40;;22453:1;;-1:-1:-1;;;;;22437:6:0;;22416:40;;22453:1;;22416:40;22467:6;:19;;-1:-1:-1;;;;;;22467:19:0;;;22354:140::o;20553:103::-;20622:26;20632:7;20641:6;20622:9;:26::i;:::-;20553:103;;:::o;28162:124::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;25472:16;;-1:-1:-1;;;25472:16:0;;;;25471:17;25463:26;;;;;;28223:16;:23;;-1:-1:-1;;28223:23:0;-1:-1:-1;;;28223:23:0;;;28264:14;;;;28223:23;;28264:14;28162:124::o;23610:152::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;23710:12;-1:-1:-1;;;;;23703:29:0;;23733:7;:5;:7::i;:::-;23742:11;23703:51;;;;;;;;;;;;;-1:-1:-1;;;;;23703:51:0;-1:-1:-1;;;;;23703:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23703:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23703:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;23610:152:0:o;21543:79::-;21608:6;;-1:-1:-1;;;;;21608:6:0;21543:79;:::o;21909:92::-;21987:6;;-1:-1:-1;;;;;21987:6:0;21973:10;:20;;21909:92::o;3772:87::-;3844:7;3837:14;;;;;;;;-1:-1:-1;;3837:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3811:13;;3837:14;;3844:7;;3837:14;;3844:7;3837:14;;;;;;;;;;;;;;;;;;;;;;;;17867:92;17649:20;17658:10;17649:8;:20::i;:::-;17641:81;;;;-1:-1:-1;;;;;17641:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17932:19;17943:7;17932:10;:19::i;17967:77::-;18011:25;18025:10;18011:13;:25::i;24328:98::-;24156:22;24167:10;24156;:22::i;:::-;24148:31;;;;;;24397:21;24410:7;24397:12;:21::i;12692:216::-;12803:10;12777:4;12824:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12824:32:0;;;;;;;;;;12777:4;;12794:84;;12815:7;;12824:53;;12861:15;12824:53;:36;:53;:::i;27391:142::-;25689:16;;27476:4;;27455:10;;-1:-1:-1;;;25689:16:0;;;;;:36;;;25709:16;25720:4;25709:10;:16::i;:::-;25681:45;;;;;;27500:25;27515:2;27519:5;27500:14;:25::i;:::-;27493:32;27391:142;-1:-1:-1;;;;27391:142:0:o;17750:109::-;17806:4;17830:21;:8;17843:7;17830:21;:12;:21;:::i;28605:101::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;28674:24;28690:7;28674:15;:24::i;29167:73::-;;;;;;;;;;;;;;;-1:-1:-1;;29167:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10418:134::-;-1:-1:-1;;;;;10517:18:0;;;10490:7;10517:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10418:134::o;28351:120::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;28405:16;:23;;-1:-1:-1;;;;;;28405:23:0;-1:-1:-1;;;28405:23:0;;;28446:17;;;;28405:23;;28446:17;28351:120::o;22649:109::-;21755:9;:7;:9::i;:::-;21747:54;;;;;-1:-1:-1;;;;;21747:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21747:54:0;;;;;;;;;;;;;;;22722:28;22741:8;22722:18;:28::i;15494:335::-;-1:-1:-1;;;;;15587:19:0;;15579:68;;;;-1:-1:-1;;;;;15579:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15666:21:0;;15658:68;;;;-1:-1:-1;;;;;15658:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15739:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;15790:31;;;;;;;;;;;;;;;;;15494:335;;;:::o;11318:256::-;11407:4;11424:36;11434:6;11442:9;11453:6;11424:9;:36::i;:::-;-1:-1:-1;;;;;11500:19:0;;;;;;:11;:19;;;;;;;;11488:10;11500:31;;;;;;;;;11471:73;;11480:6;;11500:43;;11536:6;11500:43;:35;:43;:::i;11471:73::-;-1:-1:-1;11562:4:0;11318:256;;;;;:::o;24659:136::-;24721:26;:10;24739:7;24721:26;:17;:26;:::i;:::-;24763:24;;-1:-1:-1;;;;;24763:24:0;;;;;;;;24659:136;:::o;18182:130::-;18242:24;:8;18258:7;18242:24;:15;:24;:::i;:::-;18282:22;;-1:-1:-1;;;;;18282:22:0;;;;;;;;18182:130;:::o;5412:181::-;5470:7;5502:5;;;5526:6;;;;5518:46;;;;;-1:-1:-1;;;;;5518:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;18817:143;18891:4;17649:20;17658:10;17649:8;:20::i;:::-;17641:81;;;;-1:-1:-1;;;;;17641:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18908:22;18914:7;18923:6;18908:5;:22::i;14748:306::-;-1:-1:-1;;;;;14823:21:0;;14815:67;;;;-1:-1:-1;;;;;14815:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14910:12;;:23;;14927:5;14910:23;:16;:23;:::i;:::-;14895:12;:38;-1:-1:-1;;;;;14965:18:0;;;;;;:9;:18;;;;;;:29;;14988:5;14965:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;14944:18:0;;;;;;:9;:18;;;;;;;;:50;;;;15010:36;;;;;;;14944:18;;15010:36;;;;;;;;;;;14748:306;;:::o;17053:203::-;17125:4;-1:-1:-1;;;;;17150:21:0;;17142:68;;;;-1:-1:-1;;;;;17142:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17228:20:0;:11;:20;;;;;;;;;;;;;;;17053:203::o;16014:188::-;16086:22;16092:7;16101:6;16086:5;:22::i;:::-;-1:-1:-1;;;;;16149:20:0;;;;;;:11;:20;;;;;;;;16137:10;16149:32;;;;;;;;;16119:75;;16128:7;;16149:44;;16186:6;16149:44;:36;:44;:::i;18052:122::-;18109:21;:8;18122:7;18109:21;:12;:21;:::i;:::-;18146:20;;-1:-1:-1;;;;;18146:20:0;;;;;;;;18052:122;:::o;24523:128::-;24582:23;:10;24597:7;24582:23;:14;:23;:::i;:::-;24621:22;;-1:-1:-1;;;;;24621:22:0;;;;;;;;24523:128;:::o;5868:184::-;5926:7;5959:1;5954;:6;;5946:49;;;;;-1:-1:-1;;;;;5946:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6018:5:0;;;5868:184::o;10199:156::-;10268:4;10285:40;10295:10;10307:9;10318:6;10285:9;:40::i;22864:229::-;-1:-1:-1;;;;;22938:22:0;;22930:73;;;;-1:-1:-1;;;;;22930:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23040:6;;23019:38;;-1:-1:-1;;;;;23019:38:0;;;;23040:6;;23019:38;;23040:6;;23019:38;23068:6;:17;;-1:-1:-1;;;;;;23068:17:0;-1:-1:-1;;;;;23068:17:0;;;;;;;;;;22864:229::o;13398:429::-;-1:-1:-1;;;;;13496:20:0;;13488:70;;;;-1:-1:-1;;;;;13488:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13577:23:0;;13569:71;;;;-1:-1:-1;;;;;13569:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13673:17:0;;;;;;:9;:17;;;;;;:29;;13695:6;13673:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;13653:17:0;;;;;;;:9;:17;;;;;;:49;;;;13736:20;;;;;;;:32;;13761:6;13736:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13713:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;13784:35;;;;;;;13713:20;;13784:35;;;;;;;;;;;;;13398:429;;;:::o;16775:183::-;16855:18;16859:4;16865:7;16855:3;:18::i;:::-;16847:64;;;;-1:-1:-1;;;;;16847:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16922:20:0;16945:5;16922:20;;;;;;;;;;;:28;;-1:-1:-1;;16922:28:0;;;16775:183::o;19786:::-;19889:4;;19861:24;19879:5;19861:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;19853:70;;;;;-1:-1:-1;;;;;19853:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19934:27;19946:7;19955:5;19934:11;:27::i;16517:178::-;16595:18;16599:4;16605:7;16595:3;:18::i;:::-;16594:19;16586:63;;;;;-1:-1:-1;;;;;16586:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16660:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16660:27:0;16683:4;16660:27;;;16517:178::o;14108:308::-;-1:-1:-1;;;;;14184:21:0;;14176:65;;;;;-1:-1:-1;;;;;14176:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14269:12;;:24;;14286:6;14269:24;:16;:24;:::i;:::-;14254:12;:39;-1:-1:-1;;;;;14325:18:0;;;;;;:9;:18;;;;;;:30;;14348:6;14325:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;14304:18:0;;;;;;:9;:18;;;;;;;;:51;;;;14371:37;;;;;;;14304:18;;;;14371:37;;;;;;;;;;14108:308;;:::o
Swarm Source
bzzr://eb2cec6a0c7b5c43000b65acad6e8ca4c8dd763b7a0aadc7753c9d5950b42b79
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.