ETH Price: $3,048.45 (+0.17%)
Gas: 7 Gwei

Token

Yasion (YA)
 

Overview

Max Total Supply

100,000,000 YA

Holders

50

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
Yasion

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-12-16
*/

pragma solidity ^0.5.16;

// File: contracts/ownership/Ownable.sol

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public {
        owner = msg.sender;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}

// File: contracts/math/SafeMath.sol

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

// File: contracts/token/ERC20/ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    function totalSupply() public view returns (uint256);

    function balanceOf(address who) public view returns (uint256);

    function transfer(address to, uint256 value) public returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
}

// File: contracts/token/ERC20/BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {

    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;

    /**
    * @dev total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

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

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256) {
        return balances[_owner];
    }

}

// File: contracts/token/ERC20/BurnableToken.sol

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        _burn(msg.sender, _value);
    }

    function _burn(address _who, uint256 _value) internal {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[_who] = balances[_who].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }
}

// File: contracts/token/ERC20/ERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view returns (uint256);

    function transferFrom(address from, address to, uint256 value) public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/token/ERC20/StandardToken.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

    mapping(address => mapping(address => uint256)) internal allowed;


    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

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

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        // 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
        if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) revert();

        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowed[_owner][_spender];
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

}

contract MintableToken is StandardToken, Ownable {
    /**
   * @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,
        bool _total
    )
    public
    onlyOwner
    returns (bool)
    {
        if (_total) {
            totalSupply_ = totalSupply_.add(_amount);
        }
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(address(0), _to, _amount);
        return true;
    }
}

contract Yasion is StandardToken, BurnableToken, MintableToken {
    // Constants
    string  public constant name = "Yasion";
    string  public constant symbol = "YA";
    uint8   public constant decimals = 18;
    uint256 public constant INITIAL_SUPPLY = 100000000 * (10 ** uint256(decimals));
    address constant holder = 0xb002247648A4193A23AbB414b2437E34812114a2;

    constructor() public {
        totalSupply_ = INITIAL_SUPPLY;
        balances[holder] = INITIAL_SUPPLY;
        emit Transfer(address(0), holder, INITIAL_SUPPLY);
    }

    function() external payable {
        revert();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_total","type":"bool"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50600380546001600160a01b031916331790556a52b7d2dcc80cd2e4000000600181905573b002247648a4193a23abb414b2437e34812114a2600081815260208181527fa68a3e66b6adf4b07db00ed9d44e18acfb487f949b4c01de1c7ce17dc552eafb8490556040805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610c2a806100bc6000396000f3fe6080604052600436106100f35760003560e01c806370a082311161008a578063d1a1beb411610059578063d1a1beb414610390578063d73dd623146103d1578063dd62ed3e1461040a578063f2fde38b14610445576100f3565b806370a08231146102de5780638da5cb5b1461031157806395d89b4114610342578063a9059cbb14610357576100f3565b80632ff2e9dc116100c65780632ff2e9dc14610239578063313ce5671461024e57806342966c681461027957806366188463146102a5576100f3565b806306fdde03146100f8578063095ea7b31461018257806318160ddd146101cf57806323b872dd146101f6575b600080fd5b34801561010457600080fd5b5061010d610478565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018e57600080fd5b506101bb600480360360408110156101a557600080fd5b506001600160a01b03813516906020013561049a565b604080519115158252519081900360200190f35b3480156101db57600080fd5b506101e461053e565b60408051918252519081900360200190f35b34801561020257600080fd5b506101bb6004803603606081101561021957600080fd5b506001600160a01b03813581169160208101359091169060400135610544565b34801561024557600080fd5b506101e46106a7565b34801561025a57600080fd5b506102636106b6565b6040805160ff9092168252519081900360200190f35b34801561028557600080fd5b506102a36004803603602081101561029c57600080fd5b50356106bb565b005b3480156102b157600080fd5b506101bb600480360360408110156102c857600080fd5b506001600160a01b0381351690602001356106c8565b3480156102ea57600080fd5b506101e46004803603602081101561030157600080fd5b50356001600160a01b03166107b8565b34801561031d57600080fd5b506103266107d3565b604080516001600160a01b039092168252519081900360200190f35b34801561034e57600080fd5b5061010d6107e2565b34801561036357600080fd5b506101bb6004803603604081101561037a57600080fd5b506001600160a01b038135169060200135610800565b34801561039c57600080fd5b506101bb600480360360608110156103b357600080fd5b506001600160a01b03813516906020810135906040013515156108cd565b3480156103dd57600080fd5b506101bb600480360360408110156103f457600080fd5b506001600160a01b038135169060200135610977565b34801561041657600080fd5b506101e46004803603604081101561042d57600080fd5b506001600160a01b0381358116916020013516610a10565b34801561045157600080fd5b506102a36004803603602081101561046857600080fd5b50356001600160a01b0316610a3b565b604051806040016040528060068152602001652cb0b9b4b7b760d11b81525081565b600081158015906104cd57503360009081526002602090815260408083206001600160a01b038716845290915290205415155b156104d757600080fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b60006001600160a01b03831661055957600080fd5b6001600160a01b03841660009081526020819052604090205482111561057e57600080fd5b6001600160a01b03841660009081526002602090815260408083203384529091529020548211156105ae57600080fd5b6001600160a01b0384166000908152602081905260409020546105d7908363ffffffff610ac116565b6001600160a01b03808616600090815260208190526040808220939093559085168152205461060c908363ffffffff610ad316565b6001600160a01b0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461064e908363ffffffff610ac116565b6001600160a01b0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610bd6833981519152929181900390910190a35060019392505050565b6a52b7d2dcc80cd2e400000081565b601281565b6106c53382610ae6565b50565b3360009081526002602090815260408083206001600160a01b03861684529091528120548083111561071d573360009081526002602090815260408083206001600160a01b0388168452909152812055610752565b61072d818463ffffffff610ac116565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b031681565b60405180604001604052806002815260200161594160f01b81525081565b60006001600160a01b03831661081557600080fd5b3360009081526020819052604090205482111561083157600080fd5b33600090815260208190526040902054610851908363ffffffff610ac116565b33600090815260208190526040808220929092556001600160a01b03851681522054610883908363ffffffff610ad316565b6001600160a01b03841660008181526020818152604091829020939093558051858152905191923392600080516020610bd68339815191529281900390910190a350600192915050565b6003546000906001600160a01b031633146108e757600080fd5b811561090457600154610900908463ffffffff610ad316565b6001555b6001600160a01b03841660009081526020819052604090205461092d908463ffffffff610ad316565b6001600160a01b038516600081815260208181526040808320949094558351878152935192939192600080516020610bd68339815191529281900390910190a35060019392505050565b3360009081526002602090815260408083206001600160a01b03861684529091528120546109ab908363ffffffff610ad316565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a5257600080fd5b6001600160a01b038116610a6557600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610acd57fe5b50900390565b81810182811015610ae057fe5b92915050565b6001600160a01b038216600090815260208190526040902054811115610b0b57600080fd5b6001600160a01b038216600090815260208190526040902054610b34908263ffffffff610ac116565b6001600160a01b038316600090815260208190526040902055600154610b60908263ffffffff610ac116565b6001556040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a26040805182815290516000916001600160a01b03851691600080516020610bd68339815191529181900360200190a3505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa265627a7a72315820ceeb2d13b7c581924eeb15c8be4d19e758ecb4efe82ddabf4943360995baa62f64736f6c63430005100032

Deployed Bytecode

0x6080604052600436106100f35760003560e01c806370a082311161008a578063d1a1beb411610059578063d1a1beb414610390578063d73dd623146103d1578063dd62ed3e1461040a578063f2fde38b14610445576100f3565b806370a08231146102de5780638da5cb5b1461031157806395d89b4114610342578063a9059cbb14610357576100f3565b80632ff2e9dc116100c65780632ff2e9dc14610239578063313ce5671461024e57806342966c681461027957806366188463146102a5576100f3565b806306fdde03146100f8578063095ea7b31461018257806318160ddd146101cf57806323b872dd146101f6575b600080fd5b34801561010457600080fd5b5061010d610478565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018e57600080fd5b506101bb600480360360408110156101a557600080fd5b506001600160a01b03813516906020013561049a565b604080519115158252519081900360200190f35b3480156101db57600080fd5b506101e461053e565b60408051918252519081900360200190f35b34801561020257600080fd5b506101bb6004803603606081101561021957600080fd5b506001600160a01b03813581169160208101359091169060400135610544565b34801561024557600080fd5b506101e46106a7565b34801561025a57600080fd5b506102636106b6565b6040805160ff9092168252519081900360200190f35b34801561028557600080fd5b506102a36004803603602081101561029c57600080fd5b50356106bb565b005b3480156102b157600080fd5b506101bb600480360360408110156102c857600080fd5b506001600160a01b0381351690602001356106c8565b3480156102ea57600080fd5b506101e46004803603602081101561030157600080fd5b50356001600160a01b03166107b8565b34801561031d57600080fd5b506103266107d3565b604080516001600160a01b039092168252519081900360200190f35b34801561034e57600080fd5b5061010d6107e2565b34801561036357600080fd5b506101bb6004803603604081101561037a57600080fd5b506001600160a01b038135169060200135610800565b34801561039c57600080fd5b506101bb600480360360608110156103b357600080fd5b506001600160a01b03813516906020810135906040013515156108cd565b3480156103dd57600080fd5b506101bb600480360360408110156103f457600080fd5b506001600160a01b038135169060200135610977565b34801561041657600080fd5b506101e46004803603604081101561042d57600080fd5b506001600160a01b0381358116916020013516610a10565b34801561045157600080fd5b506102a36004803603602081101561046857600080fd5b50356001600160a01b0316610a3b565b604051806040016040528060068152602001652cb0b9b4b7b760d11b81525081565b600081158015906104cd57503360009081526002602090815260408083206001600160a01b038716845290915290205415155b156104d757600080fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b60006001600160a01b03831661055957600080fd5b6001600160a01b03841660009081526020819052604090205482111561057e57600080fd5b6001600160a01b03841660009081526002602090815260408083203384529091529020548211156105ae57600080fd5b6001600160a01b0384166000908152602081905260409020546105d7908363ffffffff610ac116565b6001600160a01b03808616600090815260208190526040808220939093559085168152205461060c908363ffffffff610ad316565b6001600160a01b0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461064e908363ffffffff610ac116565b6001600160a01b0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610bd6833981519152929181900390910190a35060019392505050565b6a52b7d2dcc80cd2e400000081565b601281565b6106c53382610ae6565b50565b3360009081526002602090815260408083206001600160a01b03861684529091528120548083111561071d573360009081526002602090815260408083206001600160a01b0388168452909152812055610752565b61072d818463ffffffff610ac116565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b031681565b60405180604001604052806002815260200161594160f01b81525081565b60006001600160a01b03831661081557600080fd5b3360009081526020819052604090205482111561083157600080fd5b33600090815260208190526040902054610851908363ffffffff610ac116565b33600090815260208190526040808220929092556001600160a01b03851681522054610883908363ffffffff610ad316565b6001600160a01b03841660008181526020818152604091829020939093558051858152905191923392600080516020610bd68339815191529281900390910190a350600192915050565b6003546000906001600160a01b031633146108e757600080fd5b811561090457600154610900908463ffffffff610ad316565b6001555b6001600160a01b03841660009081526020819052604090205461092d908463ffffffff610ad316565b6001600160a01b038516600081815260208181526040808320949094558351878152935192939192600080516020610bd68339815191529281900390910190a35060019392505050565b3360009081526002602090815260408083206001600160a01b03861684529091528120546109ab908363ffffffff610ad316565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a5257600080fd5b6001600160a01b038116610a6557600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610acd57fe5b50900390565b81810182811015610ae057fe5b92915050565b6001600160a01b038216600090815260208190526040902054811115610b0b57600080fd5b6001600160a01b038216600090815260208190526040902054610b34908263ffffffff610ac116565b6001600160a01b038316600090815260208190526040902055600154610b60908263ffffffff610ac116565b6001556040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a26040805182815290516000916001600160a01b03851691600080516020610bd68339815191529181900360200190a3505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa265627a7a72315820ceeb2d13b7c581924eeb15c8be4d19e758ecb4efe82ddabf4943360995baa62f64736f6c63430005100032

Deployed Bytecode Sourcemap

11074:625:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11678:8;;;11162:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11162:39:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11162:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7611:594;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7611:594:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7611:594:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3301:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3301:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;6466:488;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6466:488:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6466:488:0;;;;;;;;;;;;;;;;;:::i;11296:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11296:78:0;;;:::i;11252:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11252:37:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4631:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4631:81:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4631:81:0;;:::i;:::-;;9947:450;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9947:450:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9947:450:0;;;;;;;;:::i;4141:107::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4141:107:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4141:107:0;-1:-1:-1;;;;;4141:107:0;;:::i;291:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;291:20:0;;;:::i;:::-;;;;-1:-1:-1;;;;;291:20:0;;;;;;;;;;;;;;11208:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11208:37:0;;;:::i;3565:355::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3565:355:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3565:355:0;;;;;;;;:::i;10702:365::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10702:365:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10702:365:0;;;;;;;;;;;;;;;:::i;9171:280::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9171:280:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9171:280:0;;;;;;;;:::i;8546:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8546:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8546:134:0;;;;;;;;;;:::i;950:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;950:192:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;950:192:0;-1:-1:-1;;;;;950:192:0;;:::i;11162:39::-;;;;;;;;;;;;;;-1:-1:-1;;;11162:39:0;;;;:::o;7611:594::-;7678:4;8008:11;;;;;8007:53;;-1:-1:-1;8033:10:0;8025:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8025:29:0;;;;;;;;;;:34;;8007:53;8003:67;;;8062:8;;;8003:67;8091:10;8083:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8083:29:0;;;;;;;;;;;;:38;;;8137;;;;;;;8083:29;;8091:10;8137:38;;;;;;;;;;;-1:-1:-1;8193:4:0;7611:594;;;;:::o;3301:91::-;3372:12;;3301:91;:::o;6466:488::-;6548:4;-1:-1:-1;;;;;6573:17:0;;6565:26;;;;;;-1:-1:-1;;;;;6620:15:0;;:8;:15;;;;;;;;;;;6610:25;;;6602:34;;;;;;-1:-1:-1;;;;;6665:14:0;;;;;;:7;:14;;;;;;;;6680:10;6665:26;;;;;;;;6655:36;;;6647:45;;;;;;-1:-1:-1;;;;;6723:15:0;;:8;:15;;;;;;;;;;;:27;;6743:6;6723:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6705:15:0;;;:8;:15;;;;;;;;;;;:45;;;;6777:13;;;;;;;:25;;6795:6;6777:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6761:13:0;;;:8;:13;;;;;;;;;;;:41;;;;6842:14;;;;;:7;:14;;;;;6857:10;6842:26;;;;;;;:38;;6873:6;6842:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6813:14:0;;;;;;;:7;:14;;;;;;;;6828:10;6813:26;;;;;;;;:67;;;;6896:28;;;;;;;;;;;6813:14;;-1:-1:-1;;;;;;;;;;;6896:28:0;;;;;;;;;;-1:-1:-1;6942:4:0;6466:488;;;;;:::o;11296:78::-;11337:37;11296:78;:::o;11252:37::-;11287:2;11252:37;:::o;4631:81::-;4679:25;4685:10;4697:6;4679:5;:25::i;:::-;4631:81;:::o;9947:450::-;10071:10;10030:4;10063:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10063:29:0;;;;;;;;;;10107:27;;;10103:188;;;10159:10;10183:1;10151:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10151:29:0;;;;;;;;;:33;10103:188;;;10249:30;:8;10262:16;10249:30;:12;:30;:::i;:::-;10225:10;10217:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10217:29:0;;;;;;;;;:62;10103:188;10315:10;10337:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10306:61:0;;10337:29;;;;;;;;;;;10306:61;;;;;;;;;10315:10;10306:61;;;;;;;;;;;-1:-1:-1;10385:4:0;;9947:450;-1:-1:-1;;;9947:450:0:o;4141:107::-;-1:-1:-1;;;;;4224:16:0;4197:7;4224:16;;;;;;;;;;;;4141:107::o;291:20::-;;;-1:-1:-1;;;;;291:20:0;;:::o;11208:37::-;;;;;;;;;;;;;;-1:-1:-1;;;11208:37:0;;;;:::o;3565:355::-;3628:4;-1:-1:-1;;;;;3653:17:0;;3645:26;;;;;;3709:10;3700:8;:20;;;;;;;;;;;3690:30;;;3682:39;;;;;;3766:10;3757:8;:20;;;;;;;;;;;:32;;3782:6;3757:32;:24;:32;:::i;:::-;3743:10;3734:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3816:13:0;;;;;;:25;;3834:6;3816:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3800:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3857:33;;;;;;;3800:13;;3866:10;;-1:-1:-1;;;;;;;;;;;3857:33:0;;;;;;;;;-1:-1:-1;3908:4:0;3565:355;;;;:::o;10702:365::-;747:5;;10834:4;;-1:-1:-1;;;;;747:5:0;733:10;:19;725:28;;;;;;10860:6;10856:79;;;10898:12;;:25;;10915:7;10898:25;:16;:25;:::i;:::-;10883:12;:40;10856:79;-1:-1:-1;;;;;10961:13:0;;:8;:13;;;;;;;;;;;:26;;10979:7;10961:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10945:13:0;;:8;:13;;;;;;;;;;;:42;;;;11003:34;;;;;;;10945:13;;:8;;-1:-1:-1;;;;;;;;;;;11003:34:0;;;;;;;;;-1:-1:-1;11055:4:0;10702:365;;;;;:::o;9171:280::-;9306:10;9249:4;9298:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9298:29:0;;;;;;;;;;:46;;9332:11;9298:46;:33;:46;:::i;:::-;9274:10;9266:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9266:29:0;;;;;;;;;;;;:78;;;9360:61;;;;;;9266:29;;9360:61;;;;;;;;;;;-1:-1:-1;9439:4:0;9171:280;;;;:::o;8546:134::-;-1:-1:-1;;;;;8647:15:0;;;8620:7;8647:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;8546:134::o;950:192::-;747:5;;-1:-1:-1;;;;;747:5:0;733:10;:19;725:28;;;;;;-1:-1:-1;;;;;1031:22:0;;1023:31;;;;;;1091:5;;1070:37;;-1:-1:-1;;;;;1070:37:0;;;;1091:5;;1070:37;;1091:5;;1070:37;1118:5;:16;;-1:-1:-1;;;;;;1118:16:0;-1:-1:-1;;;;;1118:16:0;;;;;;;;;;950:192::o;2101:123::-;2159:7;2191:1;2186;:6;;2179:14;;;;-1:-1:-1;2211:5:0;;;2101:123::o;2299:141::-;2383:5;;;2406:6;;;;2399:14;;;;2299:141;;;;:::o;4720:477::-;-1:-1:-1;;;;;4803:14:0;;:8;:14;;;;;;;;;;;4793:24;;;4785:33;;;;;;-1:-1:-1;;;;;5029:14:0;;:8;:14;;;;;;;;;;;:26;;5048:6;5029:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;5012:14:0;;:8;:14;;;;;;;;;;:43;5081:12;;:24;;5098:6;5081:24;:16;:24;:::i;:::-;5066:12;:39;5121:18;;;;;;;;-1:-1:-1;;;;;5121:18:0;;;;;;;;;;;;;5155:34;;;;;;;;5178:1;;-1:-1:-1;;;;;5155:34:0;;;-1:-1:-1;;;;;;;;;;;5155:34:0;;;;;;;;4720:477;;:::o

Swarm Source

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