ETH Price: $2,365.19 (+0.61%)

Token

AvataraCoin (VTR)
 

Overview

Max Total Supply

83,987,863.582900000002009 VTR

Holders

3,159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,100 VTR

Value
$0.00
0x243870cc20e3a1c7c2ad55acd31428557edd7b08
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:
Avatar

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-11
*/

pragma solidity ^0.4.23;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal constant 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 c;
    }

    function sub(uint256 a, uint256 b) internal constant returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) constant returns (uint256);
    function transfer(address to, uint256 value) 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) constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) returns (bool);
    function approve(address spender, uint256 value) 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 {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    /**
    * @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) returns (bool) {
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        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) constant returns (uint256 balance) {
        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)) 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 amout of tokens to be transfered
     */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
        var _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // require (_value <= _allowance);

        balances[_to] = balances[_to].add(_value);
        balances[_from] = balances[_from].sub(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);
        Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) returns (bool) {

        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender, 0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require((_value == 0) || (allowed[msg.sender][_spender] == 0));

        allowed[msg.sender][_spender] = _value;
        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 specifing the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

}

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


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    function Ownable() {
        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) onlyOwner {
        require(newOwner != address(0));
        owner = newOwner;
    }

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;


    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.db.getCollection('transactions').find({})
     */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() onlyOwner whenNotPaused public {
        paused = true;
        Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() onlyOwner whenPaused public {
        paused = false;
        Unpause();
    }
}

contract MintableToken is StandardToken, Ownable, Pausable {
    event Mint(address indexed to, uint256 amount);
    event MintFinished();

    bool public mintingFinished = false;
    uint256 public constant maxTokensToMint = 7320000000 ether;

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

    /**
    * @dev Function to mint tokens
    * @param _to The address that will recieve 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) whenNotPaused onlyOwner returns (bool) {
        return mintInternal(_to, _amount);
    }

    /**
    * @dev Function to stop minting new tokens.
    * @return True if the operation was successful.
    */
    function finishMinting() whenNotPaused onlyOwner returns (bool) {
        mintingFinished = true;
        MintFinished();
        return true;
    }

    function mintInternal(address _to, uint256 _amount) internal canMint returns (bool) {
        require(totalSupply.add(_amount) <= maxTokensToMint);
        totalSupply = totalSupply.add(_amount);
        balances[_to] = balances[_to].add(_amount);
        Mint(_to, _amount);
        Transfer(this, _to, _amount);
        return true;
    }
}

