Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
50,000,000 CMCC
Holders
67
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xB8E3B0Ba...53e99fBb4 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TokenStandard
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-25 */ /* * _____ _ __ __ _ _ * | __ \ | | \ \ / / | | | | * | |__) | __ ___ ___ __ _| | ___ \ \ /\ / /__ _ __| | __| | * | ___/ '__/ _ \/ __|/ _` | |/ _ \ \ \/ \/ / _ \| '__| |/ _` | * | | | | | __/\__ \ (_| | | __/ \ /\ / (_) | | | | (_| | * |_| |_| \___||___/\__,_|_|\___| \/ \/ \___/|_| |_|\__,_| * * Token generated on https://presale.world * * SPDX-License-Identifier: MIT */ pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) // pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: contracts/tokens/TokenStandard.sol // pragma solidity ^0.8.14; contract TokenStandard is Ownable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; constructor(string memory tokenName, string memory tokenSymbol, uint8 tokenDecimals, uint256 tokenTotalSupply, address newOwner) { _name = tokenName; _symbol = tokenSymbol; _decimals = tokenDecimals; uint256 newTotalSupply = tokenTotalSupply * 10 ** tokenDecimals; _totalSupply = newTotalSupply; _balances[newOwner] = newTotalSupply; emit Transfer(address(0), newOwner, newTotalSupply); transferOwnership(newOwner); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()] - amount ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender] - amount; _balances[recipient] = _balances[recipient] + amount; emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"},{"internalType":"uint256","name":"tokenTotalSupply","type":"uint256"},{"internalType":"address","name":"newOwner","type":"address"}],"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":"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200101c3803806200101c8339810160408190526200003491620002ef565b6200003f33620000fd565b60016200004d86826200042e565b5060026200005c85826200042e565b506003805460ff191660ff851617905560006200007b84600a6200060f565b62000087908462000627565b60048190556001600160a01b0383166000818152600560205260408082208490555192935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620000de9085815260200190565b60405180910390a3620000f1826200014d565b50505050505062000649565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116620002145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620001a4565b6200021f81620000fd565b50565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200024a57600080fd5b81516001600160401b038082111562000267576200026762000222565b604051601f8301601f19908116603f0116810190828211818310171562000292576200029262000222565b81604052838152602092508683858801011115620002af57600080fd5b600091505b83821015620002d35785820183015181830184015290820190620002b4565b83821115620002e55760008385830101525b9695505050505050565b600080600080600060a086880312156200030857600080fd5b85516001600160401b03808211156200032057600080fd5b6200032e89838a0162000238565b965060208801519150808211156200034557600080fd5b50620003548882890162000238565b945050604086015160ff811681146200036c57600080fd5b6060870151608088015191945092506001600160a01b03811681146200039157600080fd5b809150509295509295909350565b600181811c90821680620003b457607f821691505b602082108103620003d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200042957600081815260208120601f850160051c81016020861015620004045750805b601f850160051c820191505b81811015620004255782815560010162000410565b5050505b505050565b81516001600160401b038111156200044a576200044a62000222565b62000462816200045b84546200039f565b84620003db565b602080601f8311600181146200049a5760008415620004815750858301515b600019600386901b1c1916600185901b17855562000425565b600085815260208120601f198616915b82811015620004cb57888601518255948401946001909101908401620004aa565b5085821015620004ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000551578160001904821115620005355762000535620004fa565b808516156200054357918102915b93841c939080029062000515565b509250929050565b6000826200056a5750600162000609565b81620005795750600062000609565b81600181146200059257600281146200059d57620005bd565b600191505062000609565b60ff841115620005b157620005b1620004fa565b50506001821b62000609565b5060208310610133831016604e8410600b8410161715620005e2575081810a62000609565b620005ee838362000510565b8060001904821115620006055762000605620004fa565b0290505b92915050565b60006200062060ff84168362000559565b9392505050565b6000816000190483118215151615620006445762000644620004fa565b500290565b6109c380620006596000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101d3578063a9059cbb146101e6578063dd62ed3e146101f9578063f2fde38b1461023257600080fd5b8063715018a6146101a65780638da5cb5b146101b057806395d89b41146101cb57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610245565b60405161010491906107e2565b60405180910390f35b61012061011b366004610853565b6102d7565b6040519015158152602001610104565b6004545b604051908152602001610104565b61012061015036600461087d565b6102ed565b60035460405160ff9091168152602001610104565b610120610178366004610853565b61033f565b61013461018b3660046108b9565b6001600160a01b031660009081526005602052604090205490565b6101ae610376565b005b6000546040516001600160a01b039091168152602001610104565b6100f76103e1565b6101206101e1366004610853565b6103f0565b6101206101f4366004610853565b610427565b6101346102073660046108db565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6101ae6102403660046108b9565b610434565b6060600180546102549061090e565b80601f01602080910402602001604051908101604052809291908181526020018280546102809061090e565b80156102cd5780601f106102a2576101008083540402835291602001916102cd565b820191906000526020600020905b8154815290600101906020018083116102b057829003601f168201915b5050505050905090565b60006102e43384846104ff565b50600192915050565b60006102fa848484610624565b6001600160a01b03841660009081526006602090815260408083203380855292529091205461033591869161033090869061095e565b6104ff565b5060019392505050565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102e4918590610330908690610975565b6000546001600160a01b031633146103d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103df6000610792565b565b6060600280546102549061090e565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102e491859061033090869061095e565b60006102e4338484610624565b6000546001600160a01b0316331461048e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103cc565b6001600160a01b0381166104f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cc565b6104fc81610792565b50565b6001600160a01b0383166105615760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cc565b6001600160a01b0382166105c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cc565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cc565b6001600160a01b0382166106ea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cc565b6001600160a01b03831660009081526005602052604090205461070e90829061095e565b6001600160a01b03808516600090815260056020526040808220939093559084168152205461073e908290610975565b6001600160a01b0380841660008181526005602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106179085815260200190565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561080f578581018301518582016040015282016107f3565b81811115610821576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461084e57600080fd5b919050565b6000806040838503121561086657600080fd5b61086f83610837565b946020939093013593505050565b60008060006060848603121561089257600080fd5b61089b84610837565b92506108a960208501610837565b9150604084013590509250925092565b6000602082840312156108cb57600080fd5b6108d482610837565b9392505050565b600080604083850312156108ee57600080fd5b6108f783610837565b915061090560208401610837565b90509250929050565b600181811c9082168061092257607f821691505b60208210810361094257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561097057610970610948565b500390565b6000821982111561098857610988610948565b50019056fea2646970667358221220fdb29d71d8588b0a7cbf9fd81ddba975697ed6b9828cecc648a93a029e2ab96364736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000f424000000000000000000000000023627f5848250128f768df350d401c6a4c7934520000000000000000000000000000000000000000000000000000000000000009475374616e6461726400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009475374616e646172640000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101d3578063a9059cbb146101e6578063dd62ed3e146101f9578063f2fde38b1461023257600080fd5b8063715018a6146101a65780638da5cb5b146101b057806395d89b41146101cb57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610245565b60405161010491906107e2565b60405180910390f35b61012061011b366004610853565b6102d7565b6040519015158152602001610104565b6004545b604051908152602001610104565b61012061015036600461087d565b6102ed565b60035460405160ff9091168152602001610104565b610120610178366004610853565b61033f565b61013461018b3660046108b9565b6001600160a01b031660009081526005602052604090205490565b6101ae610376565b005b6000546040516001600160a01b039091168152602001610104565b6100f76103e1565b6101206101e1366004610853565b6103f0565b6101206101f4366004610853565b610427565b6101346102073660046108db565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6101ae6102403660046108b9565b610434565b6060600180546102549061090e565b80601f01602080910402602001604051908101604052809291908181526020018280546102809061090e565b80156102cd5780601f106102a2576101008083540402835291602001916102cd565b820191906000526020600020905b8154815290600101906020018083116102b057829003601f168201915b5050505050905090565b60006102e43384846104ff565b50600192915050565b60006102fa848484610624565b6001600160a01b03841660009081526006602090815260408083203380855292529091205461033591869161033090869061095e565b6104ff565b5060019392505050565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102e4918590610330908690610975565b6000546001600160a01b031633146103d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103df6000610792565b565b6060600280546102549061090e565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102e491859061033090869061095e565b60006102e4338484610624565b6000546001600160a01b0316331461048e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103cc565b6001600160a01b0381166104f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cc565b6104fc81610792565b50565b6001600160a01b0383166105615760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cc565b6001600160a01b0382166105c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cc565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cc565b6001600160a01b0382166106ea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cc565b6001600160a01b03831660009081526005602052604090205461070e90829061095e565b6001600160a01b03808516600090815260056020526040808220939093559084168152205461073e908290610975565b6001600160a01b0380841660008181526005602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106179085815260200190565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561080f578581018301518582016040015282016107f3565b81811115610821576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461084e57600080fd5b919050565b6000806040838503121561086657600080fd5b61086f83610837565b946020939093013593505050565b60008060006060848603121561089257600080fd5b61089b84610837565b92506108a960208501610837565b9150604084013590509250925092565b6000602082840312156108cb57600080fd5b6108d482610837565b9392505050565b600080604083850312156108ee57600080fd5b6108f783610837565b915061090560208401610837565b90509250929050565b600181811c9082168061092257607f821691505b60208210810361094257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561097057610970610948565b500390565b6000821982111561098857610988610948565b50019056fea2646970667358221220fdb29d71d8588b0a7cbf9fd81ddba975697ed6b9828cecc648a93a029e2ab96364736f6c634300080f0033
Deployed Bytecode Sourcemap
6886:7073:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7756:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9902:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9902:169:0;1053:187:1;8855:108:0;8943:12;;8855:108;;;1391:25:1;;;1379:2;1364:18;8855:108:0;1245:177:1;10553:298:0;;;;;;:::i;:::-;;:::i;8699:91::-;8773:9;;8699:91;;8773:9;;;;1902:36:1;;1890:2;1875:18;8699:91:0;1760:184:1;11260:239:0;;;;;;:::i;:::-;;:::i;9026:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9127:18:0;9100:7;9127:18;;;:9;:18;;;;;;;9026:127;3113:103;;;:::i;:::-;;2462:87;2508:7;2535:6;2462:87;;-1:-1:-1;;;;;2535:6:0;;;2286:51:1;;2274:2;2259:18;2462:87:0;2140:203:1;7966:95:0;;;:::i;12002:249::-;;;;;;:::i;:::-;;:::i;9366:175::-;;;;;;:::i;:::-;;:::i;9604:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9720:18:0;;;9693:7;9720:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9604:151;3371:201;;;;;;:::i;:::-;;:::i;7756:91::-;7801:13;7834:5;7827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7756:91;:::o;9902:169::-;9985:4;10002:39;1269:10;10025:7;10034:6;10002:8;:39::i;:::-;-1:-1:-1;10059:4:0;9902:169;;;;:::o;10553:298::-;10659:4;10676:36;10686:6;10694:9;10705:6;10676:9;:36::i;:::-;-1:-1:-1;;;;;10768:19:0;;;;;;:11;:19;;;;;;;;1269:10;10768:33;;;;;;;;;10723:98;;10746:6;;10768:42;;10804:6;;10768:42;:::i;:::-;10723:8;:98::i;:::-;-1:-1:-1;10839:4:0;10553:298;;;;;:::o;11260:239::-;1269:10;11348:4;11411:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11411:34:0;;;;;;;;;;11348:4;;11365:104;;11402:7;;11411:47;;11448:10;;11411:47;:::i;3113:103::-;2508:7;2535:6;-1:-1:-1;;;;;2535:6:0;1269:10;2682:23;2674:68;;;;-1:-1:-1;;;2674:68:0;;3595:2:1;2674:68:0;;;3577:21:1;;;3614:18;;;3607:30;3673:34;3653:18;;;3646:62;3725:18;;2674:68:0;;;;;;;;;3178:30:::1;3205:1;3178:18;:30::i;:::-;3113:103::o:0;7966:95::-;8013:13;8046:7;8039:14;;;;;:::i;12002:249::-;1269:10;12095:4;12158:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12158:34:0;;;;;;;;;;12095:4;;12112:109;;12149:7;;12158:52;;12195:15;;12158:52;:::i;9366:175::-;9452:4;9469:42;1269:10;9493:9;9504:6;9469:9;:42::i;3371:201::-;2508:7;2535:6;-1:-1:-1;;;;;2535:6:0;1269:10;2682:23;2674:68;;;;-1:-1:-1;;;2674:68:0;;3595:2:1;2674:68:0;;;3577:21:1;;;3614:18;;;3607:30;3673:34;3653:18;;;3646:62;3725:18;;2674:68:0;3393:356:1;2674:68:0;-1:-1:-1;;;;;3460:22:0;::::1;3452:73;;;::::0;-1:-1:-1;;;3452:73:0;;3956:2:1;3452:73:0::1;::::0;::::1;3938:21:1::0;3995:2;3975:18;;;3968:30;4034:34;4014:18;;;4007:62;-1:-1:-1;;;4085:18:1;;;4078:36;4131:19;;3452:73:0::1;3754:402:1::0;3452:73:0::1;3536:28;3555:8;3536:18;:28::i;:::-;3371:201:::0;:::o;13610:346::-;-1:-1:-1;;;;;13712:19:0;;13704:68;;;;-1:-1:-1;;;13704:68:0;;4363:2:1;13704:68:0;;;4345:21:1;4402:2;4382:18;;;4375:30;4441:34;4421:18;;;4414:62;-1:-1:-1;;;4492:18:1;;;4485:34;4536:19;;13704:68:0;4161:400:1;13704:68:0;-1:-1:-1;;;;;13791:21:0;;13783:68;;;;-1:-1:-1;;;13783:68:0;;4768:2:1;13783:68:0;;;4750:21:1;4807:2;4787:18;;;4780:30;4846:34;4826:18;;;4819:62;-1:-1:-1;;;4897:18:1;;;4890:32;4939:19;;13783:68:0;4566:398:1;13783:68:0;-1:-1:-1;;;;;13864:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13916:32;;1391:25:1;;;13916:32:0;;1364:18:1;13916:32:0;;;;;;;;13610:346;;;:::o;12741:431::-;-1:-1:-1;;;;;12847:20:0;;12839:70;;;;-1:-1:-1;;;12839:70:0;;5171:2:1;12839:70:0;;;5153:21:1;5210:2;5190:18;;;5183:30;5249:34;5229:18;;;5222:62;-1:-1:-1;;;5300:18:1;;;5293:35;5345:19;;12839:70:0;4969:401:1;12839:70:0;-1:-1:-1;;;;;12928:23:0;;12920:71;;;;-1:-1:-1;;;12920:71:0;;5577:2:1;12920:71:0;;;5559:21:1;5616:2;5596:18;;;5589:30;5655:34;5635:18;;;5628:62;-1:-1:-1;;;5706:18:1;;;5699:33;5749:19;;12920:71:0;5375:399:1;12920:71:0;-1:-1:-1;;;;;13024:17:0;;;;;;:9;:17;;;;;;:26;;13044:6;;13024:26;:::i;:::-;-1:-1:-1;;;;;13004:17:0;;;;;;;:9;:17;;;;;;:46;;;;13084:20;;;;;;;:29;;13107:6;;13084:29;:::i;:::-;-1:-1:-1;;;;;13061:20:0;;;;;;;:9;:20;;;;;;;:52;;;;13129:35;;;;;;;;;;13157:6;1391:25:1;;1379:2;1364:18;;1245:177;3732:191:0;3806:16;3825:6;;-1:-1:-1;;;;;3842:17:0;;;-1:-1:-1;;;;;;3842:17:0;;;;;;3875:40;;3825:6;;;;;;;3875:40;;3806:16;3875:40;3795:128;3732:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;3260:128::-;3300:3;3331:1;3327:6;3324:1;3321:13;3318:39;;;3337:18;;:::i;:::-;-1:-1:-1;3373:9:1;;3260:128::o
Swarm Source
ipfs://fdb29d71d8588b0a7cbf9fd81ddba975697ed6b9828cecc648a93a029e2ab963
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.