ETH Price: $3,083.67 (-0.63%)
Gas: 2 Gwei

Token

ArdCoin (ARDX)
 

Overview

Max Total Supply

5,158,308,000 ARDX

Holders

1,927

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ArdCoin

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion

Contract Source Code (Solidity Multiple files format)

File 1 of 9: ArdCoin.sol
pragma solidity ^0.4.21;

// ----------------------------------------------------------------------------
// 'ARDCOIN' STO contract
//
// Symbol      : ARDMN
// Name        : ArdCoin STO
// Total supply: 1,000,000,000.00
// Decimals    : 2
//
// (c) Atu @ DataScience.mn Ltd 2018. The MIT License.
// ----------------------------------------------------------------------------

import "./StandardToken.sol";
import "./BurnableToken.sol";
import "./MintableToken.sol";
contract ArdCoin is StandardToken, MintableToken, BurnableToken  {
  string public symbol;
  string public name;
  uint8 public decimals;

  constructor(string _symbol, string _name, uint256 _supply, uint8 _decimals) public {
    symbol = _symbol;
    name = _name;
    decimals = _decimals;
    totalSupply_ = _supply * 10**uint(decimals);
    balances[msg.sender] = totalSupply_;
    emit Transfer(address(0), msg.sender, totalSupply_);
  }
}

File 2 of 9: BasicToken.sol
pragma solidity ^0.4.21;


import "./ERC20Basic.sol";
import "./SafeMath.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 3 of 9: BurnableToken.sol
pragma solidity ^0.4.21;

import "./BasicToken.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 4 of 9: ERC20.sol
pragma solidity ^0.4.21;

import "./ERC20Basic.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 5 of 9: ERC20Basic.sol
pragma solidity ^0.4.21;

/**
 * @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 6 of 9: MintableToken.sol
pragma solidity ^0.4.21;

import "./StandardToken.sol";
import "./Ownable.sol";

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-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();
  event MintOpened();

  bool public mintingFinished = false;

  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @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) onlyOwner 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;
  }

  /**
   * @dev Function to continue minting new tokens.
   * @return True if the operation was successful.
   */
  function openMinting() onlyOwner public returns (bool) {
    mintingFinished = false;
    emit MintOpened();
    return true;
  }
}

File 7 of 9: Ownable.sol
pragma solidity ^0.4.21;


