Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 CLOWN
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,488,533.513240860286264635 CLOWNValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ClownToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** ,----, ,/ .`| ,----.. ,--, ,` .' : / / \ ,--.'| ; ; / | : :| | : ,---. .---. ,---, .'___,/ ,' ,---. .---. ,---, . | ;. /: : ' ' ,'\ /. ./| ,-+-. / | | : | ' ,'\ /. ./| ,-+-. / | . ; /--` | ' | / / | .-'-. ' | ,--.'|' | ; |.'; ; / / | .-'-. ' | ,--.'|' | ; | ; ' | | . ; ,. : /___/ \: || | ,"' | `----' | |. ; ,. : /___/ \: || | ,"' | | : | | | : ' | |: : .-'.. ' ' .| | / | | ' : ;' | |: : .-'.. ' ' .| | / | | . | '___ ' : |__' | .; :/___/ \: '| | | | | | | '' | .; :/___/ \: '| | | | | ' ; : .'|| | '.'| : |. \ ' .\ | | | |/ ' : || : |. \ ' .\ | | | |/ ' | '/ :; : ;\ \ / \ \ ' \ || | |--' ; |.' \ \ / \ \ ' \ || | |--' | : / | , / `----' \ \ |--" | |/ '---' `----' \ \ |--" | |/ \ \ .' ---`-' \ \ | '---' \ \ | '---' `---` '---" '---" Its 🤡 clown's 🤡 . all the . . way . . . down . . . . **/ // SPDX-License-Identifier: CLOWNWARE pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../uniswap/IUniswapV2Factory.sol"; import "../uniswap/IUniswapV2Router02.sol"; import "../uniswap/IUniswapV2Pair.sol"; import "./IClownTownStaking.sol"; contract ClownToken is Context, IERC20, IERC20Metadata, Ownable { string private _name; string private _symbol; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) public excludeFromFees; uint256 private _totalSupply; uint16 public feeBpsTotal; uint16 public feeBpsToStakers; uint16 public maxBpsPerWallet; int256 public clownVersion = 12345; address public uniswapPair; address public feeWallet; IClownTownStaking public stakingContract; constructor( string memory name_, string memory symbol_, address feeWallet_, uint16 feeBpsTotal_, uint16 feeBpsToStakers_, uint16 maxBpsPerWallet_) { require(feeWallet_!=address(0)); _name = name_; _symbol = symbol_; feeWallet = feeWallet_; feeBpsTotal = feeBpsTotal_; feeBpsToStakers = feeBpsToStakers_; maxBpsPerWallet = maxBpsPerWallet_; excludeFromFees[msg.sender] = true; excludeFromFees[feeWallet_] = true; // First and last mint _mint(msg.sender, 1000 * 1000 * 1000 * (10**18)); } // my boss will pay me // for every line of code // i make many lines function initUniswapPair(IUniswapV2Router02 router) public onlyOwner { require(address(router)!=address(0)); IUniswapV2Factory factory = IUniswapV2Factory(router.factory()); uniswapPair = factory.createPair(address(this), router.WETH()); } function setUniswapPair(address uniswapPair_) public onlyOwner { require(uniswapPair_!=address(0)); uniswapPair = uniswapPair_; } function setFees(uint16 feeBptsTotal_, uint16 feeBpsToStakers_) public onlyOwner { require(feeBptsTotal_ <= 10000); require(feeBpsToStakers_ <= feeBptsTotal_); feeBpsTotal = feeBptsTotal_; feeBpsToStakers = feeBpsToStakers_; } function setMaxBpsPerWallet(uint16 maxBpsPerWallet_) public onlyOwner { require(maxBpsPerWallet_ <= 10000); maxBpsPerWallet = maxBpsPerWallet_; } function setExcludeFromFees(address account, bool value) public onlyOwner { excludeFromFees[account] = value; } function setFeeWallet(address feeWallet_) public onlyOwner { require(feeWallet_!=address(0)); feeWallet = feeWallet_; excludeFromFees[feeWallet_] = true; } // clowns have red noses // but sometimes they are scary // their noses go honk function setStakingContract(IClownTownStaking stakingContract_) public onlyOwner { require(address(stakingContract_)!=address(0)); stakingContract = stakingContract_; excludeFromFees[address(stakingContract_)] = true; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } 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; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } 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; } // all good code should have // very very good comments // just like this one here 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"); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); if ((from==uniswapPair || to==uniswapPair) && !excludeFromFees[from] && !excludeFromFees[to]) { uint256 feeTotal = amount * feeBpsTotal / 10000; uint256 feeToStakers = amount * feeBpsToStakers / 10000; require(feeToStakers <= feeTotal); // Sanity check uint256 feeRemaining = feeTotal - feeToStakers; uint256 receiveAmount = amount - feeTotal; _balances[from] = fromBalance - amount; // whales are very big // they are very very big // that is what she said require( to==uniswapPair || maxBpsPerWallet == 0 || (_balances[to]+receiveAmount) <= (_totalSupply * maxBpsPerWallet / 10000) ); _balances[to] += receiveAmount; emit Transfer(from, to, receiveAmount); if (feeRemaining > 0) { require(feeWallet!=address(0)); _balances[feeWallet] += feeRemaining; emit Transfer(from, feeWallet, feeRemaining); } if (feeToStakers > 0) { require(address(stakingContract)!=address(0)); _balances[address(stakingContract)] += feeToStakers; stakingContract.postProcessClownReward(feeToStakers); emit Transfer(from, address(stakingContract), feeToStakers); } } else { _balances[from] = fromBalance - amount; _balances[to] += amount; emit Transfer(from, to, amount); } } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _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); } function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); 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); } 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); } // chatgpt will // one day take my job away // and write many lines 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 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.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
/** ,----, ,/ .`| ,----.. ,--, ,` .' : / / \ ,--.'| ; ; / | : :| | : ,---. .---. ,---, .'___,/ ,' ,---. .---. ,---, . | ;. /: : ' ' ,'\ /. ./| ,-+-. / | | : | ' ,'\ /. ./| ,-+-. / | . ; /--` | ' | / / | .-'-. ' | ,--.'|' | ; |.'; ; / / | .-'-. ' | ,--.'|' | ; | ; ' | | . ; ,. : /___/ \: || | ,"' | `----' | |. ; ,. : /___/ \: || | ,"' | | : | | | : ' | |: : .-'.. ' ' .| | / | | ' : ;' | |: : .-'.. ' ' .| | / | | . | '___ ' : |__' | .; :/___/ \: '| | | | | | | '' | .; :/___/ \: '| | | | | ' ; : .'|| | '.'| : |. \ ' .\ | | | |/ ' : || : |. \ ' .\ | | | |/ ' | '/ :; : ;\ \ / \ \ ' \ || | |--' ; |.' \ \ / \ \ ' \ || | |--' | : / | , / `----' \ \ |--" | |/ '---' `----' \ \ |--" | |/ \ \ .' ---`-' \ \ | '---' \ \ | '---' `---` '---" '---" Its 🤡 clown's 🤡 . all the . . way . . . down . . . . **/ // SPDX-License-Identifier: CLOWNWARE pragma solidity 0.8.19; interface IClownTownStaking { function addEthReward() external payable; function postProcessClownReward(uint256 _amount) 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; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
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); }
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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"feeWallet_","type":"address"},{"internalType":"uint16","name":"feeBpsTotal_","type":"uint16"},{"internalType":"uint16","name":"feeBpsToStakers_","type":"uint16"},{"internalType":"uint16","name":"maxBpsPerWallet_","type":"uint16"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clownVersion","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeBpsToStakers","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeBpsTotal","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"router","type":"address"}],"name":"initUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBpsPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeWallet_","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"feeBptsTotal_","type":"uint16"},{"internalType":"uint16","name":"feeBpsToStakers_","type":"uint16"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxBpsPerWallet_","type":"uint16"}],"name":"setMaxBpsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IClownTownStaking","name":"stakingContract_","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapPair_","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract IClownTownStaking","name":"","type":"address"}],"stateMutability":"view","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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526130396008553480156200001757600080fd5b50604051620038c2380380620038c283398181016040528101906200003d919062000676565b6200005d620000516200022d60201b60201c565b6200023560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200009757600080fd5b8560019081620000a891906200099b565b508460029081620000ba91906200099b565b5083600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548161ffff021916908361ffff16021790555081600760026101000a81548161ffff021916908361ffff16021790555080600760046101000a81548161ffff021916908361ffff1602179055506001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000221336b033b2e3c9fd0803ce8000000620002f960201b60201c565b50505050505062000b9d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200036b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003629062000ae3565b60405180910390fd5b80600660008282546200037f919062000b34565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000433919062000b80565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004a8826200045d565b810181811067ffffffffffffffff82111715620004ca57620004c96200046e565b5b80604052505050565b6000620004df6200043f565b9050620004ed82826200049d565b919050565b600067ffffffffffffffff82111562000510576200050f6200046e565b5b6200051b826200045d565b9050602081019050919050565b60005b83811015620005485780820151818401526020810190506200052b565b60008484015250505050565b60006200056b6200056584620004f2565b620004d3565b9050828152602081018484840111156200058a576200058962000458565b5b6200059784828562000528565b509392505050565b600082601f830112620005b757620005b662000453565b5b8151620005c984826020860162000554565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005ff82620005d2565b9050919050565b6200061181620005f2565b81146200061d57600080fd5b50565b600081519050620006318162000606565b92915050565b600061ffff82169050919050565b620006508162000637565b81146200065c57600080fd5b50565b600081519050620006708162000645565b92915050565b60008060008060008060c0878903121562000696576200069562000449565b5b600087015167ffffffffffffffff811115620006b757620006b66200044e565b5b620006c589828a016200059f565b965050602087015167ffffffffffffffff811115620006e957620006e86200044e565b5b620006f789828a016200059f565b95505060406200070a89828a0162000620565b94505060606200071d89828a016200065f565b93505060806200073089828a016200065f565b92505060a06200074389828a016200065f565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007a357607f821691505b602082108103620007b957620007b86200075b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007e4565b6200082f8683620007e4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200087c62000876620008708462000847565b62000851565b62000847565b9050919050565b6000819050919050565b62000898836200085b565b620008b0620008a78262000883565b848454620007f1565b825550505050565b600090565b620008c7620008b8565b620008d48184846200088d565b505050565b5b81811015620008fc57620008f0600082620008bd565b600181019050620008da565b5050565b601f8211156200094b576200091581620007bf565b6200092084620007d4565b8101602085101562000930578190505b620009486200093f85620007d4565b830182620008d9565b50505b505050565b600082821c905092915050565b6000620009706000198460080262000950565b1980831691505092915050565b60006200098b83836200095d565b9150826002028217905092915050565b620009a68262000750565b67ffffffffffffffff811115620009c257620009c16200046e565b5b620009ce82546200078a565b620009db82828562000900565b600060209050601f83116001811462000a135760008415620009fe578287015190505b62000a0a85826200097d565b86555062000a7a565b601f19841662000a2386620007bf565b60005b8281101562000a4d5784890151825560018201915060208501945060208101905062000a26565b8683101562000a6d578489015162000a69601f8916826200095d565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000acb601f8362000a82565b915062000ad88262000a93565b602082019050919050565b6000602082019050818103600083015262000afe8162000abc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b418262000847565b915062000b4e8362000847565b925082820190508082111562000b695762000b6862000b05565b5b92915050565b62000b7a8162000847565b82525050565b600060208201905062000b97600083018462000b6f565b92915050565b612d158062000bad6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806390d49b9d11610104578063c816841b116100a2578063e57f14e111610071578063e57f14e114610545578063ee99205c14610575578063f25f4b5614610593578063f2fde38b146105b1576101da565b8063c816841b146104bf578063d5aed6bf146104dd578063d63cad22146104f9578063dd62ed3e14610515576101da565b80639dd373b9116100de5780639dd373b9146104275780639ef833d414610443578063a457c2d71461045f578063a9059cbb1461048f576101da565b806390d49b9d146103cf57806394f78767146103eb57806395d89b4114610409576101da565b8063395093511161017c57806370a082311161014b57806370a0823114610359578063715018a6146103895780637ad27719146103935780638da5cb5b146103b1576101da565b806339509351146102d35780633ad1d1d21461030357806340ec4e911461031f57806342966c681461033d576101da565b806318160ddd116101b857806318160ddd1461024b57806323b872dd146102695780632e92f74e14610299578063313ce567146102b5576101da565b8063056764b1146101df57806306fdde03146101fd578063095ea7b31461021b575b600080fd5b6101e76105cd565b6040516101f49190611f04565b60405180910390f35b6102056105e1565b6040516102129190611faf565b60405180910390f35b6102356004803603810190610230919061206a565b610673565b60405161024291906120c5565b60405180910390f35b610253610696565b60405161026091906120ef565b60405180910390f35b610283600480360381019061027e919061210a565b6106a0565b60405161029091906120c5565b60405180910390f35b6102b360048036038101906102ae9190612189565b6106cf565b005b6102bd61070a565b6040516102ca91906121d2565b60405180910390f35b6102ed60048036038101906102e8919061206a565b610713565b6040516102fa91906120c5565b60405180910390f35b61031d6004803603810190610318919061222b565b61074a565b005b61032761092e565b6040516103349190611f04565b60405180910390f35b61035760048036038101906103529190612258565b610942565b005b610373600480360381019061036e9190612285565b610956565b60405161038091906120ef565b60405180910390f35b61039161099f565b005b61039b6109b3565b6040516103a891906122cb565b60405180910390f35b6103b96109b9565b6040516103c691906122f5565b60405180910390f35b6103e960048036038101906103e49190612285565b6109e2565b005b6103f3610abf565b6040516104009190611f04565b60405180910390f35b610411610ad3565b60405161041e9190611faf565b60405180910390f35b610441600480360381019061043c919061234e565b610b65565b005b61045d6004803603810190610458919061237b565b610c42565b005b6104796004803603810190610474919061206a565b610cb0565b60405161048691906120c5565b60405180910390f35b6104a960048036038101906104a4919061206a565b610d27565b6040516104b691906120c5565b60405180910390f35b6104c7610d4a565b6040516104d491906122f5565b60405180910390f35b6104f760048036038101906104f29190612285565b610d70565b005b610513600480360381019061050e91906123e7565b610df5565b005b61052f600480360381019061052a9190612427565b610e58565b60405161053c91906120ef565b60405180910390f35b61055f600480360381019061055a9190612285565b610edf565b60405161056c91906120c5565b60405180910390f35b61057d610eff565b60405161058a91906124c6565b60405180910390f35b61059b610f25565b6040516105a891906122f5565b60405180910390f35b6105cb60048036038101906105c69190612285565b610f4b565b005b600760049054906101000a900461ffff1681565b6060600180546105f090612510565b80601f016020809104026020016040519081016040528092919081815260200182805461061c90612510565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b60008061067e610fce565b905061068b818585610fd6565b600191505092915050565b6000600654905090565b6000806106ab610fce565b90506106b885828561119f565b6106c385858561122b565b60019150509392505050565b6106d7611bee565b6127108161ffff1611156106ea57600080fd5b80600760046101000a81548161ffff021916908361ffff16021790555050565b60006012905090565b60008061071e610fce565b905061073f8185856107308589610e58565b61073a9190612570565b610fd6565b600191505092915050565b610752611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361078b57600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fc91906125b9565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610866573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088a91906125b9565b6040518363ffffffff1660e01b81526004016108a79291906125e6565b6020604051808303816000875af11580156108c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ea91906125b9565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600760009054906101000a900461ffff1681565b61095361094d610fce565b82611c6c565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a7611bee565b6109b16000611e23565b565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109ea611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2357600080fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760029054906101000a900461ffff1681565b606060028054610ae290612510565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90612510565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b5050505050905090565b610b6d611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba657600080fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c4a611bee565b6127108261ffff161115610c5d57600080fd5b8161ffff168161ffff161115610c7257600080fd5b81600760006101000a81548161ffff021916908361ffff16021790555080600760026101000a81548161ffff021916908361ffff1602179055505050565b600080610cbb610fce565b90506000610cc98286610e58565b905083811015610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590612681565b60405180910390fd5b610d1b8286868403610fd6565b60019250505092915050565b600080610d32610fce565b9050610d3f81858561122b565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d78611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610db157600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610dfd611bee565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60056020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f53611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990612713565b60405180910390fd5b610fcb81611e23565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906127a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612837565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161119291906120ef565b60405180910390a3505050565b60006111ab8484610e58565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112255781811015611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906128a3565b60405180910390fd5b6112248484848403610fd6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190612935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906129c7565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790612a59565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114395750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561148f5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114e55750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611add576000612710600760009054906101000a900461ffff1661ffff168461150f9190612a79565b6115199190612aea565b90506000612710600760029054906101000a900461ffff1661ffff16856115409190612a79565b61154a9190612aea565b90508181111561155957600080fd5b600081836115679190612b1b565b9050600083866115779190612b1b565b905085856115859190612b1b565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148061163857506000600760049054906101000a900461ffff1661ffff16145b806116bb5750612710600760049054906101000a900461ffff1661ffff166006546116639190612a79565b61166d9190612aea565b81600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b89190612570565b11155b6116c457600080fd5b80600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117139190612570565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161177791906120ef565b60405180910390a360008211156118e357600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117e357600080fd5b8160036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118549190612570565b92505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118da91906120ef565b60405180910390a35b6000831115611ad457600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361194757600080fd5b8260036000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b89190612570565b92505081905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637ebe6916846040518263ffffffff1660e01b8152600401611a1a91906120ef565b600060405180830381600087803b158015611a3457600080fd5b505af1158015611a48573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611acb91906120ef565b60405180910390a35b50505050611be8565b8181611ae99190612b1b565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7b9190612570565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bdf91906120ef565b60405180910390a35b50505050565b611bf6610fce565b73ffffffffffffffffffffffffffffffffffffffff16611c146109b9565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190612b9b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290612c2d565b60405180910390fd5b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990612cbf565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600660008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e1691906120ef565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061ffff82169050919050565b611efe81611ee7565b82525050565b6000602082019050611f196000830184611ef5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f59578082015181840152602081019050611f3e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f8182611f1f565b611f8b8185611f2a565b9350611f9b818560208601611f3b565b611fa481611f65565b840191505092915050565b60006020820190508181036000830152611fc98184611f76565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061200182611fd6565b9050919050565b61201181611ff6565b811461201c57600080fd5b50565b60008135905061202e81612008565b92915050565b6000819050919050565b61204781612034565b811461205257600080fd5b50565b6000813590506120648161203e565b92915050565b6000806040838503121561208157612080611fd1565b5b600061208f8582860161201f565b92505060206120a085828601612055565b9150509250929050565b60008115159050919050565b6120bf816120aa565b82525050565b60006020820190506120da60008301846120b6565b92915050565b6120e981612034565b82525050565b600060208201905061210460008301846120e0565b92915050565b60008060006060848603121561212357612122611fd1565b5b60006121318682870161201f565b93505060206121428682870161201f565b925050604061215386828701612055565b9150509250925092565b61216681611ee7565b811461217157600080fd5b50565b6000813590506121838161215d565b92915050565b60006020828403121561219f5761219e611fd1565b5b60006121ad84828501612174565b91505092915050565b600060ff82169050919050565b6121cc816121b6565b82525050565b60006020820190506121e760008301846121c3565b92915050565b60006121f882611ff6565b9050919050565b612208816121ed565b811461221357600080fd5b50565b600081359050612225816121ff565b92915050565b60006020828403121561224157612240611fd1565b5b600061224f84828501612216565b91505092915050565b60006020828403121561226e5761226d611fd1565b5b600061227c84828501612055565b91505092915050565b60006020828403121561229b5761229a611fd1565b5b60006122a98482850161201f565b91505092915050565b6000819050919050565b6122c5816122b2565b82525050565b60006020820190506122e060008301846122bc565b92915050565b6122ef81611ff6565b82525050565b600060208201905061230a60008301846122e6565b92915050565b600061231b82611ff6565b9050919050565b61232b81612310565b811461233657600080fd5b50565b60008135905061234881612322565b92915050565b60006020828403121561236457612363611fd1565b5b600061237284828501612339565b91505092915050565b6000806040838503121561239257612391611fd1565b5b60006123a085828601612174565b92505060206123b185828601612174565b9150509250929050565b6123c4816120aa565b81146123cf57600080fd5b50565b6000813590506123e1816123bb565b92915050565b600080604083850312156123fe576123fd611fd1565b5b600061240c8582860161201f565b925050602061241d858286016123d2565b9150509250929050565b6000806040838503121561243e5761243d611fd1565b5b600061244c8582860161201f565b925050602061245d8582860161201f565b9150509250929050565b6000819050919050565b600061248c61248761248284611fd6565b612467565b611fd6565b9050919050565b600061249e82612471565b9050919050565b60006124b082612493565b9050919050565b6124c0816124a5565b82525050565b60006020820190506124db60008301846124b7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061252857607f821691505b60208210810361253b5761253a6124e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061257b82612034565b915061258683612034565b925082820190508082111561259e5761259d612541565b5b92915050565b6000815190506125b381612008565b92915050565b6000602082840312156125cf576125ce611fd1565b5b60006125dd848285016125a4565b91505092915050565b60006040820190506125fb60008301856122e6565b61260860208301846122e6565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061266b602583611f2a565b91506126768261260f565b604082019050919050565b6000602082019050818103600083015261269a8161265e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126fd602683611f2a565b9150612708826126a1565b604082019050919050565b6000602082019050818103600083015261272c816126f0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061278f602483611f2a565b915061279a82612733565b604082019050919050565b600060208201905081810360008301526127be81612782565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612821602283611f2a565b915061282c826127c5565b604082019050919050565b6000602082019050818103600083015261285081612814565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061288d601d83611f2a565b915061289882612857565b602082019050919050565b600060208201905081810360008301526128bc81612880565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061291f602583611f2a565b915061292a826128c3565b604082019050919050565b6000602082019050818103600083015261294e81612912565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129b1602383611f2a565b91506129bc82612955565b604082019050919050565b600060208201905081810360008301526129e0816129a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a43602683611f2a565b9150612a4e826129e7565b604082019050919050565b60006020820190508181036000830152612a7281612a36565b9050919050565b6000612a8482612034565b9150612a8f83612034565b9250828202612a9d81612034565b91508282048414831517612ab457612ab3612541565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612af582612034565b9150612b0083612034565b925082612b1057612b0f612abb565b5b828204905092915050565b6000612b2682612034565b9150612b3183612034565b9250828203905081811115612b4957612b48612541565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b85602083611f2a565b9150612b9082612b4f565b602082019050919050565b60006020820190508181036000830152612bb481612b78565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c17602183611f2a565b9150612c2282612bbb565b604082019050919050565b60006020820190508181036000830152612c4681612c0a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca9602283611f2a565b9150612cb482612c4d565b604082019050919050565b60006020820190508181036000830152612cd881612c9c565b905091905056fea2646970667358221220470bd289c7a3b709e9013df89cd84e3c340b9699a1869eb43d8e06df8801fb6364736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000004f90df1a57f4080b759c92e1c817e15ed817549c00000000000000000000000000000000000000000000000000000000000026ac00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000009634c6f776e546f776e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434c4f574e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806390d49b9d11610104578063c816841b116100a2578063e57f14e111610071578063e57f14e114610545578063ee99205c14610575578063f25f4b5614610593578063f2fde38b146105b1576101da565b8063c816841b146104bf578063d5aed6bf146104dd578063d63cad22146104f9578063dd62ed3e14610515576101da565b80639dd373b9116100de5780639dd373b9146104275780639ef833d414610443578063a457c2d71461045f578063a9059cbb1461048f576101da565b806390d49b9d146103cf57806394f78767146103eb57806395d89b4114610409576101da565b8063395093511161017c57806370a082311161014b57806370a0823114610359578063715018a6146103895780637ad27719146103935780638da5cb5b146103b1576101da565b806339509351146102d35780633ad1d1d21461030357806340ec4e911461031f57806342966c681461033d576101da565b806318160ddd116101b857806318160ddd1461024b57806323b872dd146102695780632e92f74e14610299578063313ce567146102b5576101da565b8063056764b1146101df57806306fdde03146101fd578063095ea7b31461021b575b600080fd5b6101e76105cd565b6040516101f49190611f04565b60405180910390f35b6102056105e1565b6040516102129190611faf565b60405180910390f35b6102356004803603810190610230919061206a565b610673565b60405161024291906120c5565b60405180910390f35b610253610696565b60405161026091906120ef565b60405180910390f35b610283600480360381019061027e919061210a565b6106a0565b60405161029091906120c5565b60405180910390f35b6102b360048036038101906102ae9190612189565b6106cf565b005b6102bd61070a565b6040516102ca91906121d2565b60405180910390f35b6102ed60048036038101906102e8919061206a565b610713565b6040516102fa91906120c5565b60405180910390f35b61031d6004803603810190610318919061222b565b61074a565b005b61032761092e565b6040516103349190611f04565b60405180910390f35b61035760048036038101906103529190612258565b610942565b005b610373600480360381019061036e9190612285565b610956565b60405161038091906120ef565b60405180910390f35b61039161099f565b005b61039b6109b3565b6040516103a891906122cb565b60405180910390f35b6103b96109b9565b6040516103c691906122f5565b60405180910390f35b6103e960048036038101906103e49190612285565b6109e2565b005b6103f3610abf565b6040516104009190611f04565b60405180910390f35b610411610ad3565b60405161041e9190611faf565b60405180910390f35b610441600480360381019061043c919061234e565b610b65565b005b61045d6004803603810190610458919061237b565b610c42565b005b6104796004803603810190610474919061206a565b610cb0565b60405161048691906120c5565b60405180910390f35b6104a960048036038101906104a4919061206a565b610d27565b6040516104b691906120c5565b60405180910390f35b6104c7610d4a565b6040516104d491906122f5565b60405180910390f35b6104f760048036038101906104f29190612285565b610d70565b005b610513600480360381019061050e91906123e7565b610df5565b005b61052f600480360381019061052a9190612427565b610e58565b60405161053c91906120ef565b60405180910390f35b61055f600480360381019061055a9190612285565b610edf565b60405161056c91906120c5565b60405180910390f35b61057d610eff565b60405161058a91906124c6565b60405180910390f35b61059b610f25565b6040516105a891906122f5565b60405180910390f35b6105cb60048036038101906105c69190612285565b610f4b565b005b600760049054906101000a900461ffff1681565b6060600180546105f090612510565b80601f016020809104026020016040519081016040528092919081815260200182805461061c90612510565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b60008061067e610fce565b905061068b818585610fd6565b600191505092915050565b6000600654905090565b6000806106ab610fce565b90506106b885828561119f565b6106c385858561122b565b60019150509392505050565b6106d7611bee565b6127108161ffff1611156106ea57600080fd5b80600760046101000a81548161ffff021916908361ffff16021790555050565b60006012905090565b60008061071e610fce565b905061073f8185856107308589610e58565b61073a9190612570565b610fd6565b600191505092915050565b610752611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361078b57600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fc91906125b9565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610866573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088a91906125b9565b6040518363ffffffff1660e01b81526004016108a79291906125e6565b6020604051808303816000875af11580156108c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ea91906125b9565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600760009054906101000a900461ffff1681565b61095361094d610fce565b82611c6c565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a7611bee565b6109b16000611e23565b565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109ea611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2357600080fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760029054906101000a900461ffff1681565b606060028054610ae290612510565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90612510565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b5050505050905090565b610b6d611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba657600080fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c4a611bee565b6127108261ffff161115610c5d57600080fd5b8161ffff168161ffff161115610c7257600080fd5b81600760006101000a81548161ffff021916908361ffff16021790555080600760026101000a81548161ffff021916908361ffff1602179055505050565b600080610cbb610fce565b90506000610cc98286610e58565b905083811015610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590612681565b60405180910390fd5b610d1b8286868403610fd6565b60019250505092915050565b600080610d32610fce565b9050610d3f81858561122b565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d78611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610db157600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610dfd611bee565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60056020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f53611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990612713565b60405180910390fd5b610fcb81611e23565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906127a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612837565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161119291906120ef565b60405180910390a3505050565b60006111ab8484610e58565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112255781811015611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906128a3565b60405180910390fd5b6112248484848403610fd6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190612935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906129c7565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790612a59565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114395750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561148f5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114e55750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611add576000612710600760009054906101000a900461ffff1661ffff168461150f9190612a79565b6115199190612aea565b90506000612710600760029054906101000a900461ffff1661ffff16856115409190612a79565b61154a9190612aea565b90508181111561155957600080fd5b600081836115679190612b1b565b9050600083866115779190612b1b565b905085856115859190612b1b565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148061163857506000600760049054906101000a900461ffff1661ffff16145b806116bb5750612710600760049054906101000a900461ffff1661ffff166006546116639190612a79565b61166d9190612aea565b81600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b89190612570565b11155b6116c457600080fd5b80600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117139190612570565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161177791906120ef565b60405180910390a360008211156118e357600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117e357600080fd5b8160036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118549190612570565b92505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118da91906120ef565b60405180910390a35b6000831115611ad457600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361194757600080fd5b8260036000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b89190612570565b92505081905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637ebe6916846040518263ffffffff1660e01b8152600401611a1a91906120ef565b600060405180830381600087803b158015611a3457600080fd5b505af1158015611a48573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611acb91906120ef565b60405180910390a35b50505050611be8565b8181611ae99190612b1b565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7b9190612570565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bdf91906120ef565b60405180910390a35b50505050565b611bf6610fce565b73ffffffffffffffffffffffffffffffffffffffff16611c146109b9565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190612b9b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290612c2d565b60405180910390fd5b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990612cbf565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600660008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e1691906120ef565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061ffff82169050919050565b611efe81611ee7565b82525050565b6000602082019050611f196000830184611ef5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f59578082015181840152602081019050611f3e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f8182611f1f565b611f8b8185611f2a565b9350611f9b818560208601611f3b565b611fa481611f65565b840191505092915050565b60006020820190508181036000830152611fc98184611f76565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061200182611fd6565b9050919050565b61201181611ff6565b811461201c57600080fd5b50565b60008135905061202e81612008565b92915050565b6000819050919050565b61204781612034565b811461205257600080fd5b50565b6000813590506120648161203e565b92915050565b6000806040838503121561208157612080611fd1565b5b600061208f8582860161201f565b92505060206120a085828601612055565b9150509250929050565b60008115159050919050565b6120bf816120aa565b82525050565b60006020820190506120da60008301846120b6565b92915050565b6120e981612034565b82525050565b600060208201905061210460008301846120e0565b92915050565b60008060006060848603121561212357612122611fd1565b5b60006121318682870161201f565b93505060206121428682870161201f565b925050604061215386828701612055565b9150509250925092565b61216681611ee7565b811461217157600080fd5b50565b6000813590506121838161215d565b92915050565b60006020828403121561219f5761219e611fd1565b5b60006121ad84828501612174565b91505092915050565b600060ff82169050919050565b6121cc816121b6565b82525050565b60006020820190506121e760008301846121c3565b92915050565b60006121f882611ff6565b9050919050565b612208816121ed565b811461221357600080fd5b50565b600081359050612225816121ff565b92915050565b60006020828403121561224157612240611fd1565b5b600061224f84828501612216565b91505092915050565b60006020828403121561226e5761226d611fd1565b5b600061227c84828501612055565b91505092915050565b60006020828403121561229b5761229a611fd1565b5b60006122a98482850161201f565b91505092915050565b6000819050919050565b6122c5816122b2565b82525050565b60006020820190506122e060008301846122bc565b92915050565b6122ef81611ff6565b82525050565b600060208201905061230a60008301846122e6565b92915050565b600061231b82611ff6565b9050919050565b61232b81612310565b811461233657600080fd5b50565b60008135905061234881612322565b92915050565b60006020828403121561236457612363611fd1565b5b600061237284828501612339565b91505092915050565b6000806040838503121561239257612391611fd1565b5b60006123a085828601612174565b92505060206123b185828601612174565b9150509250929050565b6123c4816120aa565b81146123cf57600080fd5b50565b6000813590506123e1816123bb565b92915050565b600080604083850312156123fe576123fd611fd1565b5b600061240c8582860161201f565b925050602061241d858286016123d2565b9150509250929050565b6000806040838503121561243e5761243d611fd1565b5b600061244c8582860161201f565b925050602061245d8582860161201f565b9150509250929050565b6000819050919050565b600061248c61248761248284611fd6565b612467565b611fd6565b9050919050565b600061249e82612471565b9050919050565b60006124b082612493565b9050919050565b6124c0816124a5565b82525050565b60006020820190506124db60008301846124b7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061252857607f821691505b60208210810361253b5761253a6124e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061257b82612034565b915061258683612034565b925082820190508082111561259e5761259d612541565b5b92915050565b6000815190506125b381612008565b92915050565b6000602082840312156125cf576125ce611fd1565b5b60006125dd848285016125a4565b91505092915050565b60006040820190506125fb60008301856122e6565b61260860208301846122e6565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061266b602583611f2a565b91506126768261260f565b604082019050919050565b6000602082019050818103600083015261269a8161265e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126fd602683611f2a565b9150612708826126a1565b604082019050919050565b6000602082019050818103600083015261272c816126f0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061278f602483611f2a565b915061279a82612733565b604082019050919050565b600060208201905081810360008301526127be81612782565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612821602283611f2a565b915061282c826127c5565b604082019050919050565b6000602082019050818103600083015261285081612814565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061288d601d83611f2a565b915061289882612857565b602082019050919050565b600060208201905081810360008301526128bc81612880565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061291f602583611f2a565b915061292a826128c3565b604082019050919050565b6000602082019050818103600083015261294e81612912565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129b1602383611f2a565b91506129bc82612955565b604082019050919050565b600060208201905081810360008301526129e0816129a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a43602683611f2a565b9150612a4e826129e7565b604082019050919050565b60006020820190508181036000830152612a7281612a36565b9050919050565b6000612a8482612034565b9150612a8f83612034565b9250828202612a9d81612034565b91508282048414831517612ab457612ab3612541565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612af582612034565b9150612b0083612034565b925082612b1057612b0f612abb565b5b828204905092915050565b6000612b2682612034565b9150612b3183612034565b9250828203905081811115612b4957612b48612541565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b85602083611f2a565b9150612b9082612b4f565b602082019050919050565b60006020820190508181036000830152612bb481612b78565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c17602183611f2a565b9150612c2282612bbb565b604082019050919050565b60006020820190508181036000830152612c4681612c0a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca9602283611f2a565b9150612cb482612c4d565b604082019050919050565b60006020820190508181036000830152612cd881612c9c565b905091905056fea2646970667358221220470bd289c7a3b709e9013df89cd84e3c340b9699a1869eb43d8e06df8801fb6364736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000004f90df1a57f4080b759c92e1c817e15ed817549c00000000000000000000000000000000000000000000000000000000000026ac00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000009634c6f776e546f776e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434c4f574e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): cLownTown
Arg [1] : symbol_ (string): CLOWN
Arg [2] : feeWallet_ (address): 0x4F90df1a57f4080B759c92e1c817E15ED817549C
Arg [3] : feeBpsTotal_ (uint16): 9900
Arg [4] : feeBpsToStakers_ (uint16): 250
Arg [5] : maxBpsPerWallet_ (uint16): 100
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000004f90df1a57f4080b759c92e1c817e15ed817549c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000026ac
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 634c6f776e546f776e0000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 434c4f574e000000000000000000000000000000000000000000000000000000
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.