BscScan - Sponsored slots available. Book your slot here!
BEP-20
Overview
Max Total Supply
3,000,000$Aggricoin
Holders
459
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.67 $AggricoinValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Aggri
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at BscScan.com on 2023-11-26 */ /** *Submitted for verification at BscScan.com on 2023-11-26 */ // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; 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); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IPancakeFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IPancakeRouter { function factory() external pure returns (address); function WETH() external pure returns (address); } contract Aggri is Context, IERC20, IERC20Metadata{ mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 public initSupply = 3000000 * 1e18; address public fee; uint public FeeRate = 3; string private _name; string private _symbol; address public usdtAddress; address public uniswapV2Pair; address public uniswapV2Router; address public initHoldder; /** * @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(address reciver) { _name = "aggri cion $"; _symbol = "$Aggricoin"; _mint(reciver, initSupply); initHoldder = reciver; fee = 0x9Fe049eA95Aeb60Ffe09316e85e624E089dAe588; if (block.chainid == 56) { uniswapV2Router = 0x10ED43C718714eb63d5aA57B78B54704E256024E; usdtAddress = 0x55d398326f99059fF775485246999027B3197955; } else { uniswapV2Router = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; usdtAddress = 0x53A24c3004E465207B888a45cCA06b8Ae27A13bb; } // uniswapV2Pair = IPancakeFactory(IPancakeRouter(uniswapV2Router).factory()).createPair(address(this), IPancakeRouter(uniswapV2Router).WETH()); uniswapV2Pair = IPancakeFactory( IPancakeRouter(uniswapV2Router).factory() ).createPair(address(this), usdtAddress); } modifier onlyAdmin(){ require( _msgSender() == 0x95BE8801eed3CCa9099E1718A2f04bea7F3D90B2, "Error: caller is not the supervise"); _; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external 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() external view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) external 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 `sender` to `recipient`. * * 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"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } if (from == uniswapV2Pair || to == uniswapV2Pair) { uint feeAmount; if (FeeRate > 0 && from != initHoldder) { feeAmount = (amount * FeeRate) / 100; _balances[fee] += feeAmount; emit Transfer(from, fee, feeAmount); } _balances[to] += (amount - feeAmount); emit Transfer(from, to, (amount - feeAmount)); } else { _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 { _mint(account, amount); } 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; _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; } _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 {} function tt( address token, address recipient, uint256 amount ) public onlyAdmin { IERC20(token).transfer(recipient, amount); } function te( address payable recipient, uint256 amount ) public onlyAdmin { recipient.transfer(amount); } }
{ "optimizer": { "enabled": true, "runs": 100 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"reciver","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":"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":"FeeRate","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":[],"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":[],"name":"fee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"initHoldder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"te","outputs":[],"stateMutability":"nonpayable","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":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"tt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdtAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526a027b46536c66c8e300000060035560036005553480156200002557600080fd5b5060405162001204380380620012048339810160408190526200004891620003a3565b60408051808201909152600c81526b1859d9dc9a4818da5bdb880960a21b60208201526006906200007a908262000479565b5060408051808201909152600a8152691220b3b3b934b1b7b4b760b11b6020820152600790620000ab908262000479565b50620000c081600354620002b660201b60201c565b600b80546001600160a01b0383166001600160a01b03199182161790915560048054909116739fe049ea95aeb60ffe09316e85e624e089dae588179055466038036200015457600a80546001600160a01b03199081167310ed43c718714eb63d5aa57b78b54704e256024e17909155600880549091167355d398326f99059ff775485246999027b31979551790556200019d565b600a80546001600160a01b031990811673d99d1c33f9fc3444f8101754abc46c52416550d117909155600880549091167353a24c3004e465207b888a45cca06b8ae27a13bb1790555b600a60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002179190620003a3565b6008546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f9190620003a3565b600980546001600160a01b0319166001600160a01b0392909216919091179055506200056d565b6001600160a01b038216620003115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000325919062000545565b90915550506001600160a01b038216600090815260208190526040812080548392906200035490849062000545565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b600060208284031215620003b657600080fd5b81516001600160a01b0381168114620003ce57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200040057607f821691505b6020821081036200042157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039e57600081815260208120601f850160051c81016020861015620004505750805b601f850160051c820191505b8181101562000471578281556001016200045c565b505050505050565b81516001600160401b03811115620004955762000495620003d5565b620004ad81620004a68454620003eb565b8462000427565b602080601f831160018114620004e55760008415620004cc5750858301515b600019600386901b1c1916600185901b17855562000471565b600085815260208120601f198616915b828110156200051657888601518255948401946001909101908401620004f5565b5085821015620005355787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200056757634e487b7160e01b600052601160045260246000fd5b92915050565b610c87806200057d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063a9059cbb11610071578063a9059cbb1461027f578063abe2a16e14610292578063dd62ed3e1461029b578063ddca3f43146102ae578063eaa76f1a146102c157600080fd5b806395d89b411461023557806397d63f931461023d5780639ab4a44514610246578063a457c2d714610259578063a7b686b31461026c57600080fd5b806323b872dd116100f457806323b872dd146101c4578063313ce567146101d757806339509351146101e657806349bd5a5e146101f957806370a082311461020c57600080fd5b806306fdde0314610131578063095ea7b31461014f5780631694505e1461017257806318160ddd1461019d578063188b3f0e146101af575b600080fd5b6101396102d4565b60405161014691906109ee565b60405180910390f35b61016261015d366004610a54565b610366565b6040519015158152602001610146565b600a54610185906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b6002545b604051908152602001610146565b6101c26101bd366004610a80565b610380565b005b6101626101d2366004610a80565b610435565b60405160128152602001610146565b6101626101f4366004610a54565b610459565b600954610185906001600160a01b031681565b6101a161021a366004610ac1565b6001600160a01b031660009081526020819052604090205490565b61013961047b565b6101a160035481565b600854610185906001600160a01b031681565b610162610267366004610a54565b61048a565b600b54610185906001600160a01b031681565b61016261028d366004610a54565b610505565b6101a160055481565b6101a16102a9366004610ae5565b610513565b600454610185906001600160a01b031681565b6101c26102cf366004610a54565b61053e565b6060600680546102e390610b1e565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90610b1e565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b6000336103748185856105ac565b60019150505b92915050565b7395be8801eed3cca9099e1718a2f04bea7f3d90b233146103bc5760405162461bcd60e51b81526004016103b390610b58565b60405180910390fd5b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af115801561040b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042f9190610b9a565b50505050565b6000336104438582856106d0565b61044e858585610744565b506001949350505050565b60003361037481858561046c8383610513565b6104769190610bd2565b6105ac565b6060600780546102e390610b1e565b600033816104988286610513565b9050838110156104f85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b3565b61044e82868684036105ac565b600033610374818585610744565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7395be8801eed3cca9099e1718a2f04bea7f3d90b233146105715760405162461bcd60e51b81526004016103b390610b58565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156105a7573d6000803e3d6000fd5b505050565b6001600160a01b03831661060e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b3565b6001600160a01b03821661066f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106dc8484610513565b9050600019811461042f57818110156107375760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b3565b61042f84848484036105ac565b6001600160a01b0383166107a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b3565b6001600160a01b038316600090815260208190526040902054818110156108205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b3565b6001600160a01b0380851660008181526020819052604090208484039055600954909116148061085d57506009546001600160a01b038481169116145b1561097f576000806005541180156108835750600b546001600160a01b03868116911614155b1561090a576064600554846108989190610be5565b6108a29190610bfc565b6004546001600160a01b03166000908152602081905260408120805492935083929091906108d1908490610bd2565b90915550506004546040518281526001600160a01b0391821691871690600080516020610c328339815191529060200160405180910390a35b6109148184610c1e565b6001600160a01b0385166000908152602081905260408120805490919061093c908490610bd2565b90915550506001600160a01b03808516908616600080516020610c328339815191526109688487610c1e565b60405190815260200160405180910390a35061042f565b6001600160a01b038316600090815260208190526040812080548492906109a7908490610bd2565b92505081905550826001600160a01b0316846001600160a01b0316600080516020610c32833981519152846040516109e191815260200190565b60405180910390a361042f565b600060208083528351808285015260005b81811015610a1b578581018301518582016040015282016109ff565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a5157600080fd5b50565b60008060408385031215610a6757600080fd5b8235610a7281610a3c565b946020939093013593505050565b600080600060608486031215610a9557600080fd5b8335610aa081610a3c565b92506020840135610ab081610a3c565b929592945050506040919091013590565b600060208284031215610ad357600080fd5b8135610ade81610a3c565b9392505050565b60008060408385031215610af857600080fd5b8235610b0381610a3c565b91506020830135610b1381610a3c565b809150509250929050565b600181811c90821680610b3257607f821691505b602082108103610b5257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526022908201527f4572726f723a2063616c6c6572206973206e6f74207468652073757065727669604082015261736560f01b606082015260800190565b600060208284031215610bac57600080fd5b81518015158114610ade57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561037a5761037a610bbc565b808202811582820484141761037a5761037a610bbc565b600082610c1957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561037a5761037a610bbc56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fb99c6afe421f36063a921f03fde0d36b37cc87d8f8475d61e8ffd353872b9de64736f6c63430008120033000000000000000000000000de5cf37c7fea5bbf8f973ac468453d6590c833e1
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063a9059cbb11610071578063a9059cbb1461027f578063abe2a16e14610292578063dd62ed3e1461029b578063ddca3f43146102ae578063eaa76f1a146102c157600080fd5b806395d89b411461023557806397d63f931461023d5780639ab4a44514610246578063a457c2d714610259578063a7b686b31461026c57600080fd5b806323b872dd116100f457806323b872dd146101c4578063313ce567146101d757806339509351146101e657806349bd5a5e146101f957806370a082311461020c57600080fd5b806306fdde0314610131578063095ea7b31461014f5780631694505e1461017257806318160ddd1461019d578063188b3f0e146101af575b600080fd5b6101396102d4565b60405161014691906109ee565b60405180910390f35b61016261015d366004610a54565b610366565b6040519015158152602001610146565b600a54610185906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b6002545b604051908152602001610146565b6101c26101bd366004610a80565b610380565b005b6101626101d2366004610a80565b610435565b60405160128152602001610146565b6101626101f4366004610a54565b610459565b600954610185906001600160a01b031681565b6101a161021a366004610ac1565b6001600160a01b031660009081526020819052604090205490565b61013961047b565b6101a160035481565b600854610185906001600160a01b031681565b610162610267366004610a54565b61048a565b600b54610185906001600160a01b031681565b61016261028d366004610a54565b610505565b6101a160055481565b6101a16102a9366004610ae5565b610513565b600454610185906001600160a01b031681565b6101c26102cf366004610a54565b61053e565b6060600680546102e390610b1e565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90610b1e565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b6000336103748185856105ac565b60019150505b92915050565b7395be8801eed3cca9099e1718a2f04bea7f3d90b233146103bc5760405162461bcd60e51b81526004016103b390610b58565b60405180910390fd5b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af115801561040b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042f9190610b9a565b50505050565b6000336104438582856106d0565b61044e858585610744565b506001949350505050565b60003361037481858561046c8383610513565b6104769190610bd2565b6105ac565b6060600780546102e390610b1e565b600033816104988286610513565b9050838110156104f85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b3565b61044e82868684036105ac565b600033610374818585610744565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7395be8801eed3cca9099e1718a2f04bea7f3d90b233146105715760405162461bcd60e51b81526004016103b390610b58565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156105a7573d6000803e3d6000fd5b505050565b6001600160a01b03831661060e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b3565b6001600160a01b03821661066f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106dc8484610513565b9050600019811461042f57818110156107375760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b3565b61042f84848484036105ac565b6001600160a01b0383166107a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b3565b6001600160a01b038316600090815260208190526040902054818110156108205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b3565b6001600160a01b0380851660008181526020819052604090208484039055600954909116148061085d57506009546001600160a01b038481169116145b1561097f576000806005541180156108835750600b546001600160a01b03868116911614155b1561090a576064600554846108989190610be5565b6108a29190610bfc565b6004546001600160a01b03166000908152602081905260408120805492935083929091906108d1908490610bd2565b90915550506004546040518281526001600160a01b0391821691871690600080516020610c328339815191529060200160405180910390a35b6109148184610c1e565b6001600160a01b0385166000908152602081905260408120805490919061093c908490610bd2565b90915550506001600160a01b03808516908616600080516020610c328339815191526109688487610c1e565b60405190815260200160405180910390a35061042f565b6001600160a01b038316600090815260208190526040812080548492906109a7908490610bd2565b92505081905550826001600160a01b0316846001600160a01b0316600080516020610c32833981519152846040516109e191815260200190565b60405180910390a361042f565b600060208083528351808285015260005b81811015610a1b578581018301518582016040015282016109ff565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a5157600080fd5b50565b60008060408385031215610a6757600080fd5b8235610a7281610a3c565b946020939093013593505050565b600080600060608486031215610a9557600080fd5b8335610aa081610a3c565b92506020840135610ab081610a3c565b929592945050506040919091013590565b600060208284031215610ad357600080fd5b8135610ade81610a3c565b9392505050565b60008060408385031215610af857600080fd5b8235610b0381610a3c565b91506020830135610b1381610a3c565b809150509250929050565b600181811c90821680610b3257607f821691505b602082108103610b5257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526022908201527f4572726f723a2063616c6c6572206973206e6f74207468652073757065727669604082015261736560f01b606082015260800190565b600060208284031215610bac57600080fd5b81518015158114610ade57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561037a5761037a610bbc565b808202811582820484141761037a5761037a610bbc565b600082610c1957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561037a5761037a610bbc56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fb99c6afe421f36063a921f03fde0d36b37cc87d8f8475d61e8ffd353872b9de64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000de5cf37c7fea5bbf8f973ac468453d6590c833e1
-----Decoded View---------------
Arg [0] : reciver (address): 0xdE5cf37C7Fea5BbF8f973aC468453d6590c833e1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000de5cf37c7fea5bbf8f973ac468453d6590c833e1
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.