/**
 * @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 OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() 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;
  }

}

File 8 of 9: SafeMath.sol
pragma solidity ^0.4.21;


/**
 * @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 9 of 9: StandardToken.sol
pragma solidity ^0.4.21;

import "./BasicToken.sol";
import "./ERC20.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;
  }

}

Contract Security Audit

Contract ABI

[{"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":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"openMinting","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":"finishMinting","outputs":[{"name":"","type":"bool"}],"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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"_symbol","type":"string"},{"name":"_name","type":"string"},{"name":"_supply","type":"uint256"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"MintOpened","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"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b50604051610f25380380610f25833981016040908152815160208084015192840151606085015160038054600160a060020a03191633179055928501805190959490940193909291610077916004918701906100fc565b50825161008b9060059060208601906100fc565b506006805460ff191660ff838116919091179182905516600a0a8202600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350505050610197565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013d57805160ff191683800117855561016a565b8280016001018555821561016a579182015b8281111561016a57825182559160200191906001019061014f565b5061017692915061017a565b5090565b61019491905b808211156101765760008155600101610180565b90565b610d7f806101a66000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010057806306fdde0314610129578063095ea7b3146101b357806318160ddd146101d757806323b872dd146101fe578063313ce5671461022857806340c10f191461025357806342966c681461027757806366188463146102915780636ba9fd38146102b557806370a08231146102ca5780637d64bcb4146102eb5780638da5cb5b1461030057806395d89b4114610331578063a9059cbb14610346578063d73dd6231461036a578063dd62ed3e1461038e578063f2fde38b146103b5575b600080fd5b34801561010c57600080fd5b506101156103d6565b604080519115158252519081900360200190f35b34801561013557600080fd5b5061013e6103f7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610178578181015183820152602001610160565b50505050905090810190601f1680156101a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bf57600080fd5b50610115600160a060020a0360043516602435610485565b3480156101e357600080fd5b506101ec6104eb565b60408051918252519081900360200190f35b34801561020a57600080fd5b50610115600160a060020a03600435811690602435166044356104f1565b34801561023457600080fd5b5061023d610656565b6040805160ff9092168252519081900360200190f35b34801561025f57600080fd5b50610115600160a060020a036004351660243561065f565b34801561028357600080fd5b5061028f600435610768565b005b34801561029d57600080fd5b50610115600160a060020a0360043516602435610775565b3480156102c157600080fd5b50610115610865565b3480156102d657600080fd5b506101ec600160a060020a03600435166108cc565b3480156102f757600080fd5b506101156108e7565b34801561030c57600080fd5b5061031561098d565b60408051600160a060020a039092168252519081900360200190f35b34801561033d57600080fd5b5061013e61099c565b34801561035257600080fd5b50610115600160a060020a03600435166024356109f7565b34801561037657600080fd5b50610115600160a060020a0360043516602435610ac6565b34801561039a57600080fd5b506101ec600160a060020a0360043581169060243516610b5f565b3480156103c157600080fd5b5061028f600160a060020a0360043516610b8a565b60035474010000000000000000000000000000000000000000900460ff1681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561050857600080fd5b600160a060020a03841660009081526020819052604090205482111561052d57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561055d57600080fd5b600160a060020a038416600090815260208190526040902054610586908363ffffffff610c1f16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546105bb908363ffffffff610c3116565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546105fd908363ffffffff610c1f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610d34833981519152929181900390910190a35060019392505050565b60065460ff1681565b600354600090600160a060020a0316331461067957600080fd5b60035474010000000000000000000000000000000000000000900460ff16156106a157600080fd5b6001546106b4908363ffffffff610c3116565b600155600160a060020a0383166000908152602081905260409020546106e0908363ffffffff610c3116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610d348339815191529181900360200190a350600192915050565b6107723382610c44565b50565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107ca57336000908152600260209081526040808320600160a060020a03881684529091528120556107ff565b6107da818463ffffffff610c1f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600090600160a060020a0316331461087f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f4301b55b3d4fd9018308a6bd66bf37880623a9548566d1b12867ab619a993ca190600090a150600190565b600160a060020a031660009081526020819052604090205490565b600354600090600160a060020a0316331461090157600080fd5b60035474010000000000000000000000000000000000000000900460ff161561092957600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b6000600160a060020a0383161515610a0e57600080fd5b33600090815260208190526040902054821115610a2a57600080fd5b33600090815260208190526040902054610a4a908363ffffffff610c1f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610a7c908363ffffffff610c3116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610d348339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610afa908363ffffffff610c3116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ba157600080fd5b600160a060020a0381161515610bb657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c2b57fe5b50900390565b81810182811015610c3e57fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610c6957600080fd5b600160a060020a038216600090815260208190526040902054610c92908263ffffffff610c1f16565b600160a060020a038316600090815260208190526040902055600154610cbe908263ffffffff610c1f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020610d348339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e9da63c376418a494f5cbd0357256721be8948c7ed61815ebfa8a6daa92ed0010029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000001337588a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000441524458000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007417264436f696e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010057806306fdde0314610129578063095ea7b3146101b357806318160ddd146101d757806323b872dd146101fe578063313ce5671461022857806340c10f191461025357806342966c681461027757806366188463146102915780636ba9fd38146102b557806370a08231146102ca5780637d64bcb4146102eb5780638da5cb5b1461030057806395d89b4114610331578063a9059cbb14610346578063d73dd6231461036a578063dd62ed3e1461038e578063f2fde38b146103b5575b600080fd5b34801561010c57600080fd5b506101156103d6565b604080519115158252519081900360200190f35b34801561013557600080fd5b5061013e6103f7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610178578181015183820152602001610160565b50505050905090810190601f1680156101a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bf57600080fd5b50610115600160a060020a0360043516602435610485565b3480156101e357600080fd5b506101ec6104eb565b60408051918252519081900360200190f35b34801561020a57600080fd5b50610115600160a060020a03600435811690602435166044356104f1565b34801561023457600080fd5b5061023d610656565b6040805160ff9092168252519081900360200190f35b34801561025f57600080fd5b50610115600160a060020a036004351660243561065f565b34801561028357600080fd5b5061028f600435610768565b005b34801561029d57600080fd5b50610115600160a060020a0360043516602435610775565b3480156102c157600080fd5b50610115610865565b3480156102d657600080fd5b506101ec600160a060020a03600435166108cc565b3480156102f757600080fd5b506101156108e7565b34801561030c57600080fd5b5061031561098d565b60408051600160a060020a039092168252519081900360200190f35b34801561033d57600080fd5b5061013e61099c565b34801561035257600080fd5b50610115600160a060020a03600435166024356109f7565b34801561037657600080fd5b50610115600160a060020a0360043516602435610ac6565b34801561039a57600080fd5b506101ec600160a060020a0360043581169060243516610b5f565b3480156103c157600080fd5b5061028f600160a060020a0360043516610b8a565b60035474010000000000000000000000000000000000000000900460ff1681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561050857600080fd5b600160a060020a03841660009081526020819052604090205482111561052d57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561055d57600080fd5b600160a060020a038416600090815260208190526040902054610586908363ffffffff610c1f16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546105bb908363ffffffff610c3116565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546105fd908363ffffffff610c1f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610d34833981519152929181900390910190a35060019392505050565b60065460ff1681565b600354600090600160a060020a0316331461067957600080fd5b60035474010000000000000000000000000000000000000000900460ff16156106a157600080fd5b6001546106b4908363ffffffff610c3116565b600155600160a060020a0383166000908152602081905260409020546106e0908363ffffffff610c3116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610d348339815191529181900360200190a350600192915050565b6107723382610c44565b50565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107ca57336000908152600260209081526040808320600160a060020a03881684529091528120556107ff565b6107da818463ffffffff610c1f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600090600160a060020a0316331461087f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f4301b55b3d4fd9018308a6bd66bf37880623a9548566d1b12867ab619a993ca190600090a150600190565b600160a060020a031660009081526020819052604090205490565b600354600090600160a060020a0316331461090157600080fd5b60035474010000000000000000000000000000000000000000900460ff161561092957600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b6000600160a060020a0383161515610a0e57600080fd5b33600090815260208190526040902054821115610a2a57600080fd5b33600090815260208190526040902054610a4a908363ffffffff610c1f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610a7c908363ffffffff610c3116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610d348339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610afa908363ffffffff610c3116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ba157600080fd5b600160a060020a0381161515610bb657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c2b57fe5b50900390565b81810182811015610c3e57fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610c6957600080fd5b600160a060020a038216600090815260208190526040902054610c92908263ffffffff610c1f16565b600160a060020a038316600090815260208190526040902055600154610cbe908263ffffffff610c1f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020610d348339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e9da63c376418a494f5cbd0357256721be8948c7ed61815ebfa8a6daa92ed0010029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000001337588a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000441524458000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007417264436f696e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _symbol (string): ARDX
Arg [1] : _name (string): ArdCoin
Arg [2] : _supply (uint256): 5158308000
Arg [3] : _decimals (uint8): 2

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000001337588a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4152445800000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 417264436f696e00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

485:457:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537:35:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;537:35:5;;;;;;;;;;;;;;;;;;;;;;580:18:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;580:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;580:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1849:192:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1849:192:8;-1:-1:-1;;;;;1849:192:8;;;;;;;383:85:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;383:85:1;;;;;;;;;;;;;;;;;;;;760:454:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;760:454:8;-1:-1:-1;;;;;760:454:8;;;;;;;;;;;;603:21:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;603:21:0;;;;;;;;;;;;;;;;;;;;;;;888:280:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;888:280:5;-1:-1:-1;;;;;888:280:5;;;;;;;368:75:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;368:75:2;;;;;;;3705:412:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3705:412:8;-1:-1:-1;;;;;3705:412:8;;;;;;;1556:133:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1556:133:5;;;;1167:101:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1167:101:1;-1:-1:-1;;;;;1167:101:1;;;;;1288:144:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1288:144:5;;;;247:20:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;247:20:6;;;;;;;;-1:-1:-1;;;;;247:20:6;;;;;;;;;;;;;;555::0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;555:20:0;;;;629:329:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;629:329:1;-1:-1:-1;;;;;629:329:1;;;;;;;2965:266:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2965:266:8;-1:-1:-1;;;;;2965:266:8;;;;;;;2368:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2368:128:8;-1:-1:-1;;;;;2368:128:8;;;;;;;;;;867:178:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;867:178:6;-1:-1:-1;;;;;867:178:6;;;;;537:35:5;;;;;;;;;:::o;580:18:0:-;;;;;;;;;;;;;;;-1:-1:-1;;580:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1849:192:8:-;1937:10;1916:4;1929:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1929:29:8;;;;;;;;;;;:38;;;1979;;;;;;;1916:4;;1929:29;;1937:10;;1979:38;;;;;;;;-1:-1:-1;2031:4:8;1849:192;;;;:::o;383:85:1:-;450:12;;383:85;:::o;760:454:8:-;842:4;-1:-1:-1;;;;;863:17:8;;;;855:26;;;;;;-1:-1:-1;;;;;906:15:8;;:8;:15;;;;;;;;;;;896:25;;;888:34;;;;;;-1:-1:-1;;;;;947:14:8;;;;;;:7;:14;;;;;;;;962:10;947:26;;;;;;;;937:36;;;929:45;;;;;;-1:-1:-1;;;;;1001:15:8;;:8;:15;;;;;;;;;;;:27;;1021:6;1001:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;983:15:8;;;:8;:15;;;;;;;;;;;:45;;;;1051:13;;;;;;;:25;;1069:6;1051:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1035:13:8;;;:8;:13;;;;;;;;;;;:41;;;;1112:14;;;;;:7;:14;;;;;1127:10;1112:26;;;;;;;:38;;1143:6;1112:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;1083:14:8;;;;;;;:7;:14;;;;;;;;1098:10;1083:26;;;;;;;;:67;;;;1162:28;;;;;;;;;;;1083:14;;-1:-1:-1;;;;;;;;;;;1162:28:8;;;;;;;;;;-1:-1:-1;1204:4:8;760:454;;;;;:::o;603:21:0:-;;;;;;:::o;888:280:5:-;680:5:6;;966:4:5;;-1:-1:-1;;;;;680:5:6;666:10;:19;658:28;;;;;;614:15:5;;;;;;;613:16;605:25;;;;;;994:12;;:25;;1011:7;994:25;:16;:25;:::i;:::-;979:12;:40;-1:-1:-1;;;;;1042:13:5;;:8;:13;;;;;;;;;;;:26;;1060:7;1042:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;1026:13:5;;:8;:13;;;;;;;;;;;;:42;;;;1080:18;;;;;;;1026:13;;1080:18;;;;;;;;;1110:34;;;;;;;;-1:-1:-1;;;;;1110:34:5;;;1127:1;;-1:-1:-1;;;;;;;;;;;1110:34:5;;;;;;;;-1:-1:-1;1158:4:5;888:280;;;;:::o;368:75:2:-;412:25;418:10;430:6;412:5;:25::i;:::-;368:75;:::o;3705:412:8:-;3825:10;3788:4;3817:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3817:29:8;;;;;;;;;;3857:27;;;3853:168;;;3903:10;3927:1;3895:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3895:29:8;;;;;;;;;:33;3853:168;;;3983:30;:8;3996:16;3983:30;:12;:30;:::i;:::-;3959:10;3951:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3951:29:8;;;;;;;;;:62;3853:168;4041:10;4063:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4032:61:8;;4063:29;;;;;;;;;;;4032:61;;;;;;;;;4041:10;4032:61;;;;;;;;;;;-1:-1:-1;4107:4:8;;3705:412;-1:-1:-1;;;3705:412:8:o;1556:133:5:-;680:5:6;;1605:4:5;;-1:-1:-1;;;;;680:5:6;666:10;:19;658:28;;;;;;1618:15:5;:23;;-1:-1:-1;;1618:23:5;;;1653:12;;;;1636:5;;1653:12;-1:-1:-1;1679:4:5;1556:133;:::o;1167:101:1:-;-1:-1:-1;;;;;1246:16:1;1223:7;1246:16;;;;;;;;;;;;1167:101::o;1288:144:5:-;680:5:6;;1347:4:5;;-1:-1:-1;;;;;680:5:6;666:10;:19;658:28;;;;;;614:15:5;;;;;;;613:16;605:25;;;;;;1360:15;:22;;-1:-1:-1;;1360:22:5;;;;;1394:14;;;;1360:22;;1394:14;-1:-1:-1;1422:4:5;1288:144;:::o;247:20:6:-;;;-1:-1:-1;;;;;247:20:6;;:::o;555::0:-;;;;;;;;;;;;;;;-1:-1:-1;;555:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629:329:1;692:4;-1:-1:-1;;;;;713:17:1;;;;705:26;;;;;;765:10;756:8;:20;;;;;;;;;;;746:30;;;738:39;;;;;;818:10;809:8;:20;;;;;;;;;;;:32;;834:6;809:32;:24;:32;:::i;:::-;795:10;786:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;864:13:1;;;;;;:25;;882:6;864:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;848:13:1;;:8;:13;;;;;;;;;;;;:41;;;;901:33;;;;;;;848:13;;910:10;;-1:-1:-1;;;;;;;;;;;901:33:1;;;;;;;;;-1:-1:-1;948:4:1;629:329;;;;:::o;2965:266:8:-;3096:10;3043:4;3088:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3088:29:8;;;;;;;;;;:46;;3122:11;3088:46;:33;:46;:::i;:::-;3064:10;3056:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3056:29:8;;;;;;;;;;;;:78;;;3146:61;;;;;;3056:29;;3146:61;;;;;;;;;;;-1:-1:-1;3221:4:8;2965:266;;;;:::o;2368:128::-;-1:-1:-1;;;;;2465:15:8;;;2442:7;2465:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2368:128::o;867:178:6:-;680:5;;-1:-1:-1;;;;;680:5:6;666:10;:19;658:28;;;;;;-1:-1:-1;;;;;944:22:6;;;;936:31;;;;;;1000:5;;979:37;;-1:-1:-1;;;;;979:37:6;;;;1000:5;;979:37;;1000:5;;979:37;1023:5;:16;;-1:-1:-1;;1023:16:6;-1:-1:-1;;;;;1023:16:6;;;;;;;;;;867:178::o;870:113:7:-;928:7;951:6;;;;944:14;;;;-1:-1:-1;972:5:7;;;870:113::o;1050:127::-;1130:5;;;1149:6;;;;1142:14;;;;1050:127;;;;:::o;449:447:2:-;-1:-1:-1;;;;;528:14:2;;:8;:14;;;;;;;;;;;518:24;;;510:33;;;;;;-1:-1:-1;;;;;742:14:2;;:8;:14;;;;;;;;;;;:26;;761:6;742:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;725:14:2;;:8;:14;;;;;;;;;;:43;790:12;;:24;;807:6;790:24;:16;:24;:::i;:::-;775:12;:39;826:18;;;;;;;;-1:-1:-1;;;;;826:18:2;;;;;;;;;;;;;856:34;;;;;;;;879:1;;-1:-1:-1;;;;;856:34:2;;;-1:-1:-1;;;;;;;;;;;856:34:2;;;;;;;;449:447;;:::o

Swarm Source

bzzr://e9da63c376418a494f5cbd0357256721be8948c7ed61815ebfa8a6daa92ed001
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.