ERC-20
Source Code
Exchange
Overview
Max Total Supply
441,090,009,888 IEX
Holders
3,150 (0.00%)
Transfers
-
1
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Exchange
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-11-10
*/
//* International Exchange
//* What is the International Exchange?
//* The market’s most usable, compliant, and secure cryptocurrency exchange platform. *
////* Road Map International Exchange *
//1. Create Smart Contract <11/11/2018>
//// 2. Airdrop Open <11/11/2018 - 12/12/2018>
//// * > How to join airdrop International Exchange < *
////* ( Send 0 Eth to Contract) you get 500000 IEX
////* > Send more 0 eth get big bonus> Price 10Billion per ETH > End 12/12/2018 <
//3. Launch Website and Exchange < Feb 12,2019 >
//4. Added CoinMarketCap and CoinGecko
//5. List on more Exchange.
////> Target IEX list on Exchange <
// > 1. Binance < 2. Poloniex > < 3. Mercatox > < 4. IDEX > < 5. Hotbit > < 6. Huobi >
//6. Target Price $1 per token
//* What is IEX ?
//* IEX is a new cryptocurrency exchange platform designed to provide a customizable,
//tailor-made interface for traders of all experience levels. For newer investors, our exchange brings
//simplicity of a complex ecosystem, allowing users to confidently participate in the booming digital
//currency market.For experienced users who value speed, advanced trading capabilities, innovative
//features, and a customized user experience, our exchange provides market leading security and
//exclusive cutting-edge features.By leveraging the power of blockchain technology used by popular
//cryptocurrency exchanges we’ve developed an ecosystem which facilitates the exchange autonomously
//while providing enhanced security and liquidity features.
pragma solidity ^0.4.18;
library SafeMath {
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;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
c = a + b;
assert(c >= a);
return c;
}
}
contract AltcoinToken {
function balanceOf(address _owner) constant public returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
}
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) public constant returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract Exchange is ERC20 {
using SafeMath for uint256;
address owner = msg.sender;
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
mapping (address => bool) public blacklist;
string public constant name = "International Exchange";
string public constant symbol = "IEX";
uint public constant decimals = 18;
uint256 public totalSupply = 441090009888e18;
uint256 public tokenPerETH = 10000000000e18;
uint256 public valueToGive = 500000e18;
uint256 public totalDistributed = 0;
uint256 public totalRemaining = totalSupply.sub(totalDistributed);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
event Distr(address indexed to, uint256 amount);
event DistrFinished();
event Burn(address indexed burner, uint256 value);
bool public distributionFinished = false;
modifier canDistr() {
require(!distributionFinished);
_;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function Exchange () public {
owner = msg.sender;
uint256 teamtoken = 1000000000e18;
distr(owner, teamtoken);
}
function transferOwnership(address newOwner) onlyOwner public {
if (newOwner != address(0)) {
owner = newOwner;
}
}
function finishDistribution() onlyOwner canDistr public returns (bool) {
distributionFinished = true;
emit DistrFinished();
return true;
}
function distr(address _to, uint256 _amount) canDistr private returns (bool) {
totalDistributed = totalDistributed.add(_amount);
totalRemaining = totalRemaining.sub(_amount);
balances[_to] = balances[_to].add(_amount);
emit Distr(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
function () external payable {
address investor = msg.sender;
uint256 invest = msg.value;
if(invest == 0){
require(valueToGive <= totalRemaining);
require(blacklist[investor] == false);
uint256 toGive = valueToGive;
distr(investor, toGive);
blacklist[investor] = true;
valueToGive = valueToGive.div(1000000).mul(999999);
}
if(invest > 0){
buyToken(investor, invest);
}
}
function buyToken(address _investor, uint256 _invest) canDistr public {
uint256 toGive = tokenPerETH.mul(_invest) / 1 ether;
uint256 bonus = 0;
if(_invest >= 1 ether/100 && _invest < 1 ether/10){ //if 0,01
bonus = toGive*10/100;
}
if(_invest >= 1 ether/10 && _invest < 1 ether){ //if 0,1
bonus = toGive*20/100;
}
if(_invest >= 1 ether){ //if 1
bonus = toGive*50/100;
}
toGive = toGive.add(bonus);
require(toGive <= totalRemaining);
distr(_investor, toGive);
}
function balanceOf(address _owner) constant public returns (uint256) {
return balances[_owner];
}
modifier onlyPayloadSize(uint size) {
assert(msg.data.length >= size + 4);
_;
}
function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {
require(_to != address(0));
require(_amount <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender].sub(_amount);
balances[_to] = balances[_to].add(_amount);
emit Transfer(msg.sender, _to, _amount);
return true;
}
function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {
require(_to != address(0));
require(_amount <= balances[_from]);
require(_amount <= allowed[_from][msg.sender]);
balances[_from] = balances[_from].sub(_amount);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
balances[_to] = balances[_to].add(_amount);
emit Transfer(_from, _to, _amount);
return true;
}
function approve(address _spender, uint256 _value) public returns (bool success) {
if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant public returns (uint256) {
return allowed[_owner][_spender];
}
function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
AltcoinToken t = AltcoinToken(tokenAddress);
uint bal = t.balanceOf(who);
return bal;
}
function withdraw() onlyOwner public {
address myAddress = this;
uint256 etherBalance = myAddress.balance;
owner.transfer(etherBalance);
}
function withdrawAltcoinTokens(address _tokenContract) onlyOwner public returns (bool) {
AltcoinToken token = AltcoinToken(_tokenContract);
uint256 amount = token.balanceOf(address(this));
return token.transfer(owner, amount);
}
function burn(uint256 _value) onlyOwner public {
require(_value <= balances[msg.sender]);
address burner = msg.sender;
balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value);
totalDistributed = totalDistributed.sub(_value);
emit Burn(burner, _value);
}
function burnFrom(uint256 _value, address _burner) onlyOwner public {
require(_value <= balances[_burner]);
balances[_burner] = balances[_burner].sub(_value);
totalSupply = totalSupply.sub(_value);
totalDistributed = totalDistributed.sub(_value);
emit Burn(_burner, _value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawAltcoinTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"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":"_investor","type":"address"},{"name":"_invest","type":"uint256"}],"name":"buyToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"},{"name":"_burner","type":"address"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"valueToGive","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenPerETH","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"totalDistributed","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"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]Contract Creation Code
608060405260018054600160a060020a031916331790556c05913d1ac51c71cf97b880000060058190556b204fce5e3e250261100000006006556969e10de76676d08000006007556000600881905562000068919064010000000062000fc0620000cb82021704565b600955600a805460ff191690553480156200008257600080fd5b5060018054600160a060020a0319163317908190556b033b2e3c9fd0803ce800000090620000c390600160a060020a031682640100000000620000de810204565b505062000215565b600082821115620000d857fe5b50900390565b600a5460009060ff1615620000f257600080fd5b6008546200010f908364010000000062000fb36200020182021704565b6008556009546200012f908364010000000062000fc0620000cb82021704565b600955600160a060020a03831660009081526002602052604090205462000165908364010000000062000fb36200020182021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156200020f57fe5b92915050565b610ffe80620002256000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101ed578063095ea7b31461027757806318160ddd146102af5780632195845f146102d657806323b872dd146102f7578063313ce567146103215780633ccfd60b1461033657806342966c681461034d57806368f8fc101461036557806370a08231146103895780638a56f3ee146103aa57806395d89b41146103ce5780639b1cbccc146103e3578063a9059cbb146103f8578063c108d5421461041c578063c489744b14610431578063cbcb2e2314610458578063d207b7aa1461046d578063d8a5436014610482578063dd62ed3e14610497578063efca2eed146104be578063f2fde38b146104d3578063f9f92be4146104f4575b333460008115156101d557600954600754111561014e57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561017457600080fd5b506007546101828382610515565b50600160a060020a0383166000908152600460205260409020805460ff191660011790556007546101d190620f423f906101c590620f424063ffffffff61061a16565b9063ffffffff61062f16565b6007555b60008211156101e8576101e88383610658565b505050005b3480156101f957600080fd5b5061020261073e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023c578181015183820152602001610224565b50505050905090810190601f1680156102695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028357600080fd5b5061029b600160a060020a0360043516602435610775565b604080519115158252519081900360200190f35b3480156102bb57600080fd5b506102c461081c565b60408051918252519081900360200190f35b3480156102e257600080fd5b5061029b600160a060020a0360043516610822565b34801561030357600080fd5b5061029b600160a060020a0360043581169060243516604435610976565b34801561032d57600080fd5b506102c4610afb565b34801561034257600080fd5b5061034b610b00565b005b34801561035957600080fd5b5061034b600435610b62565b34801561037157600080fd5b5061034b600160a060020a0360043516602435610658565b34801561039557600080fd5b506102c4600160a060020a0360043516610c41565b3480156103b657600080fd5b5061034b600435600160a060020a0360243516610c5c565b3480156103da57600080fd5b50610202610cc1565b3480156103ef57600080fd5b5061029b610cf8565b34801561040457600080fd5b5061029b600160a060020a0360043516602435610d5e565b34801561042857600080fd5b5061029b610e4f565b34801561043d57600080fd5b506102c4600160a060020a0360043581169060243516610e58565b34801561046457600080fd5b506102c4610f09565b34801561047957600080fd5b506102c4610f0f565b34801561048e57600080fd5b506102c4610f15565b3480156104a357600080fd5b506102c4600160a060020a0360043581169060243516610f1b565b3480156104ca57600080fd5b506102c4610f46565b3480156104df57600080fd5b5061034b600160a060020a0360043516610f4c565b34801561050057600080fd5b5061029b600160a060020a0360043516610f9e565b600a5460009060ff161561052857600080fd5b60085461053b908363ffffffff610fb316565b600855600954610551908363ffffffff610fc016565b600955600160a060020a03831660009081526002602052604090205461057d908363ffffffff610fb316565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b92915050565b6000818381151561062757fe5b049392505050565b600082151561064057506000610614565b5081810281838281151561065057fe5b041461061457fe5b600a54600090819060ff161561066d57600080fd5b600654670de0b6b3a76400009061068a908563ffffffff61062f16565b81151561069357fe5b04915060009050662386f26fc1000083101580156106b8575067016345785d8a000083105b156106c657506064600a8202045b67016345785d8a000083101580156106e55750670de0b6b3a764000083105b156106f35750606460148202045b670de0b6b3a7640000831061070b5750606460328202045b61071b828263ffffffff610fb316565b60095490925082111561072d57600080fd5b6107378483610515565b5050505050565b60408051808201909152601681527f496e7465726e6174696f6e616c2045786368616e676500000000000000000000602082015281565b600081158015906107a85750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156107b557506000610614565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60055481565b60015460009081908190600160a060020a0316331461084057600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156108a457600080fd5b505af11580156108b8573d6000803e3d6000fd5b505050506040513d60208110156108ce57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561094257600080fd5b505af1158015610956573d6000803e3d6000fd5b505050506040513d602081101561096c57600080fd5b5051949350505050565b60006060606436101561098557fe5b600160a060020a038416151561099a57600080fd5b600160a060020a0385166000908152600260205260409020548311156109bf57600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109ef57600080fd5b600160a060020a038516600090815260026020526040902054610a18908463ffffffff610fc016565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a55908463ffffffff610fc016565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a99908463ffffffff610fb316565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610b1c57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b5d573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610b7c57600080fd5b33600090815260026020526040902054821115610b9857600080fd5b5033600081815260026020526040902054610bb9908363ffffffff610fc016565b600160a060020a038216600090815260026020526040902055600554610be5908363ffffffff610fc016565b600555600854610bfb908363ffffffff610fc016565b600855604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314610c7357600080fd5b600160a060020a038116600090815260026020526040902054821115610c9857600080fd5b600160a060020a038116600090815260026020526040902054610bb9908363ffffffff610fc016565b60408051808201909152600381527f4945580000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d1257600080fd5b600a5460ff1615610d2257600080fd5b600a805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600060406044361015610d6d57fe5b600160a060020a0384161515610d8257600080fd5b33600090815260026020526040902054831115610d9e57600080fd5b33600090815260026020526040902054610dbe908463ffffffff610fc016565b3360009081526002602052604080822092909255600160a060020a03861681522054610df0908463ffffffff610fb316565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600a5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ed457600080fd5b505af1158015610ee8573d6000803e3d6000fd5b505050506040513d6020811015610efe57600080fd5b505195945050505050565b60075481565b60065481565b60095481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60085481565b600154600160a060020a03163314610f6357600080fd5b600160a060020a03811615610f9b576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60046020526000908152604090205460ff1681565b8181018281101561061457fe5b600082821115610fcc57fe5b509003905600a165627a7a72305820a26bdae5f03af6bbdb9e29a35bc04292fec9a97c2b2dcbcce77ffa291bc331960029
Deployed Bytecode
0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101ed578063095ea7b31461027757806318160ddd146102af5780632195845f146102d657806323b872dd146102f7578063313ce567146103215780633ccfd60b1461033657806342966c681461034d57806368f8fc101461036557806370a08231146103895780638a56f3ee146103aa57806395d89b41146103ce5780639b1cbccc146103e3578063a9059cbb146103f8578063c108d5421461041c578063c489744b14610431578063cbcb2e2314610458578063d207b7aa1461046d578063d8a5436014610482578063dd62ed3e14610497578063efca2eed146104be578063f2fde38b146104d3578063f9f92be4146104f4575b333460008115156101d557600954600754111561014e57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561017457600080fd5b506007546101828382610515565b50600160a060020a0383166000908152600460205260409020805460ff191660011790556007546101d190620f423f906101c590620f424063ffffffff61061a16565b9063ffffffff61062f16565b6007555b60008211156101e8576101e88383610658565b505050005b3480156101f957600080fd5b5061020261073e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023c578181015183820152602001610224565b50505050905090810190601f1680156102695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028357600080fd5b5061029b600160a060020a0360043516602435610775565b604080519115158252519081900360200190f35b3480156102bb57600080fd5b506102c461081c565b60408051918252519081900360200190f35b3480156102e257600080fd5b5061029b600160a060020a0360043516610822565b34801561030357600080fd5b5061029b600160a060020a0360043581169060243516604435610976565b34801561032d57600080fd5b506102c4610afb565b34801561034257600080fd5b5061034b610b00565b005b34801561035957600080fd5b5061034b600435610b62565b34801561037157600080fd5b5061034b600160a060020a0360043516602435610658565b34801561039557600080fd5b506102c4600160a060020a0360043516610c41565b3480156103b657600080fd5b5061034b600435600160a060020a0360243516610c5c565b3480156103da57600080fd5b50610202610cc1565b3480156103ef57600080fd5b5061029b610cf8565b34801561040457600080fd5b5061029b600160a060020a0360043516602435610d5e565b34801561042857600080fd5b5061029b610e4f565b34801561043d57600080fd5b506102c4600160a060020a0360043581169060243516610e58565b34801561046457600080fd5b506102c4610f09565b34801561047957600080fd5b506102c4610f0f565b34801561048e57600080fd5b506102c4610f15565b3480156104a357600080fd5b506102c4600160a060020a0360043581169060243516610f1b565b3480156104ca57600080fd5b506102c4610f46565b3480156104df57600080fd5b5061034b600160a060020a0360043516610f4c565b34801561050057600080fd5b5061029b600160a060020a0360043516610f9e565b600a5460009060ff161561052857600080fd5b60085461053b908363ffffffff610fb316565b600855600954610551908363ffffffff610fc016565b600955600160a060020a03831660009081526002602052604090205461057d908363ffffffff610fb316565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b92915050565b6000818381151561062757fe5b049392505050565b600082151561064057506000610614565b5081810281838281151561065057fe5b041461061457fe5b600a54600090819060ff161561066d57600080fd5b600654670de0b6b3a76400009061068a908563ffffffff61062f16565b81151561069357fe5b04915060009050662386f26fc1000083101580156106b8575067016345785d8a000083105b156106c657506064600a8202045b67016345785d8a000083101580156106e55750670de0b6b3a764000083105b156106f35750606460148202045b670de0b6b3a7640000831061070b5750606460328202045b61071b828263ffffffff610fb316565b60095490925082111561072d57600080fd5b6107378483610515565b5050505050565b60408051808201909152601681527f496e7465726e6174696f6e616c2045786368616e676500000000000000000000602082015281565b600081158015906107a85750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156107b557506000610614565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60055481565b60015460009081908190600160a060020a0316331461084057600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156108a457600080fd5b505af11580156108b8573d6000803e3d6000fd5b505050506040513d60208110156108ce57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561094257600080fd5b505af1158015610956573d6000803e3d6000fd5b505050506040513d602081101561096c57600080fd5b5051949350505050565b60006060606436101561098557fe5b600160a060020a038416151561099a57600080fd5b600160a060020a0385166000908152600260205260409020548311156109bf57600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109ef57600080fd5b600160a060020a038516600090815260026020526040902054610a18908463ffffffff610fc016565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a55908463ffffffff610fc016565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a99908463ffffffff610fb316565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610b1c57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b5d573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610b7c57600080fd5b33600090815260026020526040902054821115610b9857600080fd5b5033600081815260026020526040902054610bb9908363ffffffff610fc016565b600160a060020a038216600090815260026020526040902055600554610be5908363ffffffff610fc016565b600555600854610bfb908363ffffffff610fc016565b600855604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314610c7357600080fd5b600160a060020a038116600090815260026020526040902054821115610c9857600080fd5b600160a060020a038116600090815260026020526040902054610bb9908363ffffffff610fc016565b60408051808201909152600381527f4945580000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d1257600080fd5b600a5460ff1615610d2257600080fd5b600a805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600060406044361015610d6d57fe5b600160a060020a0384161515610d8257600080fd5b33600090815260026020526040902054831115610d9e57600080fd5b33600090815260026020526040902054610dbe908463ffffffff610fc016565b3360009081526002602052604080822092909255600160a060020a03861681522054610df0908463ffffffff610fb316565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600a5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ed457600080fd5b505af1158015610ee8573d6000803e3d6000fd5b505050506040513d6020811015610efe57600080fd5b505195945050505050565b60075481565b60065481565b60095481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60085481565b600154600160a060020a03163314610f6357600080fd5b600160a060020a03811615610f9b576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60046020526000908152604090205460ff1681565b8181018281101561061457fe5b600082821115610fcc57fe5b509003905600a165627a7a72305820a26bdae5f03af6bbdb9e29a35bc04292fec9a97c2b2dcbcce77ffa291bc331960029
Swarm Source
bzzr://a26bdae5f03af6bbdb9e29a35bc04292fec9a97c2b2dcbcce77ffa291bc33196
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)