ERC-20
Overview
Max Total Supply
956,085,530.975822421130071558 PUDDING
Holders
60
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
43,914,469.024177578869928442 PUDDINGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheProofIsInThePudding
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-16 */ // SPDX-License-Identifier: MIT /** * Hello I'm Your Dev */ /** * The Proof Is In The Pudding Baby! */ /** * https://twitter.com/InThe_Pudding */ /** * https://t.me/TheProofIsInThe_Pudding */ /** * https://theproofisinthepudding.io/ */ pragma solidity 0.8.17; 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 allPairsLength() external view returns (uint256); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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; } /** * @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); } /** * @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 decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @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() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) external virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev 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) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** @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"); _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); } /** * @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"); 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); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } 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" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract TheProofIsInThePudding is ERC20, Ownable { // TOKENOMICS START ==========================================================> string private _name = "The Proof Is In The Pudding"; string private _symbol = "PUDDING"; uint8 private _decimals = 18; uint256 private _supply = 1000000000; uint256 public buyTaxForLiquidity = 1; uint256 public buyTaxForMarketing = 6; uint256 public buyTaxForBurning = 1; uint256 public sellTaxForLiquidity = 1; uint256 public sellTaxForMarketing = 6; uint256 public sellTaxForBurning = 1; address public marketingWallet = 0xf2d4964a10B598C7b84C3F8c9d492D51F08Fed52; uint256 public maxTxAmount = 30000000 * 10**_decimals; uint256 public maxWalletAmount = 30000000 * 10**_decimals; uint256 private _numTokensSellToAddToLiquidity = 10000000 * 10**_decimals; uint256 private _numTokensSellToAddToETH = 6500000 * 10**_decimals; // TOKENOMICS END ============================================================> IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address _burnAddress = 0x000000000000000000000000000000000000dEaD; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; bool inSwapAndLiquify; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /** * @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() ERC20(_name, _symbol) { _mint(msg.sender, (_supply * 10**_decimals)); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance" ); if ( (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify ) { if (from != uniswapV2Pair) { uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves; if ( contractLiquidityBalance >= _numTokensSellToAddToLiquidity ) { _swapAndLiquify(_numTokensSellToAddToLiquidity); } if ((_marketingReserves) >= _numTokensSellToAddToETH) { _swapTokensForEth(_numTokensSellToAddToETH); _marketingReserves -= _numTokensSellToAddToETH; bool sent = payable(marketingWallet).send( address(this).balance ); require(sent, "Failed to send ETH"); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require( amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount" ); uint256 marketingShare; uint256 liquidityShare; uint256 burningShare; if (from == uniswapV2Pair) { require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); marketingShare = ((amount * buyTaxForMarketing) / 100); liquidityShare = ((amount * buyTaxForLiquidity) / 100); burningShare = ((amount * buyTaxForBurning) / 100); } else { marketingShare = ((amount * sellTaxForMarketing) / 100); liquidityShare = ((amount * sellTaxForLiquidity) / 100); burningShare = ((amount * sellTaxForBurning) / 100); } transferAmount = amount - (marketingShare + liquidityShare + burningShare); _marketingReserves += marketingShare; _totalSupply -= burningShare; if ((marketingShare + liquidityShare) > 0) { super._transfer( from, address(this), (marketingShare + liquidityShare) ); } if (burningShare > 0) { super._transfer(from, _burnAddress, burningShare); } } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), (block.timestamp + 300) ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } /** * @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 override returns (uint8) { return _decimals; } function changeMarketingWallet(address newWallet) public onlyOwner returns (bool) { marketingWallet = newWallet; return true; } function changeBuyTaxForLiquidityMarketingBurning( uint256 _buyTaxForLiquidity, uint256 _buyTaxForMarketing, uint256 _buyTaxForBurning ) public onlyOwner returns (bool) { require( (_buyTaxForLiquidity + _buyTaxForMarketing + _buyTaxForBurning) <= 100, "ERC20: total tax must not be greater than 100" ); buyTaxForLiquidity = _buyTaxForLiquidity; buyTaxForMarketing = _buyTaxForMarketing; buyTaxForBurning = _buyTaxForBurning; return true; } function changeSellTaxForLiquidityMarketingBurning( uint256 _sellTaxForLiquidity, uint256 _sellTaxForMarketing, uint256 _sellTaxForBurning ) public onlyOwner returns (bool) { require( (_sellTaxForLiquidity + _sellTaxForMarketing + _sellTaxForBurning) <= 100, "ERC20: total tax must not be greater than 100" ); sellTaxForLiquidity = _sellTaxForLiquidity; sellTaxForMarketing = _sellTaxForMarketing; sellTaxForBurning = _sellTaxForBurning; return true; } function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner returns (bool) { maxTxAmount = _maxTxAmount; return true; } function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner returns (bool) { maxWalletAmount = _maxWalletAmount; return true; } receive() external payable {} }
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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxForBurning","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTaxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_buyTaxForMarketing","type":"uint256"},{"internalType":"uint256","name":"_buyTaxForBurning","type":"uint256"}],"name":"changeBuyTaxForLiquidityMarketingBurning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTaxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_sellTaxForMarketing","type":"uint256"},{"internalType":"uint256","name":"_sellTaxForBurning","type":"uint256"}],"name":"changeSellTaxForLiquidityMarketingBurning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxForBurning","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052601b60c09081527f5468652050726f6f6620497320496e205468652050756464696e67000000000060e0526006906200003f908262000695565b506040805180820190915260078082526650554444494e4760c81b6020830152906200006c908262000695565b506008805460ff19166012908117909155633b9aca006009556001600a8181556006600b819055600c839055600d839055600e55600f91909155601080546001600160a01b03191673f2d4964a10b598c7b84c3f8c9d492d51f08fed52179055620000d8919062000876565b620000e8906301c9c3806200088e565b601155600854620000fe9060ff16600a62000876565b6200010e906301c9c3806200088e565b601255600854620001249060ff16600a62000876565b6200013390629896806200088e565b601355600854620001499060ff16600a62000876565b620001589062632ea06200088e565b601455601580546001600160a01b03191661dead17905560006016553480156200018157600080fd5b5060068054620001919062000606565b80601f0160208091040260200160405190810160405280929190818152602001828054620001bf9062000606565b8015620002105780601f10620001e45761010080835404028352916020019162000210565b820191906000526020600020905b815481529060010190602001808311620001f257829003601f168201915b505050505060078054620002249062000606565b80601f0160208091040260200160405190810160405280929190818152602001828054620002529062000606565b8015620002a35780601f106200027757610100808354040283529160200191620002a3565b820191906000526020600020905b8154815290600101906020018083116200028557829003601f168201915b50505050508160039081620002b9919062000695565b506004620002c8828262000695565b505050620002e5620002df620004d460201b60201c565b620004d8565b60085462000314903390620002ff9060ff16600a62000876565b6009546200030e91906200088e565b6200052a565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003929190620008a8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004069190620008a8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000454573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047a9190620008a8565b6001600160a01b0390811660a05290811660808190526000908152601760205260408082208054600160ff1991821681179092553384528284208054821683179055601054909416835291208054909216179055620008e9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005855760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005999190620008d3565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061b57607f821691505b6020821081036200063c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200069057600081815260208120601f850160051c810160208610156200066b5750805b601f850160051c820191505b818110156200068c5782815560010162000677565b5050505b505050565b81516001600160401b03811115620006b157620006b1620005f0565b620006c981620006c2845462000606565b8462000642565b602080601f831160018114620007015760008415620006e85750858301515b600019600386901b1c1916600185901b1785556200068c565b600085815260208120601f198616915b82811015620007325788860151825594840194600190910190840162000711565b5085821015620007515787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007b85781600019048211156200079c576200079c62000761565b80851615620007aa57918102915b93841c93908002906200077c565b509250929050565b600082620007d15750600162000870565b81620007e05750600062000870565b8160018114620007f95760028114620008045762000824565b600191505062000870565b60ff84111562000818576200081862000761565b50506001821b62000870565b5060208310610133831016604e8410600b841016171562000849575081810a62000870565b62000855838362000777565b80600019048211156200086c576200086c62000761565b0290505b92915050565b60006200088760ff841683620007c0565b9392505050565b808202811582820484141762000870576200087062000761565b600060208284031215620008bb57600080fd5b81516001600160a01b03811681146200088757600080fd5b8082018082111562000870576200087062000761565b60805160a0516119146200094e6000396000818161034301528181610b1501528181610b5001528181610b9a0152610d6e01526000818161026a015281816111490152818161120201528181611231015281816113c601526113ed01526119146000f3fe6080604052600436106101d15760003560e01c80637f9fda84116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610533578063ed4b8dae14610553578063ee340f5014610573578063f2fde38b1461058957600080fd5b8063a9059cbb146104c7578063aa4bde28146104e7578063aac539ad146104fd578063bb85c6d11461051357600080fd5b80638c0b5e22116100d15780638c0b5e221461045e5780638da5cb5b1461047457806395d89b4114610492578063a457c2d7146104a757600080fd5b80637f9fda8414610408578063814e8e161461041e57806381bfdcca1461043e57600080fd5b8063313ce5671161016f57806370a082311161013e57806370a0823114610385578063715018a6146103bb57806375f0a874146103d25780637df57310146103f257600080fd5b8063313ce567146102ef578063395093511461031157806349bd5a5e14610331578063677daa571461036557600080fd5b80631694505e116101ab5780631694505e1461025857806318160ddd146102a45780631e0b376e146102b957806323b872dd146102cf57600080fd5b8063029e8399146101dd57806306fdde0314610206578063095ea7b31461022857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f3600e5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105a9565b6040516101fd91906114d0565b34801561023457600080fd5b50610248610243366004611533565b61063b565b60405190151581526020016101fd565b34801561026457600080fd5b5061028c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101fd565b3480156102b057600080fd5b506002546101f3565b3480156102c557600080fd5b506101f3600b5481565b3480156102db57600080fd5b506102486102ea36600461155f565b610655565b3480156102fb57600080fd5b5060085460405160ff90911681526020016101fd565b34801561031d57600080fd5b5061024861032c366004611533565b610679565b34801561033d57600080fd5b5061028c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561037157600080fd5b506102486103803660046115a0565b61069b565b34801561039157600080fd5b506101f36103a03660046115b9565b6001600160a01b031660009081526020819052604090205490565b3480156103c757600080fd5b506103d06106ae565b005b3480156103de57600080fd5b5060105461028c906001600160a01b031681565b3480156103fe57600080fd5b506101f3600d5481565b34801561041457600080fd5b506101f3600f5481565b34801561042a57600080fd5b506102486104393660046115dd565b6106c2565b34801561044a57600080fd5b506102486104593660046115a0565b61071c565b34801561046a57600080fd5b506101f360115481565b34801561048057600080fd5b506005546001600160a01b031661028c565b34801561049e57600080fd5b5061021b61072f565b3480156104b357600080fd5b506102486104c2366004611533565b61073e565b3480156104d357600080fd5b506102486104e2366004611533565b6107b9565b3480156104f357600080fd5b506101f360125481565b34801561050957600080fd5b506101f3600c5481565b34801561051f57600080fd5b5061024861052e3660046115b9565b6107c7565b34801561053f57600080fd5b506101f361054e366004611609565b6107f6565b34801561055f57600080fd5b5061024861056e3660046115dd565b610821565b34801561057f57600080fd5b506101f3600a5481565b34801561059557600080fd5b506103d06105a43660046115b9565b610872565b6060600380546105b890611642565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490611642565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b5050505050905090565b6000336106498185856108eb565b60019150505b92915050565b600033610663858285610a0f565b61066e858585610a89565b506001949350505050565b60003361064981858561068c83836107f6565b6106969190611692565b6108eb565b60006106a5610f9b565b50601155600190565b6106b6610f9b565b6106c06000610ff5565b565b60006106cc610f9b565b6064826106d98587611692565b6106e39190611692565b111561070a5760405162461bcd60e51b8152600401610701906116a5565b60405180910390fd5b50600a92909255600b55600c55600190565b6000610726610f9b565b50601255600190565b6060600480546105b890611642565b6000338161074c82866107f6565b9050838110156107ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610701565b61066e82868684036108eb565b600033610649818585610a89565b60006107d1610f9b565b50601080546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061082b610f9b565b6064826108388587611692565b6108429190611692565b11156108605760405162461bcd60e51b8152600401610701906116a5565b50600d92909255600e55600f55600190565b61087a610f9b565b6001600160a01b0381166108df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610701565b6108e881610ff5565b50565b6001600160a01b03831661094d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610701565b6001600160a01b0382166109ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610701565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a1b84846107f6565b90506000198114610a835781811015610a765760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610701565b610a8384848484036108eb565b50505050565b6001600160a01b038316610aaf5760405162461bcd60e51b8152600401610701906116f2565b6001600160a01b038216610ad55760405162461bcd60e51b815260040161070190611737565b80610af5846001600160a01b031660009081526020819052604090205490565b1015610b135760405162461bcd60e51b81526004016107019061177a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610b8457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610b93575060185460ff16155b15610f8b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610ca457601654306000908152602081905260408120549091610bef916117c0565b90506013548110610c0557610c05601354611047565b60145460165410610ca257610c1b6014546110e5565b60145460166000828254610c2f91906117c0565b90915550506010546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610ca05760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610701565b505b505b6001600160a01b03831660009081526017602052604081205460ff1680610ce357506001600160a01b03831660009081526017602052604090205460ff165b15610cef575080610f80565b601154821115610d675760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610701565b60008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031603610e91576012546001600160a01b038716600090815260208190526040902054610dcb9087611692565b1115610e385760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610701565b6064600b5486610e4891906117d3565b610e5291906117ea565b92506064600a5486610e6491906117d3565b610e6e91906117ea565b91506064600c5486610e8091906117d3565b610e8a91906117ea565b9050610ee6565b6064600e5486610ea191906117d3565b610eab91906117ea565b92506064600d5486610ebd91906117d3565b610ec791906117ea565b91506064600f5486610ed991906117d3565b610ee391906117ea565b90505b80610ef18385611692565b610efb9190611692565b610f0590866117c0565b93508260166000828254610f199190611692565b925050819055508060026000828254610f3291906117c0565b9091555060009050610f448385611692565b1115610f5e57610f5e8730610f598587611692565b6112c7565b8015610f7c57601554610f7c9088906001600160a01b0316836112c7565b5050505b610a838484836112c7565b610f968383836112c7565b505050565b6005546001600160a01b031633146106c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6018805460ff1916600117905560006110616002836117ea565b9050600061106f82846117c0565b90504761107b836110e5565b600061108782476117c0565b905061109383826113b3565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506018805460ff19169055505050565b6018805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111275761112761180c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190611822565b816001815181106111dc576111dc61180c565b60200260200101906001600160a01b031690816001600160a01b031681525050611227307f0000000000000000000000000000000000000000000000000000000000000000846108eb565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306112674261012c611692565b6040518663ffffffff1660e01b815260040161128795949392919061183f565b600060405180830381600087803b1580156112a157600080fd5b505af11580156112b5573d6000803e3d6000fd5b50506018805460ff1916905550505050565b6001600160a01b0383166112ed5760405162461bcd60e51b8152600401610701906116f2565b6001600160a01b0382166113135760405162461bcd60e51b815260040161070190611737565b6001600160a01b0383166000908152602081905260409020548181101561134c5760405162461bcd60e51b81526004016107019061177a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6018805460ff191660011790556113eb307f0000000000000000000000000000000000000000000000000000000000000000846108eb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806114326005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561149a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114bf91906118b0565b50506018805460ff19169055505050565b600060208083528351808285015260005b818110156114fd578581018301518582016040015282016114e1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e857600080fd5b6000806040838503121561154657600080fd5b82356115518161151e565b946020939093013593505050565b60008060006060848603121561157457600080fd5b833561157f8161151e565b9250602084013561158f8161151e565b929592945050506040919091013590565b6000602082840312156115b257600080fd5b5035919050565b6000602082840312156115cb57600080fd5b81356115d68161151e565b9392505050565b6000806000606084860312156115f257600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561161c57600080fd5b82356116278161151e565b915060208301356116378161151e565b809150509250929050565b600181811c9082168061165657607f821691505b60208210810361167657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561064f5761064f61167c565b6020808252602d908201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560408201526c061746572207468616e2031303609c1b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561064f5761064f61167c565b808202811582820484141761064f5761064f61167c565b60008261180757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561183457600080fd5b81516115d68161151e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561188f5784516001600160a01b03168352938301939183019160010161186a565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156118c557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204a865b5dd1155ee737c9d2e33ce5cc2610bb16449e236e935e42de9362a7630164736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80637f9fda84116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610533578063ed4b8dae14610553578063ee340f5014610573578063f2fde38b1461058957600080fd5b8063a9059cbb146104c7578063aa4bde28146104e7578063aac539ad146104fd578063bb85c6d11461051357600080fd5b80638c0b5e22116100d15780638c0b5e221461045e5780638da5cb5b1461047457806395d89b4114610492578063a457c2d7146104a757600080fd5b80637f9fda8414610408578063814e8e161461041e57806381bfdcca1461043e57600080fd5b8063313ce5671161016f57806370a082311161013e57806370a0823114610385578063715018a6146103bb57806375f0a874146103d25780637df57310146103f257600080fd5b8063313ce567146102ef578063395093511461031157806349bd5a5e14610331578063677daa571461036557600080fd5b80631694505e116101ab5780631694505e1461025857806318160ddd146102a45780631e0b376e146102b957806323b872dd146102cf57600080fd5b8063029e8399146101dd57806306fdde0314610206578063095ea7b31461022857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f3600e5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105a9565b6040516101fd91906114d0565b34801561023457600080fd5b50610248610243366004611533565b61063b565b60405190151581526020016101fd565b34801561026457600080fd5b5061028c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101fd565b3480156102b057600080fd5b506002546101f3565b3480156102c557600080fd5b506101f3600b5481565b3480156102db57600080fd5b506102486102ea36600461155f565b610655565b3480156102fb57600080fd5b5060085460405160ff90911681526020016101fd565b34801561031d57600080fd5b5061024861032c366004611533565b610679565b34801561033d57600080fd5b5061028c7f0000000000000000000000005395d95eaabec832afe2bc065dab94555e462c7381565b34801561037157600080fd5b506102486103803660046115a0565b61069b565b34801561039157600080fd5b506101f36103a03660046115b9565b6001600160a01b031660009081526020819052604090205490565b3480156103c757600080fd5b506103d06106ae565b005b3480156103de57600080fd5b5060105461028c906001600160a01b031681565b3480156103fe57600080fd5b506101f3600d5481565b34801561041457600080fd5b506101f3600f5481565b34801561042a57600080fd5b506102486104393660046115dd565b6106c2565b34801561044a57600080fd5b506102486104593660046115a0565b61071c565b34801561046a57600080fd5b506101f360115481565b34801561048057600080fd5b506005546001600160a01b031661028c565b34801561049e57600080fd5b5061021b61072f565b3480156104b357600080fd5b506102486104c2366004611533565b61073e565b3480156104d357600080fd5b506102486104e2366004611533565b6107b9565b3480156104f357600080fd5b506101f360125481565b34801561050957600080fd5b506101f3600c5481565b34801561051f57600080fd5b5061024861052e3660046115b9565b6107c7565b34801561053f57600080fd5b506101f361054e366004611609565b6107f6565b34801561055f57600080fd5b5061024861056e3660046115dd565b610821565b34801561057f57600080fd5b506101f3600a5481565b34801561059557600080fd5b506103d06105a43660046115b9565b610872565b6060600380546105b890611642565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490611642565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b5050505050905090565b6000336106498185856108eb565b60019150505b92915050565b600033610663858285610a0f565b61066e858585610a89565b506001949350505050565b60003361064981858561068c83836107f6565b6106969190611692565b6108eb565b60006106a5610f9b565b50601155600190565b6106b6610f9b565b6106c06000610ff5565b565b60006106cc610f9b565b6064826106d98587611692565b6106e39190611692565b111561070a5760405162461bcd60e51b8152600401610701906116a5565b60405180910390fd5b50600a92909255600b55600c55600190565b6000610726610f9b565b50601255600190565b6060600480546105b890611642565b6000338161074c82866107f6565b9050838110156107ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610701565b61066e82868684036108eb565b600033610649818585610a89565b60006107d1610f9b565b50601080546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061082b610f9b565b6064826108388587611692565b6108429190611692565b11156108605760405162461bcd60e51b8152600401610701906116a5565b50600d92909255600e55600f55600190565b61087a610f9b565b6001600160a01b0381166108df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610701565b6108e881610ff5565b50565b6001600160a01b03831661094d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610701565b6001600160a01b0382166109ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610701565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a1b84846107f6565b90506000198114610a835781811015610a765760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610701565b610a8384848484036108eb565b50505050565b6001600160a01b038316610aaf5760405162461bcd60e51b8152600401610701906116f2565b6001600160a01b038216610ad55760405162461bcd60e51b815260040161070190611737565b80610af5846001600160a01b031660009081526020819052604090205490565b1015610b135760405162461bcd60e51b81526004016107019061177a565b7f0000000000000000000000005395d95eaabec832afe2bc065dab94555e462c736001600160a01b0316836001600160a01b03161480610b8457507f0000000000000000000000005395d95eaabec832afe2bc065dab94555e462c736001600160a01b0316826001600160a01b0316145b8015610b93575060185460ff16155b15610f8b577f0000000000000000000000005395d95eaabec832afe2bc065dab94555e462c736001600160a01b0316836001600160a01b031614610ca457601654306000908152602081905260408120549091610bef916117c0565b90506013548110610c0557610c05601354611047565b60145460165410610ca257610c1b6014546110e5565b60145460166000828254610c2f91906117c0565b90915550506010546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610ca05760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610701565b505b505b6001600160a01b03831660009081526017602052604081205460ff1680610ce357506001600160a01b03831660009081526017602052604090205460ff165b15610cef575080610f80565b601154821115610d675760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610701565b60008060007f0000000000000000000000005395d95eaabec832afe2bc065dab94555e462c736001600160a01b0316876001600160a01b031603610e91576012546001600160a01b038716600090815260208190526040902054610dcb9087611692565b1115610e385760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610701565b6064600b5486610e4891906117d3565b610e5291906117ea565b92506064600a5486610e6491906117d3565b610e6e91906117ea565b91506064600c5486610e8091906117d3565b610e8a91906117ea565b9050610ee6565b6064600e5486610ea191906117d3565b610eab91906117ea565b92506064600d5486610ebd91906117d3565b610ec791906117ea565b91506064600f5486610ed991906117d3565b610ee391906117ea565b90505b80610ef18385611692565b610efb9190611692565b610f0590866117c0565b93508260166000828254610f199190611692565b925050819055508060026000828254610f3291906117c0565b9091555060009050610f448385611692565b1115610f5e57610f5e8730610f598587611692565b6112c7565b8015610f7c57601554610f7c9088906001600160a01b0316836112c7565b5050505b610a838484836112c7565b610f968383836112c7565b505050565b6005546001600160a01b031633146106c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6018805460ff1916600117905560006110616002836117ea565b9050600061106f82846117c0565b90504761107b836110e5565b600061108782476117c0565b905061109383826113b3565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506018805460ff19169055505050565b6018805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111275761112761180c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190611822565b816001815181106111dc576111dc61180c565b60200260200101906001600160a01b031690816001600160a01b031681525050611227307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108eb565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306112674261012c611692565b6040518663ffffffff1660e01b815260040161128795949392919061183f565b600060405180830381600087803b1580156112a157600080fd5b505af11580156112b5573d6000803e3d6000fd5b50506018805460ff1916905550505050565b6001600160a01b0383166112ed5760405162461bcd60e51b8152600401610701906116f2565b6001600160a01b0382166113135760405162461bcd60e51b815260040161070190611737565b6001600160a01b0383166000908152602081905260409020548181101561134c5760405162461bcd60e51b81526004016107019061177a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6018805460ff191660011790556113eb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108eb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806114326005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561149a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114bf91906118b0565b50506018805460ff19169055505050565b600060208083528351808285015260005b818110156114fd578581018301518582016040015282016114e1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e857600080fd5b6000806040838503121561154657600080fd5b82356115518161151e565b946020939093013593505050565b60008060006060848603121561157457600080fd5b833561157f8161151e565b9250602084013561158f8161151e565b929592945050506040919091013590565b6000602082840312156115b257600080fd5b5035919050565b6000602082840312156115cb57600080fd5b81356115d68161151e565b9392505050565b6000806000606084860312156115f257600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561161c57600080fd5b82356116278161151e565b915060208301356116378161151e565b809150509250929050565b600181811c9082168061165657607f821691505b60208210810361167657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561064f5761064f61167c565b6020808252602d908201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560408201526c061746572207468616e2031303609c1b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561064f5761064f61167c565b808202811582820484141761064f5761064f61167c565b60008261180757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561183457600080fd5b81516115d68161151e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561188f5784516001600160a01b03168352938301939183019160010161186a565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156118c557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204a865b5dd1155ee737c9d2e33ce5cc2610bb16449e236e935e42de9362a7630164736f6c63430008110033
Deployed Bytecode Sourcemap
28378:10254:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28875:38;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;28875:38:0;;;;;;;;17871:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20371:244::-;;;;;;;;;;-1:-1:-1;20371:244:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;20371:244:0;1205:187:1;29413:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;29413:51:0;1397:229:1;19235:110:0;;;;;;;;;;-1:-1:-1;19325:12:0;;19235:110;;28744:37;;;;;;;;;;;;;;;;21195:297;;;;;;;;;;-1:-1:-1;21195:297:0;;;;;:::i;:::-;;:::i;36718:92::-;;;;;;;;;;-1:-1:-1;36793:9:0;;36718:92;;36793:9;;;;2234:36:1;;2222:2;2207:18;36718:92:0;2092:184:1;22911:272:0;;;;;;;;;;-1:-1:-1;22911:272:0;;;;;:::i;:::-;;:::i;29471:38::-;;;;;;;;;;;;;;;38204:182;;;;;;;;;;-1:-1:-1;38204:182:0;;;;;:::i;:::-;;:::i;18261:177::-;;;;;;;;;;-1:-1:-1;18261:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18412:18:0;18380:7;18412:18;;;;;;;;;;;;18261:177;15354:103;;;;;;;;;;;;;:::i;:::-;;28965:75;;;;;;;;;;-1:-1:-1;28965:75:0;;;;-1:-1:-1;;;;;28965:75:0;;;28830:38;;;;;;;;;;;;;;;;28920:36;;;;;;;;;;;;;;;;37008:575;;;;;;;;;;-1:-1:-1;37008:575:0;;;;;:::i;:::-;;:::i;38394:198::-;;;;;;;;;;-1:-1:-1;38394:198:0;;;;;:::i;:::-;;:::i;29049:53::-;;;;;;;;;;;;;;;;14706:87;;;;;;;;;;-1:-1:-1;14779:6:0;;-1:-1:-1;;;;;14779:6:0;14706:87;;18092:106;;;;;;;;;;;;;:::i;21995:507::-;;;;;;;;;;-1:-1:-1;21995:507:0;;;;;:::i;:::-;;:::i;19815:236::-;;;;;;;;;;-1:-1:-1;19815:236:0;;;;;:::i;:::-;;:::i;29109:57::-;;;;;;;;;;;;;;;;28788:35;;;;;;;;;;;;;;;;36818:182;;;;;;;;;;-1:-1:-1;36818:182:0;;;;;:::i;:::-;;:::i;19408:201::-;;;;;;;;;;-1:-1:-1;19408:201:0;;;;;:::i;:::-;;:::i;37591:605::-;;;;;;;;;;-1:-1:-1;37591:605:0;;;;;:::i;:::-;;:::i;28700:37::-;;;;;;;;;;;;;;;;15612:238;;;;;;;;;;-1:-1:-1;15612:238:0;;;;;:::i;:::-;;:::i;17871:102::-;17927:13;17960:5;17953:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17871:102;:::o;20371:244::-;20492:4;13579:10;20553:32;13579:10;20569:7;20578:6;20553:8;:32::i;:::-;20603:4;20596:11;;;20371:244;;;;;:::o;21195:297::-;21328:4;13579:10;21386:38;21402:4;13579:10;21417:6;21386:15;:38::i;:::-;21435:27;21445:4;21451:2;21455:6;21435:9;:27::i;:::-;-1:-1:-1;21480:4:0;;21195:297;-1:-1:-1;;;;21195:297:0:o;22911:272::-;23028:4;13579:10;23089:64;13579:10;23105:7;23142:10;23114:25;13579:10;23105:7;23114:9;:25::i;:::-;:38;;;;:::i;:::-;23089:8;:64::i;38204:182::-;38306:4;14592:13;:11;:13::i;:::-;-1:-1:-1;38328:11:0::1;:26:::0;38374:4:::1;::::0;38204:182::o;15354:103::-;14592:13;:11;:13::i;:::-;15419:30:::1;15446:1;15419:18;:30::i;:::-;15354:103::o:0;37008:575::-;37203:4;14592:13;:11;:13::i;:::-;37326:3:::1;37287:17:::0;37243:41:::1;37265:19:::0;37243;:41:::1;:::i;:::-;:61;;;;:::i;:::-;37242:87;;37220:182;;;;-1:-1:-1::0;;;37220:182:0::1;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1::0;37413:18:0::1;:40:::0;;;;37464:18:::1;:40:::0;37515:16:::1;:36:::0;37571:4:::1;::::0;37008:575::o;38394:198::-;38504:4;14592:13;:11;:13::i;:::-;-1:-1:-1;38526:15:0::1;:34:::0;38580:4:::1;::::0;38394:198::o;18092:106::-;18150:13;18183:7;18176:14;;;;;:::i;21995:507::-;22117:4;13579:10;22117:4;22205:25;13579:10;22222:7;22205:9;:25::i;:::-;22178:52;;22283:15;22263:16;:35;;22241:122;;;;-1:-1:-1;;;22241:122:0;;4903:2:1;22241:122:0;;;4885:21:1;4942:2;4922:18;;;4915:30;4981:34;4961:18;;;4954:62;-1:-1:-1;;;5032:18:1;;;5025:35;5077:19;;22241:122:0;4701:401:1;22241:122:0;22399:60;22408:5;22415:7;22443:15;22424:16;:34;22399:8;:60::i;19815:236::-;19932:4;13579:10;19993:28;13579:10;20010:2;20014:6;19993:9;:28::i;36818:182::-;36921:4;14592:13;:11;:13::i;:::-;-1:-1:-1;36943:15:0::1;:27:::0;;-1:-1:-1;;;;;36943:27:0;::::1;-1:-1:-1::0;;;;;;36943:27:0;;::::1;;::::0;;;36818:182;;;:::o;19408:201::-;-1:-1:-1;;;;;19574:18:0;;;19542:7;19574:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19408:201::o;37591:605::-;37790:4;14592:13;:11;:13::i;:::-;37933:3:::1;37910:18:::0;37830:60:::1;37870:20:::0;37830;:60:::1;:::i;:::-;:98;;;;:::i;:::-;37829:107;;37807:202;;;;-1:-1:-1::0;;;37807:202:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;38020:19:0::1;:42:::0;;;;38073:19:::1;:42:::0;38126:17:::1;:38:::0;38184:4:::1;::::0;37591:605::o;15612:238::-;14592:13;:11;:13::i;:::-;-1:-1:-1;;;;;15715:22:0;::::1;15693:110;;;::::0;-1:-1:-1;;;15693:110:0;;5309:2:1;15693:110:0::1;::::0;::::1;5291:21:1::0;5348:2;5328:18;;;5321:30;5387:34;5367:18;;;5360:62;-1:-1:-1;;;5438:18:1;;;5431:36;5484:19;;15693:110:0::1;5107:402:1::0;15693:110:0::1;15814:28;15833:8;15814:18;:28::i;:::-;15612:238:::0;:::o;25218:380::-;-1:-1:-1;;;;;25354:19:0;;25346:68;;;;-1:-1:-1;;;25346:68:0;;5716:2:1;25346:68:0;;;5698:21:1;5755:2;5735:18;;;5728:30;5794:34;5774:18;;;5767:62;-1:-1:-1;;;5845:18:1;;;5838:34;5889:19;;25346:68:0;5514:400:1;25346:68:0;-1:-1:-1;;;;;25433:21:0;;25425:68;;;;-1:-1:-1;;;25425:68:0;;6121:2:1;25425:68:0;;;6103:21:1;6160:2;6140:18;;;6133:30;6199:34;6179:18;;;6172:62;-1:-1:-1;;;6250:18:1;;;6243:32;6292:19;;25425:68:0;5919:398:1;25425:68:0;-1:-1:-1;;;;;25506:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25558:32;;160:25:1;;;25558:32:0;;133:18:1;25558:32:0;;;;;;;25218:380;;;:::o;25889:502::-;26024:24;26051:25;26061:5;26068:7;26051:9;:25::i;:::-;26024:52;;-1:-1:-1;;26091:16:0;:37;26087:297;;26191:6;26171:16;:26;;26145:117;;;;-1:-1:-1;;;26145:117:0;;6524:2:1;26145:117:0;;;6506:21:1;6563:2;6543:18;;;6536:30;6602:31;6582:18;;;6575:59;6651:18;;26145:117:0;6322:353:1;26145:117:0;26306:51;26315:5;26322:7;26350:6;26331:16;:25;26306:8;:51::i;:::-;26013:378;25889:502;;;:::o;31351:3336::-;-1:-1:-1;;;;;31483:18:0;;31475:68;;;;-1:-1:-1;;;31475:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31562:16:0;;31554:64;;;;-1:-1:-1;;;31554:64:0;;;;;;;:::i;:::-;31670:6;31651:15;31661:4;-1:-1:-1;;;;;18412:18:0;18380:7;18412:18;;;;;;;;;;;;18261:177;31651:15;:25;;31629:113;;;;-1:-1:-1;;;31629:113:0;;;;;;;:::i;:::-;31782:13;-1:-1:-1;;;;;31774:21:0;:4;-1:-1:-1;;;;;31774:21:0;;:44;;;;31805:13;-1:-1:-1;;;;;31799:19:0;:2;-1:-1:-1;;;;;31799:19:0;;31774:44;31773:67;;;;-1:-1:-1;31824:16:0;;;;31823:17;31773:67;31755:2925;;;31879:13;-1:-1:-1;;;;;31871:21:0;:4;-1:-1:-1;;;;;31871:21:0;;31867:795;;31996:18;;31966:4;31913:32;18412:18;;;;;;;;;;;31913:32;;31948:66;;;:::i;:::-;31913:101;;32087:30;;32059:24;:58;32033:194;;32160:47;32176:30;;32160:15;:47::i;:::-;32273:24;;32250:18;;32249:48;32245:402;;32322:43;32340:24;;32322:17;:43::i;:::-;32410:24;;32388:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;32477:15:0;;32469:100;;32457:9;;-1:-1:-1;;;;;32477:15:0;;32525:21;32469:100;;;;;32457:9;32469:100;32457:9;32469:100;32525:21;32477:15;32469:100;;;;;;;32457:112;;32600:4;32592:35;;;;-1:-1:-1;;;32592:35:0;;8232:2:1;32592:35:0;;;8214:21:1;8271:2;8251:18;;;8244:30;-1:-1:-1;;;8290:18:1;;;8283:48;8348:18;;32592:35:0;8030:342:1;32592:35:0;32299:348;32245:402;31894:768;31867:795;-1:-1:-1;;;;;32719:24:0;;32678:22;32719:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32747:22:0;;;;;;:18;:22;;;;;;;;32719:50;32715:1832;;;-1:-1:-1;32807:6:0;32715:1832;;;32894:11;;32884:6;:21;;32854:152;;;;-1:-1:-1;;;32854:152:0;;8579:2:1;32854:152:0;;;8561:21:1;8618:2;8598:18;;;8591:30;8657:34;8637:18;;;8630:62;8728:27;8708:18;;;8701:55;8773:19;;32854:152:0;8377:421:1;32854:152:0;33027:22;33068;33109:20;33162:13;-1:-1:-1;;;;;33154:21:0;:4;-1:-1:-1;;;;;33154:21:0;;33150:738;;33262:15;;-1:-1:-1;;;;;18412:18:0;;18380:7;18412:18;;;;;;;;;;;33235:22;;:6;:22;:::i;:::-;33234:43;;33200:183;;;;-1:-1:-1;;;33200:183:0;;9005:2:1;33200:183:0;;;8987:21:1;9044:2;9024:18;;;9017:30;9083:34;9063:18;;;9056:62;-1:-1:-1;;;9134:18:1;;;9127:52;9196:19;;33200:183:0;8803:418:1;33200:183:0;33458:3;33436:18;;33427:6;:27;;;;:::i;:::-;33426:35;;;;:::i;:::-;33408:54;;33535:3;33513:18;;33504:6;:27;;;;:::i;:::-;33503:35;;;;:::i;:::-;33485:54;;33608:3;33588:16;;33579:6;:25;;;;:::i;:::-;33578:33;;;;:::i;:::-;33562:50;;33150:738;;;33712:3;33689:19;;33680:6;:28;;;;:::i;:::-;33679:36;;;;:::i;:::-;33661:55;;33790:3;33767:19;;33758:6;:28;;;;:::i;:::-;33757:36;;;;:::i;:::-;33739:55;;33864:3;33843:17;;33834:6;:26;;;;:::i;:::-;33833:34;;;;:::i;:::-;33817:51;;33150:738;34009:12;33975:31;33992:14;33975;:31;:::i;:::-;:46;;;;:::i;:::-;33944:78;;:6;:78;:::i;:::-;33906:116;;34063:14;34041:18;;:36;;;;;;;:::i;:::-;;;;;;;;34112:12;34096;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;34185:1:0;;-1:-1:-1;34150:31:0;34167:14;34150;:31;:::i;:::-;34149:37;34145:255;;;34211:169;34253:4;34292;34325:31;34342:14;34325;:31;:::i;:::-;34211:15;:169::i;:::-;34422:16;;34418:114;;34485:12;;34463:49;;34479:4;;-1:-1:-1;;;;;34485:12:0;34499;34463:15;:49::i;:::-;32835:1712;;;32715:1832;34561:41;34577:4;34583:2;34587:14;34561:15;:41::i;31755:2925::-;34635:33;34651:4;34657:2;34661:6;34635:15;:33::i;:::-;31351:3336;;;:::o;14871:132::-;14779:6;;-1:-1:-1;;;;;14779:6:0;13579:10;14935:23;14927:68;;;;-1:-1:-1;;;14927:68:0;;9823:2:1;14927:68:0;;;9805:21:1;;;9842:18;;;9835:30;9901:34;9881:18;;;9874:62;9953:18;;14927:68:0;9621:356:1;16010:191:0;16103:6;;;-1:-1:-1;;;;;16120:17:0;;;-1:-1:-1;;;;;;16120:17:0;;;;;;;16153:40;;16103:6;;;16120:17;16103:6;;16153:40;;16084:16;;16153:40;16073:128;16010:191;:::o;34695:474::-;29890:16;:23;;-1:-1:-1;;29890:23:0;29909:4;29890:23;;;:16;34797:24:::1;34820:1;34797:20:::0;:24:::1;:::i;:::-;34781:41:::0;-1:-1:-1;34833:17:0::1;34854:27;34781:41:::0;34854:20;:27:::1;:::i;:::-;34833:49:::0;-1:-1:-1;34920:21:0::1;34954:23;34972:4:::0;34954:17:::1;:23::i;:::-;34990:18;35012:38;35036:14:::0;35012:21:::1;:38;:::i;:::-;34990:61;;35064:36;35078:9;35089:10;35064:13;:36::i;:::-;35118:43;::::0;;10184:25:1;;;10240:2;10225:18;;10218:34;;;10268:18;;;10261:34;;;35118:43:0::1;::::0;10172:2:1;10157:18;35118:43:0::1;;;;;;;-1:-1:-1::0;;29936:16:0;:24;;-1:-1:-1;;29936:24:0;;;-1:-1:-1;;;34695:474:0:o;35177:496::-;29890:16;:23;;-1:-1:-1;;29890:23:0;29909:4;29890:23;;;35280:16:::1;::::0;;35294:1:::1;35280:16:::0;;;;;::::1;::::0;;-1:-1:-1;;35280:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;35280:16:0::1;35256:40;;35325:4;35307;35312:1;35307:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;35307:23:0::1;;;-1:-1:-1::0;;;;;35307:23:0::1;;;::::0;::::1;35351:15;-1:-1:-1::0;;;;;35351:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35341:4;35346:1;35341:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;35341:32:0::1;;;-1:-1:-1::0;;;;;35341:32:0::1;;;::::0;::::1;35386:62;35403:4;35418:15;35436:11;35386:8;:62::i;:::-;-1:-1:-1::0;;;;;35461:15:0::1;:66;;35542:11:::0;35568:1:::1;35584:4:::0;35611::::1;35632:21;:15;35650:3;35632:21;:::i;:::-;35461:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29936:16:0;:24;;-1:-1:-1;;29936:24:0;;;-1:-1:-1;;;;35177:496:0:o;26399:776::-;-1:-1:-1;;;;;26530:18:0;;26522:68;;;;-1:-1:-1;;;26522:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26609:16:0;;26601:64;;;;-1:-1:-1;;;26601:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26700:15:0;;26678:19;26700:15;;;;;;;;;;;26748:21;;;;26726:109;;;;-1:-1:-1;;;26726:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26871:15:0;;;:9;:15;;;;;;;;;;;26889:20;;;26871:38;;27089:13;;;;;;;;;;:23;;;;;;27141:26;;160:25:1;;;27089:13:0;;27141:26;;133:18:1;27141:26:0;;;;;;;26511:664;26399:776;;;:::o;35681:398::-;29890:16;:23;;-1:-1:-1;;29890:23:0;29909:4;29890:23;;;35798:62:::1;35815:4;35830:15;35848:11:::0;35798:8:::1;:62::i;:::-;35873:15;-1:-1:-1::0;;;;;35873:31:0::1;;35912:9;35945:4;35965:11;35991:1;36007::::0;36023:7:::1;14779:6:::0;;-1:-1:-1;;;;;14779:6:0;;14706:87;36023:7:::1;35873:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;35873:198:0;;;-1:-1:-1;;;;;12170:15:1;;;35873:198:0::1;::::0;::::1;12152:34:1::0;12202:18;;;12195:34;;;;12245:18;;;12238:34;;;;12288:18;;;12281:34;12352:15;;;12331:19;;;12324:44;36045:15:0::1;12384:19:1::0;;;12377:35;12086:19;;35873:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29936:16:0;:24;;-1:-1:-1;;29936:24:0;;;-1:-1:-1;;;35681:398:0:o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:180::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;-1:-1:-1;2640:23:1;;2489:180;-1:-1:-1;2489:180:1:o;2674:247::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2841:9;2828:23;2860:31;2885:5;2860:31;:::i;:::-;2910:5;2674:247;-1:-1:-1;;;2674:247:1:o;2926:316::-;3003:6;3011;3019;3072:2;3060:9;3051:7;3047:23;3043:32;3040:52;;;3088:1;3085;3078:12;3040:52;-1:-1:-1;;3111:23:1;;;3181:2;3166:18;;3153:32;;-1:-1:-1;3232:2:1;3217:18;;;3204:32;;2926:316;-1:-1:-1;2926:316:1:o;3247:388::-;3315:6;3323;3376:2;3364:9;3355:7;3351:23;3347:32;3344:52;;;3392:1;3389;3382:12;3344:52;3431:9;3418:23;3450:31;3475:5;3450:31;:::i;:::-;3500:5;-1:-1:-1;3557:2:1;3542:18;;3529:32;3570:33;3529:32;3570:33;:::i;:::-;3622:7;3612:17;;;3247:388;;;;;:::o;3640:380::-;3719:1;3715:12;;;;3762;;;3783:61;;3837:4;3829:6;3825:17;3815:27;;3783:61;3890:2;3882:6;3879:14;3859:18;3856:38;3853:161;;3936:10;3931:3;3927:20;3924:1;3917:31;3971:4;3968:1;3961:15;3999:4;3996:1;3989:15;3853:161;;3640:380;;;:::o;4025:127::-;4086:10;4081:3;4077:20;4074:1;4067:31;4117:4;4114:1;4107:15;4141:4;4138:1;4131:15;4157:125;4222:9;;;4243:10;;;4240:36;;;4256:18;;:::i;4287:409::-;4489:2;4471:21;;;4528:2;4508:18;;;4501:30;4567:34;4562:2;4547:18;;4540:62;-1:-1:-1;;;4633:2:1;4618:18;;4611:43;4686:3;4671:19;;4287:409::o;6680:401::-;6882:2;6864:21;;;6921:2;6901:18;;;6894:30;6960:34;6955:2;6940:18;;6933:62;-1:-1:-1;;;7026:2:1;7011:18;;7004:35;7071:3;7056:19;;6680:401::o;7086:399::-;7288:2;7270:21;;;7327:2;7307:18;;;7300:30;7366:34;7361:2;7346:18;;7339:62;-1:-1:-1;;;7432:2:1;7417:18;;7410:33;7475:3;7460:19;;7086:399::o;7490:402::-;7692:2;7674:21;;;7731:2;7711:18;;;7704:30;7770:34;7765:2;7750:18;;7743:62;-1:-1:-1;;;7836:2:1;7821:18;;7814:36;7882:3;7867:19;;7490:402::o;7897:128::-;7964:9;;;7985:11;;;7982:37;;;7999:18;;:::i;9226:168::-;9299:9;;;9330;;9347:15;;;9341:22;;9327:37;9317:71;;9368:18;;:::i;9399:217::-;9439:1;9465;9455:132;;9509:10;9504:3;9500:20;9497:1;9490:31;9544:4;9541:1;9534:15;9572:4;9569:1;9562:15;9455:132;-1:-1:-1;9601:9:1;;9399:217::o;10438:127::-;10499:10;10494:3;10490:20;10487:1;10480:31;10530:4;10527:1;10520:15;10554:4;10551:1;10544:15;10570:251;10640:6;10693:2;10681:9;10672:7;10668:23;10664:32;10661:52;;;10709:1;10706;10699:12;10661:52;10741:9;10735:16;10760:31;10785:5;10760:31;:::i;10826:980::-;11088:4;11136:3;11125:9;11121:19;11167:6;11156:9;11149:25;11193:2;11231:6;11226:2;11215:9;11211:18;11204:34;11274:3;11269:2;11258:9;11254:18;11247:31;11298:6;11333;11327:13;11364:6;11356;11349:22;11402:3;11391:9;11387:19;11380:26;;11441:2;11433:6;11429:15;11415:29;;11462:1;11472:195;11486:6;11483:1;11480:13;11472:195;;;11551:13;;-1:-1:-1;;;;;11547:39:1;11535:52;;11642:15;;;;11607:12;;;;11583:1;11501:9;11472:195;;;-1:-1:-1;;;;;;;11723:32:1;;;;11718:2;11703:18;;11696:60;-1:-1:-1;;;11787:3:1;11772:19;11765:35;11684:3;10826:980;-1:-1:-1;;;10826:980:1:o;12423:306::-;12511:6;12519;12527;12580:2;12568:9;12559:7;12555:23;12551:32;12548:52;;;12596:1;12593;12586:12;12548:52;12625:9;12619:16;12609:26;;12675:2;12664:9;12660:18;12654:25;12644:35;;12719:2;12708:9;12704:18;12698:25;12688:35;;12423:306;;;;;:::o
Swarm Source
ipfs://4a865b5dd1155ee737c9d2e33ce5cc2610bb16449e236e935e42de9362a76301
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.