ERC-20
MEME
Overview
Max Total Supply
420,690,000,000,000 DNKY
Holders
329 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DenkyInu
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract DenkyInu is Ownable, ERC20 { IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address planbDAO = 0x41cf7c14d1D16974dfE13371656b1356D606F77C; // for PlanB Holders 20%, the unclaimed amount will be burned. address denkyTeam = 0x05f4Dd38425d5595D19fc58947D899552b913d1e; // for Team 10% for cex listing and developing address giveawayWallet = 0x2558Ef0e4fC4f6EaAB43EB48c253b6C3De7e12cD; // for the twitter giveaway. address degenAirdrop = address(0); address public uniswapV2Pair = address(0); uint256 public degenAllocation; // 8% airdrop for people who hold for 1 week, what gets not collected will be burned. uint256 public uniswapPoolAllocation; // 61% for creating the initial LP Uniswap v2 constructor() ERC20("Denky Inu", "DNKY") { uint256 _totalSupply = 420_690_000_000_000 * 10 ** decimals(); _mint(address(this), _totalSupply); uint256 planBAllocation = _totalSupply * 20 / 100; uint256 denkyTeamAllocation = _totalSupply * 10 / 100; degenAllocation = _totalSupply * 8 / 100; uint256 giveawayAllocation = _totalSupply * 1 / 100; uniswapPoolAllocation = _totalSupply - planBAllocation - denkyTeamAllocation - degenAllocation - giveawayAllocation; _transfer(address(this), planbDAO, planBAllocation); _transfer(address(this), denkyTeam, denkyTeamAllocation); _transfer(address(this), giveawayWallet, giveawayAllocation); } function createUniswapPoolAndInitilizeLiquidity() external payable onlyOwner { require(uniswapV2Pair == address(0),"UniswapV2Pair has already been set"); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), uniswapPoolAllocation); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), uniswapPoolAllocation, 0, 0, address(this), block.timestamp); } function setDegenAirdropWallet(address _degenAirdrop) external onlyOwner { degenAirdrop = _degenAirdrop; } function sendToDegenSmartContract() external onlyOwner { require(degenAirdrop != address(0), "no degen contract set"); _transfer(address(this), degenAirdrop, degenAllocation); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// 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 {} }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// 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; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createUniswapPoolAndInitilizeLiquidity","outputs":[],"stateMutability":"payable","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":"degenAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToDegenSmartContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_degenAirdrop","type":"address"}],"name":"setDegenAirdropWallet","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":"uniswapPoolAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507341cf7c14d1d16974dfe13371656b1356d606f77c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507305f4dd38425d5595d19fc58947d899552b913d1e600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732558ef0e4fc4f6eaab43eb48c253b6c3de7e12cd600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001e957600080fd5b506040518060400160405280600981526020017f44656e6b7920496e7500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444e4b5900000000000000000000000000000000000000000000000000000000815250620002766200026a6200045060201b60201c565b6200045860201b60201c565b816004908162000287919062000bab565b50806005908162000299919062000bab565b5050506000620002ae6200051c60201b60201c565b600a620002bc919062000e22565b66017e9d8602b400620002d0919062000e73565b9050620002e430826200052560201b60201c565b60006064601483620002f7919062000e73565b62000303919062000eed565b905060006064600a8462000318919062000e73565b62000324919062000eed565b9050606460088462000337919062000e73565b62000343919062000eed565b600c81905550600060646001856200035c919062000e73565b62000368919062000eed565b905080600c548385876200037d919062000f25565b62000389919062000f25565b62000395919062000f25565b620003a1919062000f25565b600d81905550620003dc30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856200069360201b60201c565b6200041130600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200069360201b60201c565b6200044630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836200069360201b60201c565b5050505062001214565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000597576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058e9062000fc1565b60405180910390fd5b620005ab600083836200092760201b60201c565b8060036000828254620005bf919062000fe3565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200067391906200102f565b60405180910390a36200068f600083836200092c60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000705576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fc90620010c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000777576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076e906200115a565b60405180910390fd5b6200078a8383836200092760201b60201c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000814576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080b90620011f2565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200090691906200102f565b60405180910390a3620009218484846200092c60201b60201c565b50505050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009b357607f821691505b602082108103620009c957620009c86200096b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009f4565b62000a3f8683620009f4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a8c62000a8662000a808462000a57565b62000a61565b62000a57565b9050919050565b6000819050919050565b62000aa88362000a6b565b62000ac062000ab78262000a93565b84845462000a01565b825550505050565b600090565b62000ad762000ac8565b62000ae481848462000a9d565b505050565b5b8181101562000b0c5762000b0060008262000acd565b60018101905062000aea565b5050565b601f82111562000b5b5762000b2581620009cf565b62000b3084620009e4565b8101602085101562000b40578190505b62000b5862000b4f85620009e4565b83018262000ae9565b50505b505050565b600082821c905092915050565b600062000b806000198460080262000b60565b1980831691505092915050565b600062000b9b838362000b6d565b9150826002028217905092915050565b62000bb68262000931565b67ffffffffffffffff81111562000bd25762000bd16200093c565b5b62000bde82546200099a565b62000beb82828562000b10565b600060209050601f83116001811462000c23576000841562000c0e578287015190505b62000c1a858262000b8d565b86555062000c8a565b601f19841662000c3386620009cf565b60005b8281101562000c5d5784890151825560018201915060208501945060208101905062000c36565b8683101562000c7d578489015162000c79601f89168262000b6d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d205780860481111562000cf85762000cf762000c92565b5b600185161562000d085780820291505b808102905062000d188562000cc1565b945062000cd8565b94509492505050565b60008262000d3b576001905062000e0e565b8162000d4b576000905062000e0e565b816001811462000d64576002811462000d6f5762000da5565b600191505062000e0e565b60ff84111562000d845762000d8362000c92565b5b8360020a91508482111562000d9e5762000d9d62000c92565b5b5062000e0e565b5060208310610133831016604e8410600b841016171562000ddf5782820a90508381111562000dd95762000dd862000c92565b5b62000e0e565b62000dee848484600162000cce565b9250905081840481111562000e085762000e0762000c92565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e2f8262000a57565b915062000e3c8362000e15565b925062000e6b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d29565b905092915050565b600062000e808262000a57565b915062000e8d8362000a57565b925082820262000e9d8162000a57565b9150828204841483151762000eb75762000eb662000c92565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000efa8262000a57565b915062000f078362000a57565b92508262000f1a5762000f1962000ebe565b5b828204905092915050565b600062000f328262000a57565b915062000f3f8362000a57565b925082820390508181111562000f5a5762000f5962000c92565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fa9601f8362000f60565b915062000fb68262000f71565b602082019050919050565b6000602082019050818103600083015262000fdc8162000f9a565b9050919050565b600062000ff08262000a57565b915062000ffd8362000a57565b925082820190508082111562001018576200101762000c92565b5b92915050565b620010298162000a57565b82525050565b60006020820190506200104660008301846200101e565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620010aa60258362000f60565b9150620010b7826200104c565b604082019050919050565b60006020820190508181036000830152620010dd816200109b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200114260238362000f60565b91506200114f82620010e4565b604082019050919050565b60006020820190508181036000830152620011758162001133565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620011da60268362000f60565b9150620011e7826200117c565b604082019050919050565b600060208201905081810360008301526200120d81620011cb565b9050919050565b611f7a80620012246000396000f3fe60806040526004361061012a5760003560e01c806370a08231116100ab578063a52381b31161006f578063a52381b3146103f8578063a9059cbb14610423578063c6b5010014610460578063d3e4927914610477578063dd62ed3e14610481578063f2fde38b146104be5761012a565b806370a0823114610311578063715018a61461034e5780638da5cb5b1461036557806395d89b4114610390578063a457c2d7146103bb5761012a565b8063313ce567116100f2578063313ce5671461022a578063395093511461025557806340547ebd1461029257806349bd5a5e146102bd5780635619f73b146102e85761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed575b600080fd5b34801561013b57600080fd5b506101446104e7565b6040516101519190611448565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190611503565b610579565b60405161018e919061155e565b60405180910390f35b3480156101a357600080fd5b506101ac61059c565b6040516101b991906115d8565b60405180910390f35b3480156101ce57600080fd5b506101d76105c2565b6040516101e49190611602565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f919061161d565b6105cc565b604051610221919061155e565b60405180910390f35b34801561023657600080fd5b5061023f6105fb565b60405161024c919061168c565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190611503565b610604565b604051610289919061155e565b60405180910390f35b34801561029e57600080fd5b506102a761063b565b6040516102b49190611602565b60405180910390f35b3480156102c957600080fd5b506102d2610641565b6040516102df91906116b6565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a91906116d1565b610667565b005b34801561031d57600080fd5b50610338600480360381019061033391906116d1565b6106b3565b6040516103459190611602565b60405180910390f35b34801561035a57600080fd5b506103636106fc565b005b34801561037157600080fd5b5061037a610710565b60405161038791906116b6565b60405180910390f35b34801561039c57600080fd5b506103a5610739565b6040516103b29190611448565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190611503565b6107cb565b6040516103ef919061155e565b60405180910390f35b34801561040457600080fd5b5061040d610842565b60405161041a9190611602565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190611503565b610848565b604051610457919061155e565b60405180910390f35b34801561046c57600080fd5b5061047561086b565b005b61047f610935565b005b34801561048d57600080fd5b506104a860048036038101906104a391906116fe565b610c8c565b6040516104b59190611602565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906116d1565b610d13565b005b6060600480546104f69061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546105229061176d565b801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600080610584610d96565b9050610591818585610d9e565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000806105d7610d96565b90506105e4858285610f67565b6105ef858585610ff3565b60019150509392505050565b60006012905090565b60008061060f610d96565b90506106308185856106218589610c8c565b61062b91906117cd565b610d9e565b600191505092915050565b600d5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61066f61126c565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070461126c565b61070e60006112ea565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107489061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546107749061176d565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b6000806107d6610d96565b905060006107e48286610c8c565b905083811015610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611873565b60405180910390fd5b6108368286868403610d9e565b60019250505092915050565b600c5481565b600080610853610d96565b9050610860818585610ff3565b600191505092915050565b61087361126c565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb906118df565b60405180910390fd5b61093330600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c54610ff3565b565b61093d61126c565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590611971565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f91906119a6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ae8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0c91906119a6565b6040518363ffffffff1660e01b8152600401610b299291906119d3565b6020604051808303816000875af1158015610b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6c91906119a6565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610bdb30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d54610d9e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7193430600d5460008030426040518863ffffffff1660e01b8152600401610c4496959493929190611a37565b60606040518083038185885af1158015610c62573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c879190611aad565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d1b61126c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190611b72565b60405180910390fd5b610d93816112ea565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490611c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390611c96565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f5a9190611602565b60405180910390a3505050565b6000610f738484610c8c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fed5781811015610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690611d02565b60405180910390fd5b610fec8484848403610d9e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990611d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890611e26565b60405180910390fd5b6110dc8383836113ae565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90611eb8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112539190611602565b60405180910390a36112668484846113b3565b50505050565b611274610d96565b73ffffffffffffffffffffffffffffffffffffffff16611292610710565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90611f24565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113f25780820151818401526020810190506113d7565b60008484015250505050565b6000601f19601f8301169050919050565b600061141a826113b8565b61142481856113c3565b93506114348185602086016113d4565b61143d816113fe565b840191505092915050565b60006020820190508181036000830152611462818461140f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061149a8261146f565b9050919050565b6114aa8161148f565b81146114b557600080fd5b50565b6000813590506114c7816114a1565b92915050565b6000819050919050565b6114e0816114cd565b81146114eb57600080fd5b50565b6000813590506114fd816114d7565b92915050565b6000806040838503121561151a5761151961146a565b5b6000611528858286016114b8565b9250506020611539858286016114ee565b9150509250929050565b60008115159050919050565b61155881611543565b82525050565b6000602082019050611573600083018461154f565b92915050565b6000819050919050565b600061159e6115996115948461146f565b611579565b61146f565b9050919050565b60006115b082611583565b9050919050565b60006115c2826115a5565b9050919050565b6115d2816115b7565b82525050565b60006020820190506115ed60008301846115c9565b92915050565b6115fc816114cd565b82525050565b600060208201905061161760008301846115f3565b92915050565b6000806000606084860312156116365761163561146a565b5b6000611644868287016114b8565b9350506020611655868287016114b8565b9250506040611666868287016114ee565b9150509250925092565b600060ff82169050919050565b61168681611670565b82525050565b60006020820190506116a1600083018461167d565b92915050565b6116b08161148f565b82525050565b60006020820190506116cb60008301846116a7565b92915050565b6000602082840312156116e7576116e661146a565b5b60006116f5848285016114b8565b91505092915050565b600080604083850312156117155761171461146a565b5b6000611723858286016114b8565b9250506020611734858286016114b8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061178557607f821691505b6020821081036117985761179761173e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d8826114cd565b91506117e3836114cd565b92508282019050808211156117fb576117fa61179e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185d6025836113c3565b915061186882611801565b604082019050919050565b6000602082019050818103600083015261188c81611850565b9050919050565b7f6e6f20646567656e20636f6e7472616374207365740000000000000000000000600082015250565b60006118c96015836113c3565b91506118d482611893565b602082019050919050565b600060208201905081810360008301526118f8816118bc565b9050919050565b7f556e69737761705632506169722068617320616c7265616479206265656e207360008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b600061195b6022836113c3565b9150611966826118ff565b604082019050919050565b6000602082019050818103600083015261198a8161194e565b9050919050565b6000815190506119a0816114a1565b92915050565b6000602082840312156119bc576119bb61146a565b5b60006119ca84828501611991565b91505092915050565b60006040820190506119e860008301856116a7565b6119f560208301846116a7565b9392505050565b6000819050919050565b6000611a21611a1c611a17846119fc565b611579565b6114cd565b9050919050565b611a3181611a06565b82525050565b600060c082019050611a4c60008301896116a7565b611a5960208301886115f3565b611a666040830187611a28565b611a736060830186611a28565b611a8060808301856116a7565b611a8d60a08301846115f3565b979650505050505050565b600081519050611aa7816114d7565b92915050565b600080600060608486031215611ac657611ac561146a565b5b6000611ad486828701611a98565b9350506020611ae586828701611a98565b9250506040611af686828701611a98565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b5c6026836113c3565b9150611b6782611b00565b604082019050919050565b60006020820190508181036000830152611b8b81611b4f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bee6024836113c3565b9150611bf982611b92565b604082019050919050565b60006020820190508181036000830152611c1d81611be1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c806022836113c3565b9150611c8b82611c24565b604082019050919050565b60006020820190508181036000830152611caf81611c73565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cec601d836113c3565b9150611cf782611cb6565b602082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e6025836113c3565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e106023836113c3565b9150611e1b82611db4565b604082019050919050565b60006020820190508181036000830152611e3f81611e03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ea26026836113c3565b9150611ead82611e46565b604082019050919050565b60006020820190508181036000830152611ed181611e95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f0e6020836113c3565b9150611f1982611ed8565b602082019050919050565b60006020820190508181036000830152611f3d81611f01565b905091905056fea2646970667358221220cf864a7c7e0d5711966218e1848bb1bcbb8446efe1b3e7877d8afe3d223424b164736f6c63430008120033
Deployed Bytecode
0x60806040526004361061012a5760003560e01c806370a08231116100ab578063a52381b31161006f578063a52381b3146103f8578063a9059cbb14610423578063c6b5010014610460578063d3e4927914610477578063dd62ed3e14610481578063f2fde38b146104be5761012a565b806370a0823114610311578063715018a61461034e5780638da5cb5b1461036557806395d89b4114610390578063a457c2d7146103bb5761012a565b8063313ce567116100f2578063313ce5671461022a578063395093511461025557806340547ebd1461029257806349bd5a5e146102bd5780635619f73b146102e85761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed575b600080fd5b34801561013b57600080fd5b506101446104e7565b6040516101519190611448565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190611503565b610579565b60405161018e919061155e565b60405180910390f35b3480156101a357600080fd5b506101ac61059c565b6040516101b991906115d8565b60405180910390f35b3480156101ce57600080fd5b506101d76105c2565b6040516101e49190611602565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f919061161d565b6105cc565b604051610221919061155e565b60405180910390f35b34801561023657600080fd5b5061023f6105fb565b60405161024c919061168c565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190611503565b610604565b604051610289919061155e565b60405180910390f35b34801561029e57600080fd5b506102a761063b565b6040516102b49190611602565b60405180910390f35b3480156102c957600080fd5b506102d2610641565b6040516102df91906116b6565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a91906116d1565b610667565b005b34801561031d57600080fd5b50610338600480360381019061033391906116d1565b6106b3565b6040516103459190611602565b60405180910390f35b34801561035a57600080fd5b506103636106fc565b005b34801561037157600080fd5b5061037a610710565b60405161038791906116b6565b60405180910390f35b34801561039c57600080fd5b506103a5610739565b6040516103b29190611448565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190611503565b6107cb565b6040516103ef919061155e565b60405180910390f35b34801561040457600080fd5b5061040d610842565b60405161041a9190611602565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190611503565b610848565b604051610457919061155e565b60405180910390f35b34801561046c57600080fd5b5061047561086b565b005b61047f610935565b005b34801561048d57600080fd5b506104a860048036038101906104a391906116fe565b610c8c565b6040516104b59190611602565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906116d1565b610d13565b005b6060600480546104f69061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546105229061176d565b801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600080610584610d96565b9050610591818585610d9e565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000806105d7610d96565b90506105e4858285610f67565b6105ef858585610ff3565b60019150509392505050565b60006012905090565b60008061060f610d96565b90506106308185856106218589610c8c565b61062b91906117cd565b610d9e565b600191505092915050565b600d5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61066f61126c565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070461126c565b61070e60006112ea565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107489061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546107749061176d565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b6000806107d6610d96565b905060006107e48286610c8c565b905083811015610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611873565b60405180910390fd5b6108368286868403610d9e565b60019250505092915050565b600c5481565b600080610853610d96565b9050610860818585610ff3565b600191505092915050565b61087361126c565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb906118df565b60405180910390fd5b61093330600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c54610ff3565b565b61093d61126c565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590611971565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f91906119a6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ae8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0c91906119a6565b6040518363ffffffff1660e01b8152600401610b299291906119d3565b6020604051808303816000875af1158015610b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6c91906119a6565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610bdb30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d54610d9e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7193430600d5460008030426040518863ffffffff1660e01b8152600401610c4496959493929190611a37565b60606040518083038185885af1158015610c62573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c879190611aad565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d1b61126c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190611b72565b60405180910390fd5b610d93816112ea565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490611c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390611c96565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f5a9190611602565b60405180910390a3505050565b6000610f738484610c8c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fed5781811015610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690611d02565b60405180910390fd5b610fec8484848403610d9e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990611d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890611e26565b60405180910390fd5b6110dc8383836113ae565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90611eb8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112539190611602565b60405180910390a36112668484846113b3565b50505050565b611274610d96565b73ffffffffffffffffffffffffffffffffffffffff16611292610710565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90611f24565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113f25780820151818401526020810190506113d7565b60008484015250505050565b6000601f19601f8301169050919050565b600061141a826113b8565b61142481856113c3565b93506114348185602086016113d4565b61143d816113fe565b840191505092915050565b60006020820190508181036000830152611462818461140f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061149a8261146f565b9050919050565b6114aa8161148f565b81146114b557600080fd5b50565b6000813590506114c7816114a1565b92915050565b6000819050919050565b6114e0816114cd565b81146114eb57600080fd5b50565b6000813590506114fd816114d7565b92915050565b6000806040838503121561151a5761151961146a565b5b6000611528858286016114b8565b9250506020611539858286016114ee565b9150509250929050565b60008115159050919050565b61155881611543565b82525050565b6000602082019050611573600083018461154f565b92915050565b6000819050919050565b600061159e6115996115948461146f565b611579565b61146f565b9050919050565b60006115b082611583565b9050919050565b60006115c2826115a5565b9050919050565b6115d2816115b7565b82525050565b60006020820190506115ed60008301846115c9565b92915050565b6115fc816114cd565b82525050565b600060208201905061161760008301846115f3565b92915050565b6000806000606084860312156116365761163561146a565b5b6000611644868287016114b8565b9350506020611655868287016114b8565b9250506040611666868287016114ee565b9150509250925092565b600060ff82169050919050565b61168681611670565b82525050565b60006020820190506116a1600083018461167d565b92915050565b6116b08161148f565b82525050565b60006020820190506116cb60008301846116a7565b92915050565b6000602082840312156116e7576116e661146a565b5b60006116f5848285016114b8565b91505092915050565b600080604083850312156117155761171461146a565b5b6000611723858286016114b8565b9250506020611734858286016114b8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061178557607f821691505b6020821081036117985761179761173e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d8826114cd565b91506117e3836114cd565b92508282019050808211156117fb576117fa61179e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185d6025836113c3565b915061186882611801565b604082019050919050565b6000602082019050818103600083015261188c81611850565b9050919050565b7f6e6f20646567656e20636f6e7472616374207365740000000000000000000000600082015250565b60006118c96015836113c3565b91506118d482611893565b602082019050919050565b600060208201905081810360008301526118f8816118bc565b9050919050565b7f556e69737761705632506169722068617320616c7265616479206265656e207360008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b600061195b6022836113c3565b9150611966826118ff565b604082019050919050565b6000602082019050818103600083015261198a8161194e565b9050919050565b6000815190506119a0816114a1565b92915050565b6000602082840312156119bc576119bb61146a565b5b60006119ca84828501611991565b91505092915050565b60006040820190506119e860008301856116a7565b6119f560208301846116a7565b9392505050565b6000819050919050565b6000611a21611a1c611a17846119fc565b611579565b6114cd565b9050919050565b611a3181611a06565b82525050565b600060c082019050611a4c60008301896116a7565b611a5960208301886115f3565b611a666040830187611a28565b611a736060830186611a28565b611a8060808301856116a7565b611a8d60a08301846115f3565b979650505050505050565b600081519050611aa7816114d7565b92915050565b600080600060608486031215611ac657611ac561146a565b5b6000611ad486828701611a98565b9350506020611ae586828701611a98565b9250506040611af686828701611a98565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b5c6026836113c3565b9150611b6782611b00565b604082019050919050565b60006020820190508181036000830152611b8b81611b4f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bee6024836113c3565b9150611bf982611b92565b604082019050919050565b60006020820190508181036000830152611c1d81611be1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c806022836113c3565b9150611c8b82611c24565b604082019050919050565b60006020820190508181036000830152611caf81611c73565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cec601d836113c3565b9150611cf782611cb6565b602082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e6025836113c3565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e106023836113c3565b9150611e1b82611db4565b604082019050919050565b60006020820190508181036000830152611e3f81611e03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ea26026836113c3565b9150611ead82611e46565b604082019050919050565b60006020820190508181036000830152611ed181611e95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f0e6020836113c3565b9150611f1982611ed8565b602082019050919050565b60006020820190508181036000830152611f3d81611f01565b905091905056fea2646970667358221220cf864a7c7e0d5711966218e1848bb1bcbb8446efe1b3e7877d8afe3d223424b164736f6c63430008120033
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.