ETH Price: $2,670.48 (+0.62%)
Gas: 23 Gwei

Token

CreaEther (CETH)
 

Overview

Max Total Supply

100,000,000,000 CETH

Holders

5

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:
Token

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.5.0;


// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
library SafeMath {
    function add(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function sub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function mul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
} 


// ----------------------------------------------------------------------------
// ERC Toke n Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
    function totalSupply() public view returns (uint);
    function balanceOf(address tokenOwner) public view returns (uint balance);
    function allowance(address tokenOwner, address spender) public view returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = 0xfc86838fE40158a0650F37d86A1ecDbb5c42c010;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and a
// fixed supply
// ----------------------------------------------------------------------------
contract Token is ERC20Interface, Owned {
    using SafeMath for uint;

    string public symbol;
    string public  name;
    uint8 public decimals;
    uint _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() public { 
        name = "CreaEther";
        symbol = "CETH";
        decimals = 18;
        _totalSupply = 100000000000 * 10**uint(decimals);
        balances[owner] = _totalSupply;
        emit Transfer(address(0), owner, _totalSupply);
    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public view returns (uint) {
        return _totalSupply.sub(balances[address(0)]);
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account `tokenOwner`
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public view returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to `to` account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = balances[msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        emit Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer `tokens` from the `from` account to the `to` account
    //
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the `from` account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = balances[from].sub(tokens);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        emit Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public view returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account. The `spender` contract function
    // `receiveApproval(...)` is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data);
        return true;
    }


    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    function () external payable {
        revert();
    }


    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
    
    
     function mint(address account, uint256 amount) onlyOwner public returns (bool) {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        balances[account] = balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    
    function burn(address account, uint256 amount) onlyOwner public returns (bool) {
        require(account != address(0), "ERC20: burn from the zero address");

        balances[account] = balances[account].sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
   
    
    

}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","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":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"internalType":"bool","name":"success","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":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","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"}]

608060405234801561001057600080fd5b50600080546001600160a01b03191673fc86838fe40158a0650f37d86a1ecdbb5c42c0101790556040805180820190915260098082526821b932b0a2ba3432b960b91b602090920191825261006791600391610113565b50604080518082019091526004808252630868aa8960e31b602090920191825261009391600291610113565b5060048054601260ff19909116179081905560ff16600a0a64174876e800026005819055600080546001600160a01b0390811682526006602090815260408084208590558354815195865290519216937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36101ae565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015457805160ff1916838001178555610181565b82800160010185558215610181579182015b82811115610181578251825591602001919060010190610166565b5061018d929150610191565b5090565b6101ab91905b8082111561018d5760008155600101610197565b90565b610ddf806101bd6000396000f3fe6080604052600436106100fe5760003560e01c80638da5cb5b11610095578063cae9ca5111610064578063cae9ca51146103aa578063d4ee1d9014610472578063dc39d06d14610487578063dd62ed3e146104c0578063f2fde38b146104fb576100fe565b80638da5cb5b146102f257806395d89b41146103235780639dc29fac14610338578063a9059cbb14610371576100fe565b8063313ce567116100d1578063313ce5671461024457806340c10f191461026f57806370a08231146102a857806379ba5097146102db576100fe565b806306fdde0314610103578063095ea7b31461018d57806318160ddd146101da57806323b872dd14610201575b600080fd5b34801561010f57600080fd5b5061011861052e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019957600080fd5b506101c6600480360360408110156101b057600080fd5b506001600160a01b0381351690602001356105bc565b604080519115158252519081900360200190f35b3480156101e657600080fd5b506101ef610623565b60408051918252519081900360200190f35b34801561020d57600080fd5b506101c66004803603606081101561022457600080fd5b506001600160a01b03813581169160208101359091169060400135610666565b34801561025057600080fd5b5061025961075f565b6040805160ff9092168252519081900360200190f35b34801561027b57600080fd5b506101c66004803603604081101561029257600080fd5b506001600160a01b038135169060200135610768565b3480156102b457600080fd5b506101ef600480360360208110156102cb57600080fd5b50356001600160a01b0316610862565b3480156102e757600080fd5b506102f061087d565b005b3480156102fe57600080fd5b506103076108f8565b604080516001600160a01b039092168252519081900360200190f35b34801561032f57600080fd5b50610118610907565b34801561034457600080fd5b506101c66004803603604081101561035b57600080fd5b506001600160a01b03813516906020013561095f565b34801561037d57600080fd5b506101c66004803603604081101561039457600080fd5b506001600160a01b038135169060200135610a49565b3480156103b657600080fd5b506101c6600480360360608110156103cd57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103fd57600080fd5b82018360208201111561040f57600080fd5b8035906020019184600183028401116401000000008311171561043157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ae7945050505050565b34801561047e57600080fd5b50610307610c2f565b34801561049357600080fd5b506101c6600480360360408110156104aa57600080fd5b506001600160a01b038135169060200135610c3e565b3480156104cc57600080fd5b506101ef600480360360408110156104e357600080fd5b506001600160a01b0381358116916020013516610ce0565b34801561050757600080fd5b506102f06004803603602081101561051e57600080fd5b50356001600160a01b0316610d0b565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005546106619163ffffffff610d4416565b905090565b6001600160a01b03831660009081526006602052604081205461068f908363ffffffff610d4416565b6001600160a01b03851660009081526006602090815260408083209390935560078152828220338352905220546106cc908363ffffffff610d4416565b6001600160a01b038086166000908152600760209081526040808320338452825280832094909455918616815260069091522054610710908363ffffffff610d5916565b6001600160a01b038085166000818152600660209081526040918290209490945580518681529051919392881692600080516020610d6a83398151915292918290030190a35060019392505050565b60045460ff1681565b600080546001600160a01b0316331461078057600080fd5b6001600160a01b0383166107db576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546107ee908363ffffffff610d5916565b6005556001600160a01b03831660009081526006602052604090205461081a908363ffffffff610d5916565b6001600160a01b0384166000818152600660209081526040808320949094558351868152935192939192600080516020610d6a8339815191529281900390910190a392915050565b6001600160a01b031660009081526006602052604090205490565b6001546001600160a01b0316331461089457600080fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000546001600160a01b031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105b45780601f10610589576101008083540402835291602001916105b4565b600080546001600160a01b0316331461097757600080fd5b6001600160a01b0383166109bc5760405162461bcd60e51b8152600401808060200182810382526021815260200180610d8a6021913960400191505060405180910390fd5b6001600160a01b0383166000908152600660205260409020546109e5908363ffffffff610d4416565b6001600160a01b038416600090815260066020526040902055600554610a11908363ffffffff610d4416565b6005556040805183815290516000916001600160a01b03861691600080516020610d6a8339815191529181900360200190a392915050565b33600090815260066020526040812054610a69908363ffffffff610d4416565b33600090815260066020526040808220929092556001600160a01b03851681522054610a9b908363ffffffff610d5916565b6001600160a01b038416600081815260066020908152604091829020939093558051858152905191923392600080516020610d6a8339815191529281900390910190a350600192915050565b3360008181526007602090815260408083206001600160a01b038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a3604051638f4ffcb160e01b815233600482018181526024830186905230604484018190526080606485019081528651608486015286516001600160a01b038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015610bbe578181015183820152602001610ba6565b50505050905090810190601f168015610beb5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610c0d57600080fd5b505af1158015610c21573d6000803e3d6000fd5b506001979650505050505050565b6001546001600160a01b031681565b600080546001600160a01b03163314610c5657600080fd5b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610cad57600080fd5b505af1158015610cc1573d6000803e3d6000fd5b505050506040513d6020811015610cd757600080fd5b50519392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610d2257600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610d5357600080fd5b50900390565b8181018281101561061d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f2061646472657373a265627a7a7231582003880983ea6346d2f794a5634ee5f628212fe0c24d0c97045df461c1d373ba3264736f6c63430005110032

Deployed Bytecode

0x6080604052600436106100fe5760003560e01c80638da5cb5b11610095578063cae9ca5111610064578063cae9ca51146103aa578063d4ee1d9014610472578063dc39d06d14610487578063dd62ed3e146104c0578063f2fde38b146104fb576100fe565b80638da5cb5b146102f257806395d89b41146103235780639dc29fac14610338578063a9059cbb14610371576100fe565b8063313ce567116100d1578063313ce5671461024457806340c10f191461026f57806370a08231146102a857806379ba5097146102db576100fe565b806306fdde0314610103578063095ea7b31461018d57806318160ddd146101da57806323b872dd14610201575b600080fd5b34801561010f57600080fd5b5061011861052e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019957600080fd5b506101c6600480360360408110156101b057600080fd5b506001600160a01b0381351690602001356105bc565b604080519115158252519081900360200190f35b3480156101e657600080fd5b506101ef610623565b60408051918252519081900360200190f35b34801561020d57600080fd5b506101c66004803603606081101561022457600080fd5b506001600160a01b03813581169160208101359091169060400135610666565b34801561025057600080fd5b5061025961075f565b6040805160ff9092168252519081900360200190f35b34801561027b57600080fd5b506101c66004803603604081101561029257600080fd5b506001600160a01b038135169060200135610768565b3480156102b457600080fd5b506101ef600480360360208110156102cb57600080fd5b50356001600160a01b0316610862565b3480156102e757600080fd5b506102f061087d565b005b3480156102fe57600080fd5b506103076108f8565b604080516001600160a01b039092168252519081900360200190f35b34801561032f57600080fd5b50610118610907565b34801561034457600080fd5b506101c66004803603604081101561035b57600080fd5b506001600160a01b03813516906020013561095f565b34801561037d57600080fd5b506101c66004803603604081101561039457600080fd5b506001600160a01b038135169060200135610a49565b3480156103b657600080fd5b506101c6600480360360608110156103cd57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103fd57600080fd5b82018360208201111561040f57600080fd5b8035906020019184600183028401116401000000008311171561043157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ae7945050505050565b34801561047e57600080fd5b50610307610c2f565b34801561049357600080fd5b506101c6600480360360408110156104aa57600080fd5b506001600160a01b038135169060200135610c3e565b3480156104cc57600080fd5b506101ef600480360360408110156104e357600080fd5b506001600160a01b0381358116916020013516610ce0565b34801561050757600080fd5b506102f06004803603602081101561051e57600080fd5b50356001600160a01b0316610d0b565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005546106619163ffffffff610d4416565b905090565b6001600160a01b03831660009081526006602052604081205461068f908363ffffffff610d4416565b6001600160a01b03851660009081526006602090815260408083209390935560078152828220338352905220546106cc908363ffffffff610d4416565b6001600160a01b038086166000908152600760209081526040808320338452825280832094909455918616815260069091522054610710908363ffffffff610d5916565b6001600160a01b038085166000818152600660209081526040918290209490945580518681529051919392881692600080516020610d6a83398151915292918290030190a35060019392505050565b60045460ff1681565b600080546001600160a01b0316331461078057600080fd5b6001600160a01b0383166107db576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546107ee908363ffffffff610d5916565b6005556001600160a01b03831660009081526006602052604090205461081a908363ffffffff610d5916565b6001600160a01b0384166000818152600660209081526040808320949094558351868152935192939192600080516020610d6a8339815191529281900390910190a392915050565b6001600160a01b031660009081526006602052604090205490565b6001546001600160a01b0316331461089457600080fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000546001600160a01b031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105b45780601f10610589576101008083540402835291602001916105b4565b600080546001600160a01b0316331461097757600080fd5b6001600160a01b0383166109bc5760405162461bcd60e51b8152600401808060200182810382526021815260200180610d8a6021913960400191505060405180910390fd5b6001600160a01b0383166000908152600660205260409020546109e5908363ffffffff610d4416565b6001600160a01b038416600090815260066020526040902055600554610a11908363ffffffff610d4416565b6005556040805183815290516000916001600160a01b03861691600080516020610d6a8339815191529181900360200190a392915050565b33600090815260066020526040812054610a69908363ffffffff610d4416565b33600090815260066020526040808220929092556001600160a01b03851681522054610a9b908363ffffffff610d5916565b6001600160a01b038416600081815260066020908152604091829020939093558051858152905191923392600080516020610d6a8339815191529281900390910190a350600192915050565b3360008181526007602090815260408083206001600160a01b038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a3604051638f4ffcb160e01b815233600482018181526024830186905230604484018190526080606485019081528651608486015286516001600160a01b038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015610bbe578181015183820152602001610ba6565b50505050905090810190601f168015610beb5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610c0d57600080fd5b505af1158015610c21573d6000803e3d6000fd5b506001979650505050505050565b6001546001600160a01b031681565b600080546001600160a01b03163314610c5657600080fd5b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610cad57600080fd5b505af1158015610cc1573d6000803e3d6000fd5b505050506040513d6020811015610cd757600080fd5b50519392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610d2257600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610d5357600080fd5b50900390565b8181018281101561061d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f2061646472657373a265627a7a7231582003880983ea6346d2f794a5634ee5f628212fe0c24d0c97045df461c1d373ba3264736f6c63430005110032

Deployed Bytecode Sourcemap

3186:6141:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8178:8;;;3292:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3292:19: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;3292:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5711:208;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5711:208:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5711:208:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4116:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4116:114:0;;;:::i;:::-;;;;;;;;;;;;;;;;6462:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6462:343:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6462:343:0;;;;;;;;;;;;;;;;;:::i;3318:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3318:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8635:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8635:326:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8635:326:0;;;;;;;;:::i;4457:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4457:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4457:120:0;-1:-1:-1;;;;;4457:120:0;;:::i;2732:196::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2732:196:0;;;:::i;:::-;;2302:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2302:20:0;;;:::i;:::-;;;;-1:-1:-1;;;;;2302:20:0;;;;;;;;;;;;;;3265;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3265:20:0;;;:::i;8975:330::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8975:330:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8975:330:0;;;;;;;;:::i;4928:267::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4928:267:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4928:267:0;;;;;;;;:::i;7608:333::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7608:333:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;7608:333:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;7608:333:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7608:333:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;7608:333:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;7608:333:0;;-1:-1:-1;7608:333:0;;-1:-1:-1;;;;;7608:333:0:i;2329:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2329:23:0;;;:::i;8432:184::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8432:184:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8432:184:0;;;;;;;;:::i;7093:147::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7093:147:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7093:147:0;;;;;;;;;;:::i;2624:102::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2624:102:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2624:102:0;-1:-1:-1;;;;;2624:102:0;;:::i;3292:19::-;;;;;;;;;;;;;;;-1:-1:-1;;3292:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5711:208::-;5807:10;5774:12;5799:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5799:28:0;;;;;;;;;;;:37;;;5852;;;;;;;5774:12;;5799:28;;5807:10;;5852:37;;;;;;;;-1:-1:-1;5907:4:0;5711:208;;;;;:::o;4116:114::-;4160:4;4201:20;;;:8;:20;;;;4184:12;;:38;;;:16;:38;:::i;:::-;4177:45;;4116:114;:::o;6462:343::-;-1:-1:-1;;;;;6581:14:0;;6539:12;6581:14;;;:8;:14;;;;;;:26;;6600:6;6581:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;6564:14:0;;;;;;:8;:14;;;;;;;;:43;;;;6646:7;:13;;;;;6660:10;6646:25;;;;;;:37;;6676:6;6646:37;:29;:37;:::i;:::-;-1:-1:-1;;;;;6618:13:0;;;;;;;:7;:13;;;;;;;;6632:10;6618:25;;;;;;;:65;;;;6709:12;;;;;:8;:12;;;;;:24;;6726:6;6709:24;:16;:24;:::i;:::-;-1:-1:-1;;;;;6694:12:0;;;;;;;:8;:12;;;;;;;;;:39;;;;6749:26;;;;;;;6694:12;;6749:26;;;;-1:-1:-1;;;;;;;;;;;6749:26:0;;;;;;;;-1:-1:-1;6793:4:0;6462:343;;;;;:::o;3318:21::-;;;;;;:::o;8635:326::-;8708:4;2590:5;;-1:-1:-1;;;;;2590:5:0;2576:10;:19;2568:28;;;;;;-1:-1:-1;;;;;8733:21:0;;8725:65;;;;;-1:-1:-1;;;8725:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8816:12;;:24;;8833:6;8816:24;:16;:24;:::i;:::-;8801:12;:39;-1:-1:-1;;;;;8871:17:0;;;;;;:8;:17;;;;;;:29;;8893:6;8871:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;8851:17:0;;;;;;:8;:17;;;;;;;;:49;;;;8916:37;;;;;;;8851:17;;;;-1:-1:-1;;;;;;;;;;;8916:37:0;;;;;;;;;8635:326;;;;:::o;4457:120::-;-1:-1:-1;;;;;4549:20:0;4517:12;4549:20;;;:8;:20;;;;;;;4457:120::o;2732:196::-;2799:8;;-1:-1:-1;;;;;2799:8:0;2785:10;:22;2777:31;;;;;;2852:8;;;2845:5;;2824:37;;-1:-1:-1;;;;;2852:8:0;;;;2845:5;;;;2824:37;;;2880:8;;;;2872:16;;-1:-1:-1;;;;;;2872:16:0;;;-1:-1:-1;;;;;2880:8:0;;2872:16;;;;2899:21;;;2732:196::o;2302:20::-;;;-1:-1:-1;;;;;2302:20:0;;:::o;3265:::-;;;;;;;;;;;;;;-1:-1:-1;;3265:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8975:330;9048:4;2590:5;;-1:-1:-1;;;;;2590:5:0;2576:10;:19;2568:28;;;;;;-1:-1:-1;;;;;9073:21:0;;9065:67;;;;-1:-1:-1;;;9065:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9165:17:0;;;;;;:8;:17;;;;;;:29;;9187:6;9165:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;9145:17:0;;;;;;:8;:17;;;;;:49;9220:12;;:24;;9237:6;9220:24;:16;:24;:::i;:::-;9205:12;:39;9260:37;;;;;;;;9286:1;;-1:-1:-1;;;;;9260:37:0;;;-1:-1:-1;;;;;;;;;;;9260:37:0;;;;;;;;8975:330;;;;:::o;4928:267::-;5044:10;4987:12;5035:20;;;:8;:20;;;;;;:32;;5060:6;5035:32;:24;:32;:::i;:::-;5021:10;5012:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;5093:12:0;;;;;;:24;;5110:6;5093:24;:16;:24;:::i;:::-;-1:-1:-1;;;;;5078:12:0;;;;;;:8;:12;;;;;;;;;:39;;;;5133:32;;;;;;;5078:12;;5142:10;;-1:-1:-1;;;;;;;;;;;5133:32:0;;;;;;;;;-1:-1:-1;5183:4:0;4928:267;;;;:::o;7608:333::-;7730:10;7697:12;7722:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7722:28:0;;;;;;;;;;;:37;;;7775;;;;;;;7697:12;;7722:28;;7730:10;;7775:37;;;;;;;;7823:88;;-1:-1:-1;;;7823:88:0;;7871:10;7823:88;;;;;;;;;;;;7899:4;7823:88;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7823:47:0;;;;;7871:10;7883:6;;7899:4;7906;;7823:88;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7823:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7823:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;7929:4:0;;7608:333;-1:-1:-1;;;;;;;7608:333:0:o;2329:23::-;;;-1:-1:-1;;;;;2329:23:0;;:::o;8432:184::-;8524:12;2590:5;;-1:-1:-1;;;;;2590:5:0;2576:10;:19;2568:28;;;;;;8594:5;;;8556:52;;;-1:-1:-1;;;8556:52:0;;-1:-1:-1;;;;;8594:5:0;;;8556:52;;;;;;;;;;;;:37;;;;;;:52;;;;;;;;;;;;;;;;;:37;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;8556:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8556:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8556:52:0;;8432:184;-1:-1:-1;;;8432:184:0:o;7093:147::-;-1:-1:-1;;;;;7204:19:0;;;7170:14;7204:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;7093:147::o;2624:102::-;2590:5;;-1:-1:-1;;;;;2590:5:0;2576:10;:19;2568:28;;;;;;2698:8;:20;;-1:-1:-1;;;;;;2698:20:0;-1:-1:-1;;;;;2698:20:0;;;;;;;;;;2624:102::o;350:114::-;402:6;434:1;429;:6;;421:15;;;;;;-1:-1:-1;451:5:0;;;350:114::o;230:::-;305:5;;;329:6;;;;321:15;;;;

Swarm Source

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