Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Source Code
Overview
Max Total Supply
250,003,477.150029 DVZ
Holders
1
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
DeviseToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-08-13
*/
pragma solidity ^0.4.23;
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
// File: openzeppelin-solidity/contracts/math/SafeMath.sol
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return a / b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
c = a + b;
assert(c >= a);
return c;
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) balances;
uint256 totalSupply_;
/**
* @dev total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public view returns (uint256) {
return balances[_owner];
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender)
public view returns (uint256);
function transferFrom(address from, address to, uint256 value)
public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(
address _from,
address _to,
uint256 _value
)
public
returns (bool)
{
require(_to != address(0));
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
*
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(
address _owner,
address _spender
)
public
view
returns (uint256)
{
return allowed[_owner][_spender];
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
*
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(
address _spender,
uint _addedValue
)
public
returns (bool)
{
allowed[msg.sender][_spender] = (
allowed[msg.sender][_spender].add(_addedValue));
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
*
* approve should be called when allowed[_spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseApproval(
address _spender,
uint _subtractedValue
)
public
returns (bool)
{
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
// File: openzeppelin-solidity/contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipRenounced(address indexed previousOwner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
/**
* @dev Allows the current owner to relinquish control of the contract.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipRenounced(owner);
owner = address(0);
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
modifier hasMintPermission() {
require(msg.sender == owner);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(
address _to,
uint256 _amount
)
hasMintPermission
canMint
public
returns (bool)
{
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() onlyOwner canMint public returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
}
// File: openzeppelin-solidity/contracts/ownership/rbac/Roles.sol
/**
* @title Roles
* @author Francisco Giordano (@frangio)
* @dev Library for managing addresses assigned to a Role.
* See RBAC.sol for example usage.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev give an address access to this role
*/
function add(Role storage role, address addr)
internal
{
role.bearer[addr] = true;
}
/**
* @dev remove an address' access to this role
*/
function remove(Role storage role, address addr)
internal
{
role.bearer[addr] = false;
}
/**
* @dev check if an address has this role
* // reverts
*/
function check(Role storage role, address addr)
view
internal
{
require(has(role, addr));
}
/**
* @dev check if an address has this role
* @return bool
*/
function has(Role storage role, address addr)
view
internal
returns (bool)
{
return role.bearer[addr];
}
}
// File: openzeppelin-solidity/contracts/ownership/rbac/RBAC.sol
/**
* @title RBAC (Role-Based Access Control)
* @author Matt Condon (@Shrugs)
* @dev Stores and provides setters and getters for roles and addresses.
* @dev Supports unlimited numbers of roles and addresses.
* @dev See //contracts/mocks/RBACMock.sol for an example of usage.
* This RBAC method uses strings to key roles. It may be beneficial
* for you to write your own implementation of this interface using Enums or similar.
* It's also recommended that you define constants in the contract, like ROLE_ADMIN below,
* to avoid typos.
*/
contract RBAC {
using Roles for Roles.Role;
mapping (string => Roles.Role) private roles;
event RoleAdded(address addr, string roleName);
event RoleRemoved(address addr, string roleName);
/**
* @dev reverts if addr does not have role
* @param addr address
* @param roleName the name of the role
* // reverts
*/
function checkRole(address addr, string roleName)
view
public
{
roles[roleName].check(addr);
}
/**
* @dev determine if addr has role
* @param addr address
* @param roleName the name of the role
* @return bool
*/
function hasRole(address addr, string roleName)
view
public
returns (bool)
{
return roles[roleName].has(addr);
}
/**
* @dev add a role to an address
* @param addr address
* @param roleName the name of the role
*/
function addRole(address addr, string roleName)
internal
{
roles[roleName].add(addr);
emit RoleAdded(addr, roleName);
}
/**
* @dev remove a role from an address
* @param addr address
* @param roleName the name of the role
*/
function removeRole(address addr, string roleName)
internal
{
roles[roleName].remove(addr);
emit RoleRemoved(addr, roleName);
}
/**
* @dev modifier to scope access to a single role (uses msg.sender as addr)
* @param roleName the name of the role
* // reverts
*/
modifier onlyRole(string roleName)
{
checkRole(msg.sender, roleName);
_;
}
/**
* @dev modifier to scope access to a set of roles (uses msg.sender as addr)
* @param roleNames the names of the roles to scope access to
* // reverts
*
* @TODO - when solidity supports dynamic arrays as arguments to modifiers, provide this
* see: https://github.com/ethereum/solidity/issues/2467
*/
// modifier onlyRoles(string[] roleNames) {
// bool hasAnyRole = false;
// for (uint8 i = 0; i < roleNames.length; i++) {
// if (hasRole(msg.sender, roleNames[i])) {
// hasAnyRole = true;
// break;
// }
// }
// require(hasAnyRole);
// _;
// }
}
// File: contracts/RBACMintableToken.sol
// This contract is adapted from RBACMintableToken by OpenZeppelin
pragma solidity ^0.4.19;
/**
* @title RBACMintableToken
* @author Vittorio Minacori (@vittominacori)
* @dev Mintable Token, with RBAC minter permissions
*/
contract RBACMintableToken is MintableToken, RBAC {
/**
* A constant role name for indicating minters.
*/
string public constant ROLE_MINTER = "minter";
address[] internal minters;
/**
* @dev override the Mintable token modifier to add role based logic
*/
modifier hasMintPermission() {
checkRole(msg.sender, ROLE_MINTER);
_;
}
/**
* @dev add a minter role to an address
* @param minter address
*/
function addMinter(address minter) onlyOwner public {
if (!hasRole(minter, ROLE_MINTER))
minters.push(minter);
addRole(minter, ROLE_MINTER);
}
/**
* @dev remove a minter role from an address
* @param minter address
*/
function removeMinter(address minter) onlyOwner public {
removeRole(minter, ROLE_MINTER);
removeMinterByValue(minter);
}
function getNumberOfMinters() onlyOwner public view returns (uint) {
return minters.length;
}
function getMinter(uint _index) onlyOwner public view returns (address) {
require(_index < minters.length);
return minters[_index];
}
function removeMinterByIndex(uint index) internal {
require(minters.length > 0);
if (minters.length > 1) {
minters[index] = minters[minters.length - 1];
// recover gas
delete (minters[minters.length - 1]);
}
minters.length--;
}
function removeMinterByValue(address _client) internal {
for (uint i = 0; i < minters.length; i++) {
if (minters[i] == _client) {
removeMinterByIndex(i);
break;
}
}
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is BasicToken {
event Burn(address indexed burner, uint256 value);
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public {
_burn(msg.sender, _value);
}
function _burn(address _who, uint256 _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
}
// File: contracts/CappedToken.sol
// This contract is adapted from CappedToken by OpenZeppelin
pragma solidity ^0.4.19;
/**
* @title Capped token
* @dev Mintable token with a token cap.
*/
contract CappedToken is MintableToken {
uint256 public cap;
constructor(uint256 _cap) public {
require(_cap > 0);
cap = _cap;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(
address _to,
uint256 _amount
)
hasMintPermission
canMint
public
returns (bool)
{
require(totalSupply_.add(_amount) <= cap);
return super.mint(_to, _amount);
}
}
// File: contracts/DeviseToken.sol
contract DeviseToken is CappedToken, BurnableToken, RBACMintableToken {
string public name = "DEVISE";
string public symbol = "DVZ";
// The pricision is set to micro DVZ
uint8 public decimals = 6;
function DeviseToken(uint256 _cap) public
CappedToken(_cap) {
addMinter(owner);
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
removeMinter(owner);
addMinter(newOwner);
super.transferOwnership(newOwner);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"hasRole","outputs":[{"name":"","type":"bool"}],"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":"minter","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":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getNumberOfMinters","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":"ROLE_MINTER","outputs":[{"name":"","type":"string"}],"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":"minter","type":"address"}],"name":"addMinter","outputs":[],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_cap","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"roleName","type":"string"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"roleName","type":"string"}],"name":"RoleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]Contract Creation Code
6003805460a060020a60ff021916905560c0604052600660808190527f444556495345000000000000000000000000000000000000000000000000000060a09081526200005091600791906200041d565b506040805180820190915260038082527f44565a0000000000000000000000000000000000000000000000000000000000602090920191825262000097916008916200041d565b506009805460ff19166006179055348015620000b257600080fd5b5060405160208062001a98833981016040525160038054600160a060020a031916331790558060008111620000e657600080fd5b6004556003546200010990600160a060020a031664010000000062000110810204565b50620004c2565b600354600160a060020a031633146200012857600080fd5b62000178816040805190810160405280600681526020017f6d696e74657200000000000000000000000000000000000000000000000000008152506200021e640100000000026401000000009004565b1515620001cb57600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f018054600160a060020a031916600160a060020a0383161790555b6200021b816040805190810160405280600681526020017f6d696e7465720000000000000000000000000000000000000000000000000000815250620002a3640100000000026401000000009004565b50565b60006200029c836005846040518082805190602001908083835b60208310620002595780518252601f19909201916020918201910162000238565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050640100000000620003d9810262000ef31704565b9392505050565b6200031f826005836040518082805190602001908083835b60208310620002dc5780518252601f199092019160209182019101620002bb565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050640100000000620003f88102620014ee1704565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015620003995781810151838201526020016200037f565b50505050905090810190601f168015620003c75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046057805160ff191683800117855562000490565b8280016001018555821562000490579182015b828111156200049057825182559160200191906001019062000473565b506200049e929150620004a2565b5090565b620004bf91905b808211156200049e5760008155600101620004a9565b90565b6115c680620004d26000396000f30060806040526004361061013a5763ffffffff60e060020a60003504166305d2035b811461013f57806306fdde0314610168578063095ea7b3146101f25780630988ca8c1461021657806318160ddd1461027f578063217fe6c6146102a657806323b872dd1461030d5780633092afd514610337578063313ce56714610358578063355274ea1461038357806340c10f191461039857806342966c68146103bc5780635b7121f8146103d4578063661884631461040857806370a082311461042c578063715018a61461044d5780637d64bcb41461046257806386cd71be146104775780638da5cb5b1461048c57806392afc33a146104a157806395d89b41146104b6578063983b2d56146104cb578063a9059cbb146104ec578063d73dd62314610510578063dd62ed3e14610534578063f2fde38b1461055b575b600080fd5b34801561014b57600080fd5b5061015461057c565b604080519115158252519081900360200190f35b34801561017457600080fd5b5061017d61058c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b757818101518382015260200161019f565b50505050905090810190601f1680156101e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101fe57600080fd5b50610154600160a060020a036004351660243561061a565b34801561022257600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261027d958335600160a060020a031695369560449491939091019190819084018382808284375094975061066e9650505050505050565b005b34801561028b57600080fd5b506102946106dc565b60408051918252519081900360200190f35b3480156102b257600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610154958335600160a060020a03169536956044949193909101919081908401838280828437509497506106e39650505050505050565b34801561031957600080fd5b50610154600160a060020a0360043581169060243516604435610756565b34801561034357600080fd5b5061027d600160a060020a03600435166108bb565b34801561036457600080fd5b5061036d610909565b6040805160ff9092168252519081900360200190f35b34801561038f57600080fd5b50610294610912565b3480156103a457600080fd5b50610154600160a060020a0360043516602435610918565b3480156103c857600080fd5b5061027d600435610987565b3480156103e057600080fd5b506103ec600435610991565b60408051600160a060020a039092168252519081900360200190f35b34801561041457600080fd5b50610154600160a060020a03600435166024356109e2565b34801561043857600080fd5b50610294600160a060020a0360043516610ac0565b34801561045957600080fd5b5061027d610adb565b34801561046e57600080fd5b50610154610b3c565b34801561048357600080fd5b50610294610bb2565b34801561049857600080fd5b506103ec610bd3565b3480156104ad57600080fd5b5061017d610be2565b3480156104c257600080fd5b5061017d610c05565b3480156104d757600080fd5b5061027d600160a060020a0360043516610c60565b3480156104f857600080fd5b50610154600160a060020a0360043516602435610d1f565b34801561051c57600080fd5b50610154600160a060020a0360043516602435610dee565b34801561054057600080fd5b50610294600160a060020a0360043581169060243516610e75565b34801561056757600080fd5b5061027d600160a060020a0360043516610ea0565b60035460a060020a900460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a0387168085529083528184208690558151868152915193949093909260008051602061157b833981519152928290030190a350600192915050565b6106d8826005836040518082805190602001908083835b602083106106a45780518252601f199092019160209182019101610685565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610ede565b5050565b6001545b90565b600061074f836005846040518082805190602001908083835b6020831061071b5780518252601f1990920191602091820191016106fc565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610ef3565b9392505050565b6000600160a060020a038316151561076d57600080fd5b600160a060020a03841660009081526020819052604090205482111561079257600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156107c257600080fd5b600160a060020a0384166000908152602081905260409020546107eb908363ffffffff610f1216565b600160a060020a038086166000908152602081905260408082209390935590851681522054610820908363ffffffff610f2416565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610862908363ffffffff610f1216565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061155b833981519152929181900390910190a35060019392505050565b600354600160a060020a031633146108d257600080fd5b6108fd8160408051908101604052806006815260200160d160020a6536b4b73a32b902815250610f37565b61090681611058565b50565b60095460ff1681565b60045481565b60006109453360408051908101604052806006815260200160d160020a6536b4b73a32b90281525061066e565b60035460a060020a900460ff161561095c57600080fd5b600454600154610972908463ffffffff610f2416565b111561097d57600080fd5b61074f83836110af565b61090633826111ba565b600354600090600160a060020a031633146109ab57600080fd5b60065482106109b957600080fd5b60068054839081106109c757fe5b600091825260209091200154600160a060020a031692915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a3757336000908152600260209081526040808320600160a060020a0388168452909152812055610a6c565b610a47818463ffffffff610f1216565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a03891680855290835292819020548151908152905192939260008051602061157b833981519152929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610af257600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a260038054600160a060020a0319169055565b600354600090600160a060020a03163314610b5657600080fd5b60035460a060020a900460ff1615610b6d57600080fd5b6003805460a060020a60ff02191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600090600160a060020a03163314610bcc57600080fd5b5060065490565b600354600160a060020a031681565b604080518082019091526006815260d160020a6536b4b73a32b902602082015281565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106125780601f106105e757610100808354040283529160200191610612565b600354600160a060020a03163314610c7757600080fd5b610ca28160408051908101604052806006815260200160d160020a6536b4b73a32b9028152506106e3565b1515610cf457600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f018054600160a060020a031916600160a060020a0383161790555b6109068160408051908101604052806006815260200160d160020a6536b4b73a32b9028152506112a9565b6000600160a060020a0383161515610d3657600080fd5b33600090815260208190526040902054821115610d5257600080fd5b33600090815260208190526040902054610d72908363ffffffff610f1216565b3360009081526020819052604080822092909255600160a060020a03851681522054610da4908363ffffffff610f2416565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061155b8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610e22908363ffffffff610f2416565b336000818152600260209081526040808320600160a060020a03891680855290835292819020859055805194855251919360008051602061157b833981519152929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610eb757600080fd5b600354610ecc90600160a060020a03166108bb565b610ed581610c60565b6109068161138a565b610ee88282610ef3565b15156106d857600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b600082821115610f1e57fe5b50900390565b81810182811015610f3157fe5b92915050565b610fa1826005836040518082805190602001908083835b60208310610f6d5780518252601f199092019160209182019101610f4e565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611412565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611019578181015183820152602001611001565b50505050905090810190601f1680156110465780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b60005b6006548110156106d85781600160a060020a031660068281548110151561107e57fe5b600091825260209091200154600160a060020a031614156110a7576110a281611434565b6106d8565b60010161105b565b60006110dc3360408051908101604052806006815260200160d160020a6536b4b73a32b90281525061066e565b60035460a060020a900460ff16156110f357600080fd5b600154611106908363ffffffff610f2416565b600155600160a060020a038316600090815260208190526040902054611132908363ffffffff610f2416565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602061155b8339815191529181900360200190a350600192915050565b600160a060020a0382166000908152602081905260409020548111156111df57600080fd5b600160a060020a038216600090815260208190526040902054611208908263ffffffff610f1216565b600160a060020a038316600090815260208190526040902055600154611234908263ffffffff610f1216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061155b8339815191529181900360200190a35050565b611313826005836040518082805190602001908083835b602083106112df5780518252601f1990920191602091820191016112c0565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506114ee565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383600083811015611019578181015183820152602001611001565b600354600160a060020a031633146113a157600080fd5b600160a060020a03811615156113b657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360038054600160a060020a031916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b60065460001061144357600080fd5b600654600110156114db5760068054600019810190811061146057fe5b60009182526020909120015460068054600160a060020a03909216918390811061148657fe5b60009182526020909120018054600160a060020a031916600160a060020a03929092169190911790556006805460001981019081106114c157fe5b60009182526020909120018054600160a060020a03191690555b60068054906106d8906000198301611513565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b8154818355818111156115375760008381526020902061153791810190830161153c565b505050565b6106e091905b808211156115565760008155600101611542565b50905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a7230582045a3f76d9a841630e3bf61ceec2a2c8d6ca9c68c5c1f60c5cf36d62ced633a5f0029000000000000000000000000000000000000000000000000002386f26fc10000
Deployed Bytecode
0x60806040526004361061013a5763ffffffff60e060020a60003504166305d2035b811461013f57806306fdde0314610168578063095ea7b3146101f25780630988ca8c1461021657806318160ddd1461027f578063217fe6c6146102a657806323b872dd1461030d5780633092afd514610337578063313ce56714610358578063355274ea1461038357806340c10f191461039857806342966c68146103bc5780635b7121f8146103d4578063661884631461040857806370a082311461042c578063715018a61461044d5780637d64bcb41461046257806386cd71be146104775780638da5cb5b1461048c57806392afc33a146104a157806395d89b41146104b6578063983b2d56146104cb578063a9059cbb146104ec578063d73dd62314610510578063dd62ed3e14610534578063f2fde38b1461055b575b600080fd5b34801561014b57600080fd5b5061015461057c565b604080519115158252519081900360200190f35b34801561017457600080fd5b5061017d61058c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b757818101518382015260200161019f565b50505050905090810190601f1680156101e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101fe57600080fd5b50610154600160a060020a036004351660243561061a565b34801561022257600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261027d958335600160a060020a031695369560449491939091019190819084018382808284375094975061066e9650505050505050565b005b34801561028b57600080fd5b506102946106dc565b60408051918252519081900360200190f35b3480156102b257600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610154958335600160a060020a03169536956044949193909101919081908401838280828437509497506106e39650505050505050565b34801561031957600080fd5b50610154600160a060020a0360043581169060243516604435610756565b34801561034357600080fd5b5061027d600160a060020a03600435166108bb565b34801561036457600080fd5b5061036d610909565b6040805160ff9092168252519081900360200190f35b34801561038f57600080fd5b50610294610912565b3480156103a457600080fd5b50610154600160a060020a0360043516602435610918565b3480156103c857600080fd5b5061027d600435610987565b3480156103e057600080fd5b506103ec600435610991565b60408051600160a060020a039092168252519081900360200190f35b34801561041457600080fd5b50610154600160a060020a03600435166024356109e2565b34801561043857600080fd5b50610294600160a060020a0360043516610ac0565b34801561045957600080fd5b5061027d610adb565b34801561046e57600080fd5b50610154610b3c565b34801561048357600080fd5b50610294610bb2565b34801561049857600080fd5b506103ec610bd3565b3480156104ad57600080fd5b5061017d610be2565b3480156104c257600080fd5b5061017d610c05565b3480156104d757600080fd5b5061027d600160a060020a0360043516610c60565b3480156104f857600080fd5b50610154600160a060020a0360043516602435610d1f565b34801561051c57600080fd5b50610154600160a060020a0360043516602435610dee565b34801561054057600080fd5b50610294600160a060020a0360043581169060243516610e75565b34801561056757600080fd5b5061027d600160a060020a0360043516610ea0565b60035460a060020a900460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a0387168085529083528184208690558151868152915193949093909260008051602061157b833981519152928290030190a350600192915050565b6106d8826005836040518082805190602001908083835b602083106106a45780518252601f199092019160209182019101610685565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610ede565b5050565b6001545b90565b600061074f836005846040518082805190602001908083835b6020831061071b5780518252601f1990920191602091820191016106fc565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610ef3565b9392505050565b6000600160a060020a038316151561076d57600080fd5b600160a060020a03841660009081526020819052604090205482111561079257600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156107c257600080fd5b600160a060020a0384166000908152602081905260409020546107eb908363ffffffff610f1216565b600160a060020a038086166000908152602081905260408082209390935590851681522054610820908363ffffffff610f2416565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610862908363ffffffff610f1216565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061155b833981519152929181900390910190a35060019392505050565b600354600160a060020a031633146108d257600080fd5b6108fd8160408051908101604052806006815260200160d160020a6536b4b73a32b902815250610f37565b61090681611058565b50565b60095460ff1681565b60045481565b60006109453360408051908101604052806006815260200160d160020a6536b4b73a32b90281525061066e565b60035460a060020a900460ff161561095c57600080fd5b600454600154610972908463ffffffff610f2416565b111561097d57600080fd5b61074f83836110af565b61090633826111ba565b600354600090600160a060020a031633146109ab57600080fd5b60065482106109b957600080fd5b60068054839081106109c757fe5b600091825260209091200154600160a060020a031692915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a3757336000908152600260209081526040808320600160a060020a0388168452909152812055610a6c565b610a47818463ffffffff610f1216565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a03891680855290835292819020548151908152905192939260008051602061157b833981519152929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610af257600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a260038054600160a060020a0319169055565b600354600090600160a060020a03163314610b5657600080fd5b60035460a060020a900460ff1615610b6d57600080fd5b6003805460a060020a60ff02191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600090600160a060020a03163314610bcc57600080fd5b5060065490565b600354600160a060020a031681565b604080518082019091526006815260d160020a6536b4b73a32b902602082015281565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106125780601f106105e757610100808354040283529160200191610612565b600354600160a060020a03163314610c7757600080fd5b610ca28160408051908101604052806006815260200160d160020a6536b4b73a32b9028152506106e3565b1515610cf457600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f018054600160a060020a031916600160a060020a0383161790555b6109068160408051908101604052806006815260200160d160020a6536b4b73a32b9028152506112a9565b6000600160a060020a0383161515610d3657600080fd5b33600090815260208190526040902054821115610d5257600080fd5b33600090815260208190526040902054610d72908363ffffffff610f1216565b3360009081526020819052604080822092909255600160a060020a03851681522054610da4908363ffffffff610f2416565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061155b8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610e22908363ffffffff610f2416565b336000818152600260209081526040808320600160a060020a03891680855290835292819020859055805194855251919360008051602061157b833981519152929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610eb757600080fd5b600354610ecc90600160a060020a03166108bb565b610ed581610c60565b6109068161138a565b610ee88282610ef3565b15156106d857600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b600082821115610f1e57fe5b50900390565b81810182811015610f3157fe5b92915050565b610fa1826005836040518082805190602001908083835b60208310610f6d5780518252601f199092019160209182019101610f4e565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611412565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611019578181015183820152602001611001565b50505050905090810190601f1680156110465780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b60005b6006548110156106d85781600160a060020a031660068281548110151561107e57fe5b600091825260209091200154600160a060020a031614156110a7576110a281611434565b6106d8565b60010161105b565b60006110dc3360408051908101604052806006815260200160d160020a6536b4b73a32b90281525061066e565b60035460a060020a900460ff16156110f357600080fd5b600154611106908363ffffffff610f2416565b600155600160a060020a038316600090815260208190526040902054611132908363ffffffff610f2416565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602061155b8339815191529181900360200190a350600192915050565b600160a060020a0382166000908152602081905260409020548111156111df57600080fd5b600160a060020a038216600090815260208190526040902054611208908263ffffffff610f1216565b600160a060020a038316600090815260208190526040902055600154611234908263ffffffff610f1216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061155b8339815191529181900360200190a35050565b611313826005836040518082805190602001908083835b602083106112df5780518252601f1990920191602091820191016112c0565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506114ee565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383600083811015611019578181015183820152602001611001565b600354600160a060020a031633146113a157600080fd5b600160a060020a03811615156113b657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360038054600160a060020a031916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b60065460001061144357600080fd5b600654600110156114db5760068054600019810190811061146057fe5b60009182526020909120015460068054600160a060020a03909216918390811061148657fe5b60009182526020909120018054600160a060020a031916600160a060020a03929092169190911790556006805460001981019081106114c157fe5b60009182526020909120018054600160a060020a03191690555b60068054906106d8906000198301611513565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b8154818355818111156115375760008381526020902061153791810190830161153c565b505050565b6106e091905b808211156115565760008155600101611542565b50905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a7230582045a3f76d9a841630e3bf61ceec2a2c8d6ca9c68c5c1f60c5cf36d62ced633a5f0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000002386f26fc10000
-----Decoded View---------------
Arg [0] : _cap (uint256): 10000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Swarm Source
bzzr://45a3f76d9a841630e3bf61ceec2a2c8d6ca9c68c5c1f60c5cf36d62ced633a5f
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.
Add Token to MetaMask (Web3)