ERC-20
Overview
Max Total Supply
33,413,600 LTE
Holders
4,689
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LTE
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-18 */ pragma solidity ^0.4.23; /** * @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; } } /** * @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; } } /** * @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); } /** * @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); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic, Ownable { 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]; } } /** * @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; } } /** * @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 { event Mint(address indexed to, uint256 amount); event MintFinished(); 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; } } contract LTE is Ownable, MintableToken { using SafeMath for uint256; string public constant name = "LTE"; string public constant symbol = "LTE"; uint32 public constant decimals = 18; address public addressBounty; address public addressAirdrop; address public addressTeam; address public addressAdvisors; address public addressDividendReserve; address public addressPrivateSale; uint256 public summBounty; uint256 public summAirdrop; uint256 public summTeam; uint256 public summAdvisors; uint256 public summDividendReserve; uint256 public summPrivateSale; function LTE() public { addressBounty = 0xe70D1a8D548aFCdB4B5D162DaF8668E1E97796FB; addressAirdrop = 0x024d96Ad09a076A88F0EA716B38EdB36B8A636DD; addressTeam = 0xCe1932A41aaC4D8d838a41f2D10E4b154f719Eb1; addressAdvisors = 0x9f3D002255B96F39F96961F40FdD2a1C3d40B919; addressDividendReserve = 0xB647e8157270cCc5dB202FFa7C5CC80992645Ec7; addressPrivateSale = 0x953b3f258f441BC49d0a6f21f41E86E5ab9e6715; // Token distribution summBounty = 779600 * (10 ** uint256(decimals)); summAirdrop = 779600 * (10 ** uint256(decimals)); summTeam = 9745000 * (10 ** uint256(decimals)); summAdvisors = 1949000 * (10 ** uint256(decimals)); summDividendReserve = 12160400 * (10 ** uint256(decimals)); summPrivateSale = 8000000 * (10 ** uint256(decimals)); // Founders and supporters initial Allocations mint(addressBounty, summBounty); mint(addressAirdrop, summAirdrop); mint(addressTeam, summTeam); mint(addressAdvisors, summAdvisors); mint(addressDividendReserve, summDividendReserve); mint(addressPrivateSale, summPrivateSale); } } /** * @title Crowdsale * @dev Crowdsale is a base contract for managing a token crowdsale. * Crowdsales have a start and end timestamps, where Contributors can make * token Contributions and the crowdsale will assign them tokens based * on a token per ETH rate. Funds collected are forwarded to a wallet * as they arrive. The contract requires a MintableToken that will be * minted as contributions arrive, note that the crowdsale contract * must be owner of the token in order to be able to mint it. */ contract Crowdsale is Ownable { using SafeMath for uint256; LTE public token; // start and end timestamps where investments are allowed (both inclusive) uint256 public startPreICOStage1; uint256 public endPreICOStage1; uint256 public startPreICOStage2; uint256 public endPreICOStage2; uint256 public startPreICOStage3; uint256 public endPreICOStage3; uint256 public startICOStage1; uint256 public endICOStage1; uint256 public startICOStage2; uint256 public endICOStage2; //token distribution // uint256 public maxIco; uint256 public sumPreICO1; uint256 public sumPreICO2; uint256 public sumPreICO3; uint256 public sumICO1; uint256 public sumICO2; //Hard cap uint256 public sumHardCapPreICO1; uint256 public sumHardCapPreICO2; uint256 public sumHardCapPreICO3; uint256 public sumHardCapICO1; uint256 public sumHardCapICO2; uint256 public totalSoldTokens; //uint256 public minimumContribution; // how many token units a Contributor gets per wei uint256 public rateIco; // address where funds are collected address public wallet; /** * event for token Procurement logging * @param contributor who Pledged for the tokens * @param beneficiary who got the tokens * @param value weis Contributed for Procurement * @param amount amount of tokens Procured */ event TokenProcurement(address indexed contributor, address indexed beneficiary, uint256 value, uint256 amount); function Crowdsale() public { token = createTokenContract(); // rate; rateIco = 2286; // start and end timestamps where investments are allowed //start/end for stage of ICO startPreICOStage1 = 1532908800; // July 30 2018 00:00:00 +0000 endPreICOStage1 = 1533859200; // August 10 2018 00:00:00 +0000 startPreICOStage2 = 1533859200; // August 10 2018 00:00:00 +0000 endPreICOStage2 = 1534723200; // August 20 2018 00:00:00 +0000 startPreICOStage3 = 1534723200; // August 20 2018 00:00:00 +0000 endPreICOStage3 = 1535587200; // August 30 2018 00:00:00 +0000 startICOStage1 = 1535587200; // August 30 2018 00:00:00 +0000 endICOStage1 = 1536105600; // September 5 2018 00:00:00 +0000 startICOStage2 = 1536105600; // September 5 2018 00:00:00 +0000 endICOStage2 = 1536537600; // September 10 2018 00:00:00 +0000 sumHardCapPreICO1 = 3900000 * 1 ether; sumHardCapPreICO2 = 5000000 * 1 ether; sumHardCapPreICO3 = 5750000 * 1 ether; sumHardCapICO1 = 9900000 * 1 ether; sumHardCapICO2 = 20000000 * 1 ether; // address where funds are collected wallet = 0x6e9f5B0E49A7039bD1d4bdE84e4aF53b8194287d; } function setRateIco(uint _rateIco) public onlyOwner { rateIco = _rateIco; } // fallback function can be used to Procure tokens function () external payable { procureTokens(msg.sender); } function createTokenContract() internal returns (LTE) { return new LTE(); } function getRateIcoWithBonus() public view returns (uint256) { uint256 bonus; //PreICO if (now >= startPreICOStage1 && now < endPreICOStage1){ bonus = 30; } if (now >= startPreICOStage2 && now < endPreICOStage2){ bonus = 25; } if (now >= startPreICOStage3 && now < endPreICOStage3){ bonus = 15; } if (now >= startICOStage1 && now < endICOStage1){ bonus = 10; } if (now >= startICOStage2 && now < endICOStage2){ bonus = 0; } return rateIco + rateIco.mul(bonus).div(100); } function checkHardCap(uint256 _value) public { //PreICO if (now >= startPreICOStage1 && now < endPreICOStage1){ require(_value.add(sumPreICO1) <= sumHardCapPreICO1); sumPreICO1 = sumPreICO1.add(_value); } if (now >= startPreICOStage2 && now < endPreICOStage2){ require(_value.add(sumPreICO2) <= sumHardCapPreICO2); sumPreICO2 = sumPreICO2.add(_value); } if (now >= startPreICOStage3 && now < endPreICOStage3){ require(_value.add(sumPreICO3) <= sumHardCapPreICO3); sumPreICO3 = sumPreICO3.add(_value); } if (now >= startICOStage1 && now < endICOStage1){ require(_value.add(sumICO1) <= sumHardCapICO1); sumICO1 = sumICO1.add(_value); } if (now >= startICOStage2 && now < endICOStage2){ require(_value.add(sumICO2) <= sumHardCapICO2); sumICO2 = sumICO2.add(_value); } } function procureTokens(address _beneficiary) public payable { uint256 tokens; uint256 weiAmount = msg.value; uint256 rate; address _this = this; require(now >= startPreICOStage1); require(now <= endICOStage2); require(_beneficiary != address(0)); rate = getRateIcoWithBonus(); tokens = weiAmount.mul(rate); checkHardCap(tokens); //totalSoldTokens = totalSoldTokens.add(tokens); wallet.transfer(_this.balance); token.mint(_beneficiary, tokens); emit TokenProcurement(msg.sender, _beneficiary, weiAmount, tokens); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"summTeam","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"uint32"}],"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":true,"inputs":[],"name":"summDividendReserve","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"summAirdrop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressTeam","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"summBounty","outputs":[{"name":"","type":"uint256"}],"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":"addressBounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":true,"inputs":[],"name":"summAdvisors","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressPrivateSale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressDividendReserve","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"addressAdvisors","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"summPrivateSale","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressAirdrop","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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
60806040526004805460ff191690553480156200001b57600080fd5b5060008054600160a060020a031990811633179091556004805474e70d1a8d548afcdb4b5d162daf8668e1e97796fb0061010060a860020a0319909116179081905560058054831673024d96ad09a076a88f0ea716b38edb36b8a636dd17905560068054831673ce1932a41aac4d8d838a41f2d10e4b154f719eb1179055600780548316739f3d002255b96f39f96961f40fdd2a1c3d40b91917905560088054831673b647e8157270ccc5db202ffa7c5cc80992645ec71790556009805490921673953b3f258f441bc49d0a6f21f41e86e5ab9e67151790915569a516335ffe2cc3400000600a819055600b8190556a080f95822fe92f88a00000600c556a019cb7806ffb6fe8200000600d556a0a0f109adbaf843c400000600e556a069e10de76676d08000000600f5562000169916101009004600160a060020a03169064010000000062000229810204565b50600554600b546200018e91600160a060020a03169064010000000062000229810204565b50600654600c54620001b391600160a060020a03169064010000000062000229810204565b50600754600d54620001d891600160a060020a03169064010000000062000229810204565b50600854600e54620001fd91600160a060020a03169064010000000062000229810204565b50600954600f546200022291600160a060020a03169064010000000062000229810204565b5062000356565b60008054600160a060020a031633146200024257600080fd5b60045460ff16156200025357600080fd5b60025462000270908364010000000062000c7c6200034282021704565b600255600160a060020a038316600090815260016020526040902054620002a6908364010000000062000c7c6200034282021704565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156200035057fe5b92915050565b610cbb80620003666000396000f3006080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016e57806306fdde0314610197578063095ea7b3146102215780630d6f6f0b1461024557806318160ddd1461026c57806323b872dd14610281578063313ce567146102ab57806340c10f19146102d9578063458fa428146102fd57806352cbfe0914610312578063562e9df91461032757806358beec9f14610358578063661884631461036d5780636ae767771461039157806370a08231146103a65780637d64bcb4146103c75780638da5cb5b146103dc57806395d89b4114610197578063a9059cbb146103f1578063c0e738ef14610415578063cca416511461042a578063cd41ada11461043f578063d73dd62314610454578063dd62ed3e14610478578063e0a1a2921461049f578063e81e935a146104b4578063f0fbe2e4146104c9578063f2fde38b146104de575b600080fd5b34801561017a57600080fd5b50610183610501565b604080519115158252519081900360200190f35b3480156101a357600080fd5b506101ac61050a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e65781810151838201526020016101ce565b50505050905090810190601f1680156102135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022d57600080fd5b50610183600160a060020a0360043516602435610541565b34801561025157600080fd5b5061025a6105a7565b60408051918252519081900360200190f35b34801561027857600080fd5b5061025a6105ad565b34801561028d57600080fd5b50610183600160a060020a03600435811690602435166044356105b3565b3480156102b757600080fd5b506102c061072c565b6040805163ffffffff9092168252519081900360200190f35b3480156102e557600080fd5b50610183600160a060020a0360043516602435610731565b34801561030957600080fd5b5061025a610834565b34801561031e57600080fd5b5061025a61083a565b34801561033357600080fd5b5061033c610840565b60408051600160a060020a039092168252519081900360200190f35b34801561036457600080fd5b5061025a61084f565b34801561037957600080fd5b50610183600160a060020a0360043516602435610855565b34801561039d57600080fd5b5061033c610945565b3480156103b257600080fd5b5061025a600160a060020a0360043516610959565b3480156103d357600080fd5b50610183610974565b3480156103e857600080fd5b5061033c6109d8565b3480156103fd57600080fd5b50610183600160a060020a03600435166024356109e7565b34801561042157600080fd5b5061025a610aca565b34801561043657600080fd5b5061033c610ad0565b34801561044b57600080fd5b5061033c610adf565b34801561046057600080fd5b50610183600160a060020a0360043516602435610aee565b34801561048457600080fd5b5061025a600160a060020a0360043581169060243516610b87565b3480156104ab57600080fd5b5061033c610bb2565b3480156104c057600080fd5b5061025a610bc1565b3480156104d557600080fd5b5061033c610bc7565b3480156104ea57600080fd5b506104ff600160a060020a0360043516610bd6565b005b60045460ff1681565b60408051808201909152600381527f4c54450000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600c5481565b60025490565b6000600160a060020a03831615156105ca57600080fd5b600160a060020a0384166000908152600160205260409020548211156105ef57600080fd5b600160a060020a038416600090815260036020908152604080832033845290915290205482111561061f57600080fd5b600160a060020a038416600090815260016020526040902054610648908363ffffffff610c6a16565b600160a060020a03808616600090815260016020526040808220939093559085168152205461067d908363ffffffff610c7c16565b600160a060020a0380851660009081526001602090815260408083209490945591871681526003825282812033825290915220546106c1908363ffffffff610c6a16565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b60008054600160a060020a0316331461074957600080fd5b60045460ff161561075957600080fd5b60025461076c908363ffffffff610c7c16565b600255600160a060020a038316600090815260016020526040902054610798908363ffffffff610c7c16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600e5481565b600b5481565b600654600160a060020a031681565b600a5481565b336000908152600360209081526040808320600160a060020a0386168452909152812054808311156108aa57336000908152600360209081526040808320600160a060020a03881684529091528120556108df565b6108ba818463ffffffff610c6a16565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6004546101009004600160a060020a031681565b600160a060020a031660009081526001602052604090205490565b60008054600160a060020a0316331461098c57600080fd5b60045460ff161561099c57600080fd5b6004805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600054600160a060020a031681565b6000600160a060020a03831615156109fe57600080fd5b33600090815260016020526040902054821115610a1a57600080fd5b33600090815260016020526040902054610a3a908363ffffffff610c6a16565b3360009081526001602052604080822092909255600160a060020a03851681522054610a6c908363ffffffff610c7c16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600d5481565b600954600160a060020a031681565b600854600160a060020a031681565b336000908152600360209081526040808320600160a060020a0386168452909152812054610b22908363ffffffff610c7c16565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600754600160a060020a031681565b600f5481565b600554600160a060020a031681565b600054600160a060020a03163314610bed57600080fd5b600160a060020a0381161515610c0257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c7657fe5b50900390565b81810182811015610c8957fe5b929150505600a165627a7a723058208ae967cc6889744d4ab86fca65f35bb59e1e0c9cfc8444ff591347ca7a2f0b140029
Deployed Bytecode
0x6080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016e57806306fdde0314610197578063095ea7b3146102215780630d6f6f0b1461024557806318160ddd1461026c57806323b872dd14610281578063313ce567146102ab57806340c10f19146102d9578063458fa428146102fd57806352cbfe0914610312578063562e9df91461032757806358beec9f14610358578063661884631461036d5780636ae767771461039157806370a08231146103a65780637d64bcb4146103c75780638da5cb5b146103dc57806395d89b4114610197578063a9059cbb146103f1578063c0e738ef14610415578063cca416511461042a578063cd41ada11461043f578063d73dd62314610454578063dd62ed3e14610478578063e0a1a2921461049f578063e81e935a146104b4578063f0fbe2e4146104c9578063f2fde38b146104de575b600080fd5b34801561017a57600080fd5b50610183610501565b604080519115158252519081900360200190f35b3480156101a357600080fd5b506101ac61050a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e65781810151838201526020016101ce565b50505050905090810190601f1680156102135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022d57600080fd5b50610183600160a060020a0360043516602435610541565b34801561025157600080fd5b5061025a6105a7565b60408051918252519081900360200190f35b34801561027857600080fd5b5061025a6105ad565b34801561028d57600080fd5b50610183600160a060020a03600435811690602435166044356105b3565b3480156102b757600080fd5b506102c061072c565b6040805163ffffffff9092168252519081900360200190f35b3480156102e557600080fd5b50610183600160a060020a0360043516602435610731565b34801561030957600080fd5b5061025a610834565b34801561031e57600080fd5b5061025a61083a565b34801561033357600080fd5b5061033c610840565b60408051600160a060020a039092168252519081900360200190f35b34801561036457600080fd5b5061025a61084f565b34801561037957600080fd5b50610183600160a060020a0360043516602435610855565b34801561039d57600080fd5b5061033c610945565b3480156103b257600080fd5b5061025a600160a060020a0360043516610959565b3480156103d357600080fd5b50610183610974565b3480156103e857600080fd5b5061033c6109d8565b3480156103fd57600080fd5b50610183600160a060020a03600435166024356109e7565b34801561042157600080fd5b5061025a610aca565b34801561043657600080fd5b5061033c610ad0565b34801561044b57600080fd5b5061033c610adf565b34801561046057600080fd5b50610183600160a060020a0360043516602435610aee565b34801561048457600080fd5b5061025a600160a060020a0360043581169060243516610b87565b3480156104ab57600080fd5b5061033c610bb2565b3480156104c057600080fd5b5061025a610bc1565b3480156104d557600080fd5b5061033c610bc7565b3480156104ea57600080fd5b506104ff600160a060020a0360043516610bd6565b005b60045460ff1681565b60408051808201909152600381527f4c54450000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600c5481565b60025490565b6000600160a060020a03831615156105ca57600080fd5b600160a060020a0384166000908152600160205260409020548211156105ef57600080fd5b600160a060020a038416600090815260036020908152604080832033845290915290205482111561061f57600080fd5b600160a060020a038416600090815260016020526040902054610648908363ffffffff610c6a16565b600160a060020a03808616600090815260016020526040808220939093559085168152205461067d908363ffffffff610c7c16565b600160a060020a0380851660009081526001602090815260408083209490945591871681526003825282812033825290915220546106c1908363ffffffff610c6a16565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b60008054600160a060020a0316331461074957600080fd5b60045460ff161561075957600080fd5b60025461076c908363ffffffff610c7c16565b600255600160a060020a038316600090815260016020526040902054610798908363ffffffff610c7c16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600e5481565b600b5481565b600654600160a060020a031681565b600a5481565b336000908152600360209081526040808320600160a060020a0386168452909152812054808311156108aa57336000908152600360209081526040808320600160a060020a03881684529091528120556108df565b6108ba818463ffffffff610c6a16565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6004546101009004600160a060020a031681565b600160a060020a031660009081526001602052604090205490565b60008054600160a060020a0316331461098c57600080fd5b60045460ff161561099c57600080fd5b6004805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600054600160a060020a031681565b6000600160a060020a03831615156109fe57600080fd5b33600090815260016020526040902054821115610a1a57600080fd5b33600090815260016020526040902054610a3a908363ffffffff610c6a16565b3360009081526001602052604080822092909255600160a060020a03851681522054610a6c908363ffffffff610c7c16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600d5481565b600954600160a060020a031681565b600854600160a060020a031681565b336000908152600360209081526040808320600160a060020a0386168452909152812054610b22908363ffffffff610c7c16565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600754600160a060020a031681565b600f5481565b600554600160a060020a031681565b600054600160a060020a03163314610bed57600080fd5b600160a060020a0381161515610c0257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c7657fe5b50900390565b81810182811015610c8957fe5b929150505600a165627a7a723058208ae967cc6889744d4ab86fca65f35bb59e1e0c9cfc8444ff591347ca7a2f0b140029
Swarm Source
bzzr://8ae967cc6889744d4ab86fca65f35bb59e1e0c9cfc8444ff591347ca7a2f0b14
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.