ERC-20
Overview
Max Total Supply
100,000,000,000,000 CEASAR
Holders
86
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
222,003,144,741.449918324664737741 CEASARValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CeasarToken
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** ██████╗███████╗ █████╗ ███████╗ █████╗ ██████╗ ████████╗ ██████╗ ██╗ ██╗███████╗███╗ ██╗ ██╔════╝██╔════╝██╔══██╗██╔════╝██╔══██╗██╔══██╗ ╚══██╔══╝██╔═══██╗██║ ██╔╝██╔════╝████╗ ██║ ██║ █████╗ ███████║███████╗███████║██████╔╝ ██║ ██║ ██║█████╔╝ █████╗ ██╔██╗ ██║ ██║ ██╔══╝ ██╔══██║╚════██║██╔══██║██╔══██╗ ██║ ██║ ██║██╔═██╗ ██╔══╝ ██║╚██╗██║ ╚██████╗███████╗██║ ██║███████║██║ ██║██║ ██║ ██║ ╚██████╔╝██║ ██╗███████╗██║ ╚████║ ╚═════╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝ ######################### Welcome to CEASAR TOKEN >->-> https://ceasar.top <-<-< ######################### Total Supply : 100 trillions CEASAR ( 100 000 000 000 000 ) Circ. Supply : 100 trillions CEASAR ( 100 000 000 000 000 ) ----------- - NO buy tax - NO sell tax - NO transfer tax ----------- May 2023... was born in blockchain, ETH. Immutably yours. ######################################################*/ // SPDX-License-Identifier: MIT /// @title Ceasar Token /// @author KRS1 /// @notice Clean Token, No Taxes, No Presale /// @dev All function calls are currently implemented without side effects pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract CeasarToken is ERC20, Ownable { bool public IS_MAX_HOLDING_LIMITED = false; uint256 public TOTAL_SUPPLY = 100 * 10**12 * 10**18; // (default) 100 trillions uint256 public MAX_HOLDING_PERCENT = 2; // 5% => 5 trillion address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor( string memory name, string memory symbol, uint256 initialSupply ) ERC20(name, symbol) { _mint(msg.sender, initialSupply); TOTAL_SUPPLY = initialSupply; } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } // Set the address of the Uniswap V2 pair. function setLiquidity(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } /** * @dev Modifies the contract configuration parameters. * @param _is_Max_Holding_Limited Defines whether the maximum holding limit is enabled or disabled. default:true * @param _Max_Holding_Percent Defines the maximum allowed holding percentage. default:5% */ function setConfig(bool _is_Max_Holding_Limited, uint256 _Max_Holding_Percent) external onlyOwner { IS_MAX_HOLDING_LIMITED = _is_Max_Holding_Limited; MAX_HOLDING_PERCENT = _Max_Holding_Percent; } // Check if a transfer should be allowed.// Check if a transfer should be allowed. function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual { // Check if the sender or receiver is blacklisted. require(!blacklists[to] && !blacklists[from], "Blacklisted"); // Check if the Uniswap V2 pair has been set. if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "Liquidity LP is not defined yet"); return; } // Check if the maximum holding limit is enabled. if (IS_MAX_HOLDING_LIMITED && from == uniswapV2Pair && from != address(0) && to != address(0)) { // Calculate the maximum holding amount. uint256 maxHoldingAmount = (TOTAL_SUPPLY - balanceOf(address(this))) * MAX_HOLDING_PERCENT / 100; // Check if the transfer amount exceeds the maximum holding percentage. require(super.balanceOf(to) + amount <= maxHoldingAmount, "Transfer amount exceeds max holding percentage"); } } // Burn tokens. function burn(uint256 value) external { _burn(msg.sender, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 override returns (uint8) { return 18; } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), 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); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":[],"name":"IS_MAX_HOLDING_LIMITED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HOLDING_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"_is_Max_Holding_Limited","type":"bool"},{"internalType":"uint256","name":"_Max_Holding_Percent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setLiquidity","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600560146101000a81548160ff0219169083151502179055506d04ee2d6d415b85acef810000000060065560026007553480156200004357600080fd5b50604051620030e2380380620030e28339818101604052810190620000699190620009bc565b828281600390805190602001906200008392919062000734565b5080600490805190602001906200009c92919062000734565b505050620000bf620000b3620000e160201b60201c565b620000e960201b60201c565b620000d13382620001af60201b60201c565b8060068190555050505062000e77565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002199062000ab7565b60405180910390fd5b62000236600083836200031d60201b60201c565b80600260008282546200024a919062000b08565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002fd919062000b76565b60405180910390a36200031960008383620006bd60201b60201c565b5050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003c25750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000404576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fb9062000be3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141562000528576200046c620006c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004e05750620004b1620006c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000522576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005199062000c55565b60405180910390fd5b620006b8565b600560149054906101000a900460ff168015620005925750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015620005cc5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620006065750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15620006b757600060646007546200062430620006ec60201b60201c565b60065462000633919062000c77565b6200063f919062000cb2565b6200064b919062000d42565b905080826200066585620006ec60201b620006bf1760201c565b62000671919062000b08565b1115620006b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ac9062000df0565b60405180910390fd5b505b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620007429062000e41565b90600052602060002090601f016020900481019282620007665760008555620007b2565b82601f106200078157805160ff1916838001178555620007b2565b82800160010185558215620007b2579182015b82811115620007b157825182559160200191906001019062000794565b5b509050620007c19190620007c5565b5090565b5b80821115620007e0576000816000905550600101620007c6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200084d8262000802565b810181811067ffffffffffffffff821117156200086f576200086e62000813565b5b80604052505050565b600062000884620007e4565b905062000892828262000842565b919050565b600067ffffffffffffffff821115620008b557620008b462000813565b5b620008c08262000802565b9050602081019050919050565b60005b83811015620008ed578082015181840152602081019050620008d0565b83811115620008fd576000848401525b50505050565b60006200091a620009148462000897565b62000878565b905082815260208101848484011115620009395762000938620007fd565b5b62000946848285620008cd565b509392505050565b600082601f830112620009665762000965620007f8565b5b81516200097884826020860162000903565b91505092915050565b6000819050919050565b620009968162000981565b8114620009a257600080fd5b50565b600081519050620009b6816200098b565b92915050565b600080600060608486031215620009d857620009d7620007ee565b5b600084015167ffffffffffffffff811115620009f957620009f8620007f3565b5b62000a07868287016200094e565b935050602084015167ffffffffffffffff81111562000a2b5762000a2a620007f3565b5b62000a39868287016200094e565b925050604062000a4c86828701620009a5565b9150509250925092565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a9f601f8362000a56565b915062000aac8262000a67565b602082019050919050565b6000602082019050818103600083015262000ad28162000a90565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b158262000981565b915062000b228362000981565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b5a5762000b5962000ad9565b5b828201905092915050565b62000b708162000981565b82525050565b600060208201905062000b8d600083018462000b65565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000bcb600b8362000a56565b915062000bd88262000b93565b602082019050919050565b6000602082019050818103600083015262000bfe8162000bbc565b9050919050565b7f4c6971756964697479204c50206973206e6f7420646566696e65642079657400600082015250565b600062000c3d601f8362000a56565b915062000c4a8262000c05565b602082019050919050565b6000602082019050818103600083015262000c708162000c2e565b9050919050565b600062000c848262000981565b915062000c918362000981565b92508282101562000ca75762000ca662000ad9565b5b828203905092915050565b600062000cbf8262000981565b915062000ccc8362000981565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d085762000d0762000ad9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d4f8262000981565b915062000d5c8362000981565b92508262000d6f5762000d6e62000d13565b5b828204905092915050565b7f5472616e7366657220616d6f756e742065786365656473206d617820686f6c6460008201527f696e672070657263656e74616765000000000000000000000000000000000000602082015250565b600062000dd8602e8362000a56565b915062000de58262000d7a565b604082019050919050565b6000602082019050818103600083015262000e0b8162000dc9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e5a57607f821691505b6020821081141562000e715762000e7062000e12565b5b50919050565b61225b8062000e876000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806347d3a114116100c357806395d89b411161007c57806395d89b4114610390578063a457c2d7146103ae578063a9059cbb146103de578063b303c03a1461040e578063dd62ed3e1461042a578063f2fde38b1461045a5761014d565b806347d3a114146102de57806349bd5a5e146102fc57806370a082311461031a578063715018a61461034a5780638da5cb5b14610354578063902d55a5146103725761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c57806336171e0e1461025a5780633950935114610276578063404e5129146102a657806342966c68146102c25761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780632191bb53146101ee575b600080fd5b61015a610476565b6040516101679190611598565b60405180910390f35b61018a60048036038101906101859190611653565b610508565b60405161019791906116ae565b60405180910390f35b6101ba60048036038101906101b591906116c9565b61052b565b6040516101c791906116ae565b60405180910390f35b6101d861054b565b6040516101e59190611705565b60405180910390f35b6101f6610555565b6040516102039190611705565b60405180910390f35b61022660048036038101906102219190611720565b61055b565b60405161023391906116ae565b60405180910390f35b61024461058a565b604051610251919061178f565b60405180910390f35b610274600480360381019061026f91906116c9565b610593565b005b610290600480360381019061028b9190611653565b6105df565b60405161029d91906116ae565b60405180910390f35b6102c060048036038101906102bb91906117d6565b610616565b005b6102dc60048036038101906102d79190611816565b610679565b005b6102e6610686565b6040516102f391906116ae565b60405180910390f35b610304610699565b6040516103119190611852565b60405180910390f35b610334600480360381019061032f91906116c9565b6106bf565b6040516103419190611705565b60405180910390f35b610352610707565b005b61035c61071b565b6040516103699190611852565b60405180910390f35b61037a610745565b6040516103879190611705565b60405180910390f35b61039861074b565b6040516103a59190611598565b60405180910390f35b6103c860048036038101906103c39190611653565b6107dd565b6040516103d591906116ae565b60405180910390f35b6103f860048036038101906103f39190611653565b610854565b60405161040591906116ae565b60405180910390f35b6104286004803603810190610423919061186d565b610877565b005b610444600480360381019061043f91906118ad565b6108a4565b6040516104519190611705565b60405180910390f35b610474600480360381019061046f91906116c9565b61092b565b005b6060600380546104859061191c565b80601f01602080910402602001604051908101604052809291908181526020018280546104b19061191c565b80156104fe5780601f106104d3576101008083540402835291602001916104fe565b820191906000526020600020905b8154815290600101906020018083116104e157829003601f168201915b5050505050905090565b6000806105136109af565b90506105208185856109b7565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60075481565b6000806105666109af565b9050610573858285610b82565b61057e858585610c0e565b60019150509392505050565b60006012905090565b61059b610e86565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806105ea6109af565b905061060b8185856105fc85896108a4565b610606919061197d565b6109b7565b600191505092915050565b61061e610e86565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106833382610f04565b50565b600560149054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070f610e86565b61071960006110d2565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606004805461075a9061191c565b80601f01602080910402602001604051908101604052809291908181526020018280546107869061191c565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000806107e86109af565b905060006107f682866108a4565b90508381101561083b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083290611a45565b60405180910390fd5b61084882868684036109b7565b60019250505092915050565b60008061085f6109af565b905061086c818585610c0e565b600191505092915050565b61087f610e86565b81600560146101000a81548160ff021916908315150217905550806007819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610933610e86565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a90611ad7565b60405180910390fd5b6109ac816110d2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90611b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90611bfb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b759190611705565b60405180910390a3505050565b6000610b8e84846108a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c085781811015610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611c67565b60405180910390fd5b610c0784848484036109b7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611cf9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590611d8b565b60405180910390fd5b610cf9838383611198565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690611e1d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6d9190611705565b60405180910390a3610e808484846114fa565b50505050565b610e8e6109af565b73ffffffffffffffffffffffffffffffffffffffff16610eac61071b565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990611e89565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90611f1b565b60405180910390fd5b610f8082600083611198565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90611fad565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b99190611705565b60405180910390a36110cd836000846114fa565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561123c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290612019565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611389576112da61071b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611345575061131661071b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612085565b60405180910390fd5b6114f5565b600560149054906101000a900460ff1680156113f25750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561142b5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114645750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156114f45760006064600754611479306106bf565b60065461148691906120a5565b61149091906120d9565b61149a9190612162565b905080826114a7856106bf565b6114b1919061197d565b11156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612205565b60405180910390fd5b505b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561153957808201518184015260208101905061151e565b83811115611548576000848401525b50505050565b6000601f19601f8301169050919050565b600061156a826114ff565b611574818561150a565b935061158481856020860161151b565b61158d8161154e565b840191505092915050565b600060208201905081810360008301526115b2818461155f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ea826115bf565b9050919050565b6115fa816115df565b811461160557600080fd5b50565b600081359050611617816115f1565b92915050565b6000819050919050565b6116308161161d565b811461163b57600080fd5b50565b60008135905061164d81611627565b92915050565b6000806040838503121561166a576116696115ba565b5b600061167885828601611608565b92505060206116898582860161163e565b9150509250929050565b60008115159050919050565b6116a881611693565b82525050565b60006020820190506116c3600083018461169f565b92915050565b6000602082840312156116df576116de6115ba565b5b60006116ed84828501611608565b91505092915050565b6116ff8161161d565b82525050565b600060208201905061171a60008301846116f6565b92915050565b600080600060608486031215611739576117386115ba565b5b600061174786828701611608565b935050602061175886828701611608565b92505060406117698682870161163e565b9150509250925092565b600060ff82169050919050565b61178981611773565b82525050565b60006020820190506117a46000830184611780565b92915050565b6117b381611693565b81146117be57600080fd5b50565b6000813590506117d0816117aa565b92915050565b600080604083850312156117ed576117ec6115ba565b5b60006117fb85828601611608565b925050602061180c858286016117c1565b9150509250929050565b60006020828403121561182c5761182b6115ba565b5b600061183a8482850161163e565b91505092915050565b61184c816115df565b82525050565b60006020820190506118676000830184611843565b92915050565b60008060408385031215611884576118836115ba565b5b6000611892858286016117c1565b92505060206118a38582860161163e565b9150509250929050565b600080604083850312156118c4576118c36115ba565b5b60006118d285828601611608565b92505060206118e385828601611608565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061193457607f821691505b60208210811415611948576119476118ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119888261161d565b91506119938361161d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119c8576119c761194e565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a2f60258361150a565b9150611a3a826119d3565b604082019050919050565b60006020820190508181036000830152611a5e81611a22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ac160268361150a565b9150611acc82611a65565b604082019050919050565b60006020820190508181036000830152611af081611ab4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b5360248361150a565b9150611b5e82611af7565b604082019050919050565b60006020820190508181036000830152611b8281611b46565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611be560228361150a565b9150611bf082611b89565b604082019050919050565b60006020820190508181036000830152611c1481611bd8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c51601d8361150a565b9150611c5c82611c1b565b602082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce360258361150a565b9150611cee82611c87565b604082019050919050565b60006020820190508181036000830152611d1281611cd6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7560238361150a565b9150611d8082611d19565b604082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e0760268361150a565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e7360208361150a565b9150611e7e82611e3d565b602082019050919050565b60006020820190508181036000830152611ea281611e66565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0560218361150a565b9150611f1082611ea9565b604082019050919050565b60006020820190508181036000830152611f3481611ef8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f9760228361150a565b9150611fa282611f3b565b604082019050919050565b60006020820190508181036000830152611fc681611f8a565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612003600b8361150a565b915061200e82611fcd565b602082019050919050565b6000602082019050818103600083015261203281611ff6565b9050919050565b7f4c6971756964697479204c50206973206e6f7420646566696e65642079657400600082015250565b600061206f601f8361150a565b915061207a82612039565b602082019050919050565b6000602082019050818103600083015261209e81612062565b9050919050565b60006120b08261161d565b91506120bb8361161d565b9250828210156120ce576120cd61194e565b5b828203905092915050565b60006120e48261161d565b91506120ef8361161d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121285761212761194e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061216d8261161d565b91506121788361161d565b92508261218857612187612133565b5b828204905092915050565b7f5472616e7366657220616d6f756e742065786365656473206d617820686f6c6460008201527f696e672070657263656e74616765000000000000000000000000000000000000602082015250565b60006121ef602e8361150a565b91506121fa82612193565b604082019050919050565b6000602082019050818103600083015261221e816121e2565b905091905056fea2646970667358221220151b2cc43785734357477495040b496b5a0cd581b6a604b734f608c6e760561c64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000004ee2d6d415b85acef8100000000000000000000000000000000000000000000000000000000000000000000000c43656173617220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064345415341520000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806347d3a114116100c357806395d89b411161007c57806395d89b4114610390578063a457c2d7146103ae578063a9059cbb146103de578063b303c03a1461040e578063dd62ed3e1461042a578063f2fde38b1461045a5761014d565b806347d3a114146102de57806349bd5a5e146102fc57806370a082311461031a578063715018a61461034a5780638da5cb5b14610354578063902d55a5146103725761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c57806336171e0e1461025a5780633950935114610276578063404e5129146102a657806342966c68146102c25761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780632191bb53146101ee575b600080fd5b61015a610476565b6040516101679190611598565b60405180910390f35b61018a60048036038101906101859190611653565b610508565b60405161019791906116ae565b60405180910390f35b6101ba60048036038101906101b591906116c9565b61052b565b6040516101c791906116ae565b60405180910390f35b6101d861054b565b6040516101e59190611705565b60405180910390f35b6101f6610555565b6040516102039190611705565b60405180910390f35b61022660048036038101906102219190611720565b61055b565b60405161023391906116ae565b60405180910390f35b61024461058a565b604051610251919061178f565b60405180910390f35b610274600480360381019061026f91906116c9565b610593565b005b610290600480360381019061028b9190611653565b6105df565b60405161029d91906116ae565b60405180910390f35b6102c060048036038101906102bb91906117d6565b610616565b005b6102dc60048036038101906102d79190611816565b610679565b005b6102e6610686565b6040516102f391906116ae565b60405180910390f35b610304610699565b6040516103119190611852565b60405180910390f35b610334600480360381019061032f91906116c9565b6106bf565b6040516103419190611705565b60405180910390f35b610352610707565b005b61035c61071b565b6040516103699190611852565b60405180910390f35b61037a610745565b6040516103879190611705565b60405180910390f35b61039861074b565b6040516103a59190611598565b60405180910390f35b6103c860048036038101906103c39190611653565b6107dd565b6040516103d591906116ae565b60405180910390f35b6103f860048036038101906103f39190611653565b610854565b60405161040591906116ae565b60405180910390f35b6104286004803603810190610423919061186d565b610877565b005b610444600480360381019061043f91906118ad565b6108a4565b6040516104519190611705565b60405180910390f35b610474600480360381019061046f91906116c9565b61092b565b005b6060600380546104859061191c565b80601f01602080910402602001604051908101604052809291908181526020018280546104b19061191c565b80156104fe5780601f106104d3576101008083540402835291602001916104fe565b820191906000526020600020905b8154815290600101906020018083116104e157829003601f168201915b5050505050905090565b6000806105136109af565b90506105208185856109b7565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60075481565b6000806105666109af565b9050610573858285610b82565b61057e858585610c0e565b60019150509392505050565b60006012905090565b61059b610e86565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806105ea6109af565b905061060b8185856105fc85896108a4565b610606919061197d565b6109b7565b600191505092915050565b61061e610e86565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106833382610f04565b50565b600560149054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070f610e86565b61071960006110d2565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606004805461075a9061191c565b80601f01602080910402602001604051908101604052809291908181526020018280546107869061191c565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000806107e86109af565b905060006107f682866108a4565b90508381101561083b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083290611a45565b60405180910390fd5b61084882868684036109b7565b60019250505092915050565b60008061085f6109af565b905061086c818585610c0e565b600191505092915050565b61087f610e86565b81600560146101000a81548160ff021916908315150217905550806007819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610933610e86565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a90611ad7565b60405180910390fd5b6109ac816110d2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90611b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90611bfb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b759190611705565b60405180910390a3505050565b6000610b8e84846108a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c085781811015610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611c67565b60405180910390fd5b610c0784848484036109b7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611cf9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590611d8b565b60405180910390fd5b610cf9838383611198565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690611e1d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6d9190611705565b60405180910390a3610e808484846114fa565b50505050565b610e8e6109af565b73ffffffffffffffffffffffffffffffffffffffff16610eac61071b565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990611e89565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90611f1b565b60405180910390fd5b610f8082600083611198565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90611fad565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b99190611705565b60405180910390a36110cd836000846114fa565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561123c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290612019565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611389576112da61071b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611345575061131661071b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612085565b60405180910390fd5b6114f5565b600560149054906101000a900460ff1680156113f25750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561142b5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114645750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156114f45760006064600754611479306106bf565b60065461148691906120a5565b61149091906120d9565b61149a9190612162565b905080826114a7856106bf565b6114b1919061197d565b11156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612205565b60405180910390fd5b505b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561153957808201518184015260208101905061151e565b83811115611548576000848401525b50505050565b6000601f19601f8301169050919050565b600061156a826114ff565b611574818561150a565b935061158481856020860161151b565b61158d8161154e565b840191505092915050565b600060208201905081810360008301526115b2818461155f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ea826115bf565b9050919050565b6115fa816115df565b811461160557600080fd5b50565b600081359050611617816115f1565b92915050565b6000819050919050565b6116308161161d565b811461163b57600080fd5b50565b60008135905061164d81611627565b92915050565b6000806040838503121561166a576116696115ba565b5b600061167885828601611608565b92505060206116898582860161163e565b9150509250929050565b60008115159050919050565b6116a881611693565b82525050565b60006020820190506116c3600083018461169f565b92915050565b6000602082840312156116df576116de6115ba565b5b60006116ed84828501611608565b91505092915050565b6116ff8161161d565b82525050565b600060208201905061171a60008301846116f6565b92915050565b600080600060608486031215611739576117386115ba565b5b600061174786828701611608565b935050602061175886828701611608565b92505060406117698682870161163e565b9150509250925092565b600060ff82169050919050565b61178981611773565b82525050565b60006020820190506117a46000830184611780565b92915050565b6117b381611693565b81146117be57600080fd5b50565b6000813590506117d0816117aa565b92915050565b600080604083850312156117ed576117ec6115ba565b5b60006117fb85828601611608565b925050602061180c858286016117c1565b9150509250929050565b60006020828403121561182c5761182b6115ba565b5b600061183a8482850161163e565b91505092915050565b61184c816115df565b82525050565b60006020820190506118676000830184611843565b92915050565b60008060408385031215611884576118836115ba565b5b6000611892858286016117c1565b92505060206118a38582860161163e565b9150509250929050565b600080604083850312156118c4576118c36115ba565b5b60006118d285828601611608565b92505060206118e385828601611608565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061193457607f821691505b60208210811415611948576119476118ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119888261161d565b91506119938361161d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119c8576119c761194e565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a2f60258361150a565b9150611a3a826119d3565b604082019050919050565b60006020820190508181036000830152611a5e81611a22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ac160268361150a565b9150611acc82611a65565b604082019050919050565b60006020820190508181036000830152611af081611ab4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b5360248361150a565b9150611b5e82611af7565b604082019050919050565b60006020820190508181036000830152611b8281611b46565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611be560228361150a565b9150611bf082611b89565b604082019050919050565b60006020820190508181036000830152611c1481611bd8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c51601d8361150a565b9150611c5c82611c1b565b602082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce360258361150a565b9150611cee82611c87565b604082019050919050565b60006020820190508181036000830152611d1281611cd6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7560238361150a565b9150611d8082611d19565b604082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e0760268361150a565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e7360208361150a565b9150611e7e82611e3d565b602082019050919050565b60006020820190508181036000830152611ea281611e66565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0560218361150a565b9150611f1082611ea9565b604082019050919050565b60006020820190508181036000830152611f3481611ef8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f9760228361150a565b9150611fa282611f3b565b604082019050919050565b60006020820190508181036000830152611fc681611f8a565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612003600b8361150a565b915061200e82611fcd565b602082019050919050565b6000602082019050818103600083015261203281611ff6565b9050919050565b7f4c6971756964697479204c50206973206e6f7420646566696e65642079657400600082015250565b600061206f601f8361150a565b915061207a82612039565b602082019050919050565b6000602082019050818103600083015261209e81612062565b9050919050565b60006120b08261161d565b91506120bb8361161d565b9250828210156120ce576120cd61194e565b5b828203905092915050565b60006120e48261161d565b91506120ef8361161d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121285761212761194e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061216d8261161d565b91506121788361161d565b92508261218857612187612133565b5b828204905092915050565b7f5472616e7366657220616d6f756e742065786365656473206d617820686f6c6460008201527f696e672070657263656e74616765000000000000000000000000000000000000602082015250565b60006121ef602e8361150a565b91506121fa82612193565b604082019050919050565b6000602082019050818103600083015261221e816121e2565b905091905056fea2646970667358221220151b2cc43785734357477495040b496b5a0cd581b6a604b734f608c6e760561c64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000004ee2d6d415b85acef8100000000000000000000000000000000000000000000000000000000000000000000000c43656173617220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064345415341520000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Ceasar Token
Arg [1] : symbol (string): CEASAR
Arg [2] : initialSupply (uint256): 100000000000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000004ee2d6d415b85acef8100000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 43656173617220546f6b656e0000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4345415341520000000000000000000000000000000000000000000000000000
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.