contract Avatar is MintableToken {

    string public constant name = "AvataraCoin";

    string public constant symbol = "VTR";

    bool public transferEnabled = false;

    uint8 public constant decimals = 18;

    uint256 public rate = 100000;

    uint256 public constant hardCap = 30000 ether;

    uint256 public weiFounded = 0;

    address public approvedUser = 0x48BAa849622fb4481c0C4D9E7a68bcE6b63b0213;

    address public wallet = 0x231FA84139d9956Cc8135303701d738213D8D916;

    uint64 public dateStart = 1520348400;

    bool public icoFinished = false;

    uint256 public constant maxTokenToBuy = 4392000000 ether;

    event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 amount);


    /**
    * @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, uint _value) whenNotPaused canTransfer returns (bool) {
        require(_to != address(this) && _to != address(0));
        return super.transfer(_to, _value);
    }

    /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint256 the amout of tokens to be transfered
    */
    function transferFrom(address _from, address _to, uint _value) whenNotPaused canTransfer returns (bool) {
        require(_to != address(this) && _to != address(0));
        return super.transferFrom(_from, _to, _value);
    }

    /**
     * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) whenNotPaused returns (bool) {
        return super.approve(_spender, _value);
    }

    /**
     * @dev Modifier to make a function callable only when the transfer is enabled.
     */
    modifier canTransfer() {
        require(transferEnabled);
        _;
    }

    modifier onlyOwnerOrApproved() {
        require(msg.sender == owner || msg.sender == approvedUser);
        _;
    }

    /**
    * @dev Function to stop transfering tokens.
    * @return True if the operation was successful.
    */
    function enableTransfer() onlyOwner returns (bool) {
        transferEnabled = true;
        return true;
    }

    function finishIco() onlyOwner returns (bool) {
        icoFinished = true;
        return true;
    }

    modifier canBuyTokens() {
        require(!icoFinished && weiFounded <= hardCap);
        _;
    }

    function setApprovedUser(address _user) onlyOwner returns (bool) {
        require(_user != address(0));
        approvedUser = _user;
        return true;
    }


    function changeRate(uint256 _rate) onlyOwnerOrApproved returns (bool) {
        require(_rate > 0);
        rate = _rate;
        return true;
    }

    function () payable {
        buyTokens(msg.sender);
    }

    function buyTokens(address beneficiary) canBuyTokens whenNotPaused payable {
        require(beneficiary != 0x0);
        require(msg.value >= 100 finney);

        uint256 weiAmount = msg.value;
        uint256 bonus = 0;
        uint256 totalWei = weiAmount.add(weiFounded);

        if (weiAmount >= 30 ether){
            bonus = 75;
        }else if (weiAmount >= 15 ether){
            bonus = 70;
        }if (weiAmount >= 6 ether){
            bonus = 60;
        }else if (weiAmount >= 3 ether){
            bonus = 51;
        }else if (weiAmount >= 1500 finney){
            bonus = 45;
        }else if (weiAmount >= 1 ether){
            bonus = 42;
        }else if (weiAmount >= 500 finney){
            bonus = 30;
        }else if (weiAmount >= 300 finney){
            bonus = 20;
        }else if(weiAmount >= 100 finney){
            bonus = 5;
        }

        uint256 tokens = weiAmount.mul(rate);

        if(bonus > 0){
            tokens += tokens.mul(bonus).div(100);
        }

        require(totalSupply.add(tokens) <= maxTokenToBuy);

        mintInternal(beneficiary, tokens);
        weiFounded = totalWei;
        TokenPurchase(msg.sender, beneficiary, tokens);
        forwardFunds();
    }

    // send ether to the fund collection wallet
    function forwardFunds() internal {
        wallet.transfer(msg.value);
    }

    function changeWallet(address _newWallet) onlyOwner returns (bool) {
        require(_newWallet != 0x0);
        wallet = _newWallet;
        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":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"setApprovedUser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTokenToBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiFounded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"transferEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"changeRate","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newWallet","type":"address"}],"name":"changeWallet","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dateStart","outputs":[{"name":"","type":"uint64"}],"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":"approvedUser","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishIco","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"enableTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTokensToMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","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":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

608060405260038054620186a0600455600060055560068054600160a060020a03199081167348baa849622fb4481c0c4d9e7a68bce6b63b0213179091556007805460e060020a60ff0219775a9eacf0000000000000000000000000000000000000000060a060020a60e060020a03199290941673231fa84139d9956cc8135303701d738213d8d916179190911692909217919091169055600160b860020a03191633179055611295806100b46000396000f3006080604052600436106101875763ffffffff60e060020a60003504166305d2035b811461019257806306fdde03146101bb578063095ea7b31461024557806318160ddd1461026957806323b872dd146102905780632c4e722e146102ba578063313ce567146102cf578063329d5f0f146102fa57806334ebb6151461031b578063356e29271461033057806337bdc146146103455780633f4ba83a1461035a57806340c10f191461036f5780634cd412d514610393578063521eb273146103a85780635c975abb146103d957806370a08231146103ee57806374e7493b1461040f5780637d64bcb4146104275780638456cb591461043c5780638da5cb5b1461045157806395d89b411461046657806398b9a2dc1461047b578063a3b6120c1461049c578063a9059cbb146104ce578063b9dc25c5146104f2578063dd62ed3e14610507578063ec42f82f1461052e578063ec8ac4d814610543578063f1b50c1d14610557578063f2fde38b1461056c578063f669052a1461058d578063fb86a404146105a2575b610190336105b7565b005b34801561019e57600080fd5b506101a76107ed565b604080519115158252519081900360200190f35b3480156101c757600080fd5b506101d061080f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020a5781810151838201526020016101f2565b50505050905090810190601f1680156102375780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025157600080fd5b506101a7600160a060020a0360043516602435610846565b34801561027557600080fd5b5061027e610871565b60408051918252519081900360200190f35b34801561029c57600080fd5b506101a7600160a060020a0360043581169060243516604435610877565b3480156102c657600080fd5b5061027e6108e8565b3480156102db57600080fd5b506102e46108ee565b6040805160ff9092168252519081900360200190f35b34801561030657600080fd5b506101a7600160a060020a03600435166108f3565b34801561032757600080fd5b5061027e610954565b34801561033c57600080fd5b506101a7610964565b34801561035157600080fd5b5061027e610974565b34801561036657600080fd5b5061019061097a565b34801561037b57600080fd5b506101a7600160a060020a03600435166024356109f2565b34801561039f57600080fd5b506101a7610a2d565b3480156103b457600080fd5b506103bd610a3d565b60408051600160a060020a039092168252519081900360200190f35b3480156103e557600080fd5b506101a7610a4c565b3480156103fa57600080fd5b5061027e600160a060020a0360043516610a5c565b34801561041b57600080fd5b506101a7600435610a77565b34801561043357600080fd5b506101a7610abe565b34801561044857600080fd5b50610190610b55565b34801561045d57600080fd5b506103bd610bd2565b34801561047257600080fd5b506101d0610be1565b34801561048757600080fd5b506101a7600160a060020a0360043516610c18565b3480156104a857600080fd5b506104b1610c79565b6040805167ffffffffffffffff9092168252519081900360200190f35b3480156104da57600080fd5b506101a7600160a060020a0360043516602435610c90565b3480156104fe57600080fd5b506103bd610cf8565b34801561051357600080fd5b5061027e600160a060020a0360043581169060243516610d07565b34801561053a57600080fd5b506101a7610d32565b610190600160a060020a03600435166105b7565b34801561056357600080fd5b506101a7610d80565b34801561057857600080fd5b50610190600160a060020a0360043516610dc6565b34801561059957600080fd5b5061027e610e21565b3480156105ae57600080fd5b5061027e610e31565b6000806000806007601c9054906101000a900460ff161580156105e6575069065a4da25d3016c0000060055411155b15156105f157600080fd5b60035460a060020a900460ff161561060857600080fd5b600160a060020a038516151561061d57600080fd5b67016345785d8a000034101561063257600080fd5b6005543494506000935061064d90859063ffffffff610e3f16565b91506801a055690d9db80000841061066857604b925061067c565b67d02ab486cedc0000841061067c57604692505b6753444835ec580000841061069457603c9250610720565b6729a2241af62c000084106106ac5760339250610720565b6714d1120d7b16000084106106c457602d9250610720565b670de0b6b3a764000084106106dc57602a9250610720565b6706f05b59d3b2000084106106f457601e9250610720565b670429d069189e0000841061070c5760149250610720565b67016345785d8a0000841061072057600592505b60045461073490859063ffffffff610e4e16565b90506000831115610762576107606064610754838663ffffffff610e4e16565b9063ffffffff610e7216565b015b6000546b0e30fa2d13ebccd22800000090610783908363ffffffff610e3f16565b111561078e57600080fd5b6107988582610e89565b506005829055604080518281529051600160a060020a0387169133917fbc9b717e64d37facf9bd4eaf188a144bd2c53b675ca7ec8b445af85586d3e3829181900360200190a36107e6610fba565b5050505050565b6003547501000000000000000000000000000000000000000000900460ff1681565b60408051808201909152600b81527f41766174617261436f696e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561086057600080fd5b61086a8383610ff6565b9392505050565b60005481565b60035460009060a060020a900460ff161561089157600080fd5b60035460b060020a900460ff1615156108a957600080fd5b600160a060020a03831630148015906108ca5750600160a060020a03831615155b15156108d557600080fd5b6108e0848484611098565b949350505050565b60045481565b601281565b600354600090600160a060020a0316331461090d57600080fd5b600160a060020a038216151561092257600080fd5b5060068054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b6b0e30fa2d13ebccd22800000081565b60075460e060020a900460ff1681565b60055481565b600354600160a060020a0316331461099157600080fd5b60035460a060020a900460ff1615156109a957600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460009060a060020a900460ff1615610a0c57600080fd5b600354600160a060020a03163314610a2357600080fd5b61086a8383610e89565b60035460b060020a900460ff1681565b600754600160a060020a031681565b60035460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b600354600090600160a060020a0316331480610a9d5750600654600160a060020a031633145b1515610aa857600080fd5b60008211610ab557600080fd5b50600455600190565b60035460009060a060020a900460ff1615610ad857600080fd5b600354600160a060020a03163314610aef57600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610b6c57600080fd5b60035460a060020a900460ff1615610b8357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f5654520000000000000000000000000000000000000000000000000000000000602082015281565b600354600090600160a060020a03163314610c3257600080fd5b600160a060020a0382161515610c4757600080fd5b5060078054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b60075460a060020a900467ffffffffffffffff1681565b60035460009060a060020a900460ff1615610caa57600080fd5b60035460b060020a900460ff161515610cc257600080fd5b600160a060020a0383163014801590610ce35750600160a060020a03831615155b1515610cee57600080fd5b61086a83836111a7565b600654600160a060020a031681565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a03163314610d4c57600080fd5b50600780547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff1660e060020a179055600190565b600354600090600160a060020a03163314610d9a57600080fd5b506003805476ff00000000000000000000000000000000000000000000191660b060020a179055600190565b600354600160a060020a03163314610ddd57600080fd5b600160a060020a0381161515610df257600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6b17a6f64b2133aab39800000081565b69065a4da25d3016c0000081565b60008282018381101561086a57fe5b6000828202831580610e6a5750828482811515610e6757fe5b04145b151561086a57fe5b6000808284811515610e8057fe5b04949350505050565b6003546000907501000000000000000000000000000000000000000000900460ff1615610eb557600080fd5b6000546b17a6f64b2133aab39800000090610ed6908463ffffffff610e3f16565b1115610ee157600080fd5b600054610ef4908363ffffffff610e3f16565b6000908155600160a060020a038416815260016020526040902054610f1f908363ffffffff610e3f16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600754604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610ff3573d6000803e3d6000fd5b50565b60008115806110265750336000908152600260209081526040808320600160a060020a0387168452909152902054155b151561103157600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a038084166000908152600260209081526040808320338452825280832054938616835260019091528120549091906110dd908463ffffffff610e3f16565b600160a060020a038086166000908152600160205260408082209390935590871681522054611112908463ffffffff61125716565b600160a060020a03861660009081526001602052604090205561113b818463ffffffff61125716565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b336000908152600160205260408120546111c7908363ffffffff61125716565b3360009081526001602052604080822092909255600160a060020a038516815220546111f9908363ffffffff610e3f16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008282111561126357fe5b509003905600a165627a7a723058209f6d8e7efc3292ce162e8474b155f8f3742b94fd46e9025b7a59c961a0ad4e920029

Deployed Bytecode

0x6080604052600436106101875763ffffffff60e060020a60003504166305d2035b811461019257806306fdde03146101bb578063095ea7b31461024557806318160ddd1461026957806323b872dd146102905780632c4e722e146102ba578063313ce567146102cf578063329d5f0f146102fa57806334ebb6151461031b578063356e29271461033057806337bdc146146103455780633f4ba83a1461035a57806340c10f191461036f5780634cd412d514610393578063521eb273146103a85780635c975abb146103d957806370a08231146103ee57806374e7493b1461040f5780637d64bcb4146104275780638456cb591461043c5780638da5cb5b1461045157806395d89b411461046657806398b9a2dc1461047b578063a3b6120c1461049c578063a9059cbb146104ce578063b9dc25c5146104f2578063dd62ed3e14610507578063ec42f82f1461052e578063ec8ac4d814610543578063f1b50c1d14610557578063f2fde38b1461056c578063f669052a1461058d578063fb86a404146105a2575b610190336105b7565b005b34801561019e57600080fd5b506101a76107ed565b604080519115158252519081900360200190f35b3480156101c757600080fd5b506101d061080f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020a5781810151838201526020016101f2565b50505050905090810190601f1680156102375780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025157600080fd5b506101a7600160a060020a0360043516602435610846565b34801561027557600080fd5b5061027e610871565b60408051918252519081900360200190f35b34801561029c57600080fd5b506101a7600160a060020a0360043581169060243516604435610877565b3480156102c657600080fd5b5061027e6108e8565b3480156102db57600080fd5b506102e46108ee565b6040805160ff9092168252519081900360200190f35b34801561030657600080fd5b506101a7600160a060020a03600435166108f3565b34801561032757600080fd5b5061027e610954565b34801561033c57600080fd5b506101a7610964565b34801561035157600080fd5b5061027e610974565b34801561036657600080fd5b5061019061097a565b34801561037b57600080fd5b506101a7600160a060020a03600435166024356109f2565b34801561039f57600080fd5b506101a7610a2d565b3480156103b457600080fd5b506103bd610a3d565b60408051600160a060020a039092168252519081900360200190f35b3480156103e557600080fd5b506101a7610a4c565b3480156103fa57600080fd5b5061027e600160a060020a0360043516610a5c565b34801561041b57600080fd5b506101a7600435610a77565b34801561043357600080fd5b506101a7610abe565b34801561044857600080fd5b50610190610b55565b34801561045d57600080fd5b506103bd610bd2565b34801561047257600080fd5b506101d0610be1565b34801561048757600080fd5b506101a7600160a060020a0360043516610c18565b3480156104a857600080fd5b506104b1610c79565b6040805167ffffffffffffffff9092168252519081900360200190f35b3480156104da57600080fd5b506101a7600160a060020a0360043516602435610c90565b3480156104fe57600080fd5b506103bd610cf8565b34801561051357600080fd5b5061027e600160a060020a0360043581169060243516610d07565b34801561053a57600080fd5b506101a7610d32565b610190600160a060020a03600435166105b7565b34801561056357600080fd5b506101a7610d80565b34801561057857600080fd5b50610190600160a060020a0360043516610dc6565b34801561059957600080fd5b5061027e610e21565b3480156105ae57600080fd5b5061027e610e31565b6000806000806007601c9054906101000a900460ff161580156105e6575069065a4da25d3016c0000060055411155b15156105f157600080fd5b60035460a060020a900460ff161561060857600080fd5b600160a060020a038516151561061d57600080fd5b67016345785d8a000034101561063257600080fd5b6005543494506000935061064d90859063ffffffff610e3f16565b91506801a055690d9db80000841061066857604b925061067c565b67d02ab486cedc0000841061067c57604692505b6753444835ec580000841061069457603c9250610720565b6729a2241af62c000084106106ac5760339250610720565b6714d1120d7b16000084106106c457602d9250610720565b670de0b6b3a764000084106106dc57602a9250610720565b6706f05b59d3b2000084106106f457601e9250610720565b670429d069189e0000841061070c5760149250610720565b67016345785d8a0000841061072057600592505b60045461073490859063ffffffff610e4e16565b90506000831115610762576107606064610754838663ffffffff610e4e16565b9063ffffffff610e7216565b015b6000546b0e30fa2d13ebccd22800000090610783908363ffffffff610e3f16565b111561078e57600080fd5b6107988582610e89565b506005829055604080518281529051600160a060020a0387169133917fbc9b717e64d37facf9bd4eaf188a144bd2c53b675ca7ec8b445af85586d3e3829181900360200190a36107e6610fba565b5050505050565b6003547501000000000000000000000000000000000000000000900460ff1681565b60408051808201909152600b81527f41766174617261436f696e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561086057600080fd5b61086a8383610ff6565b9392505050565b60005481565b60035460009060a060020a900460ff161561089157600080fd5b60035460b060020a900460ff1615156108a957600080fd5b600160a060020a03831630148015906108ca5750600160a060020a03831615155b15156108d557600080fd5b6108e0848484611098565b949350505050565b60045481565b601281565b600354600090600160a060020a0316331461090d57600080fd5b600160a060020a038216151561092257600080fd5b5060068054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b6b0e30fa2d13ebccd22800000081565b60075460e060020a900460ff1681565b60055481565b600354600160a060020a0316331461099157600080fd5b60035460a060020a900460ff1615156109a957600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460009060a060020a900460ff1615610a0c57600080fd5b600354600160a060020a03163314610a2357600080fd5b61086a8383610e89565b60035460b060020a900460ff1681565b600754600160a060020a031681565b60035460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b600354600090600160a060020a0316331480610a9d5750600654600160a060020a031633145b1515610aa857600080fd5b60008211610ab557600080fd5b50600455600190565b60035460009060a060020a900460ff1615610ad857600080fd5b600354600160a060020a03163314610aef57600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610b6c57600080fd5b60035460a060020a900460ff1615610b8357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f5654520000000000000000000000000000000000000000000000000000000000602082015281565b600354600090600160a060020a03163314610c3257600080fd5b600160a060020a0382161515610c4757600080fd5b5060078054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b60075460a060020a900467ffffffffffffffff1681565b60035460009060a060020a900460ff1615610caa57600080fd5b60035460b060020a900460ff161515610cc257600080fd5b600160a060020a0383163014801590610ce35750600160a060020a03831615155b1515610cee57600080fd5b61086a83836111a7565b600654600160a060020a031681565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a03163314610d4c57600080fd5b50600780547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff1660e060020a179055600190565b600354600090600160a060020a03163314610d9a57600080fd5b506003805476ff00000000000000000000000000000000000000000000191660b060020a179055600190565b600354600160a060020a03163314610ddd57600080fd5b600160a060020a0381161515610df257600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6b17a6f64b2133aab39800000081565b69065a4da25d3016c0000081565b60008282018381101561086a57fe5b6000828202831580610e6a5750828482811515610e6757fe5b04145b151561086a57fe5b6000808284811515610e8057fe5b04949350505050565b6003546000907501000000000000000000000000000000000000000000900460ff1615610eb557600080fd5b6000546b17a6f64b2133aab39800000090610ed6908463ffffffff610e3f16565b1115610ee157600080fd5b600054610ef4908363ffffffff610e3f16565b6000908155600160a060020a038416815260016020526040902054610f1f908363ffffffff610e3f16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600754604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610ff3573d6000803e3d6000fd5b50565b60008115806110265750336000908152600260209081526040808320600160a060020a0387168452909152902054155b151561103157600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a038084166000908152600260209081526040808320338452825280832054938616835260019091528120549091906110dd908463ffffffff610e3f16565b600160a060020a038086166000908152600160205260408082209390935590871681522054611112908463ffffffff61125716565b600160a060020a03861660009081526001602052604090205561113b818463ffffffff61125716565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b336000908152600160205260408120546111c7908363ffffffff61125716565b3360009081526001602052604080822092909255600160a060020a038516815220546111f9908363ffffffff610e3f16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008282111561126357fe5b509003905600a165627a7a723058209f6d8e7efc3292ce162e8474b155f8f3742b94fd46e9025b7a59c961a0ad4e920029

Swarm Source

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