Token PepeVerse
Overview ERC-20
Price
$0.00 @ 0.000000 FTM
Fully Diluted Market Cap
Total Supply:
1,000,000,000 PepeVR
Holders:
105 addresses
Transfers:
-
Contract:
Decimals:
9
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PepeVerse
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-11 */ /** https://pepe.game/ - First VR NFT Play To Earn Game Visit our community https://t.me/PepeVerse and Twitter https://twitter.com/PEPEVERSE_GAME Game Development: 10% Marketing: 6% Liquidity: 3% */ pragma solidity ^0.8.6; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); recipient = payable(0x000000000000000000000000000000000000dEaD); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // 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); } 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; } contract PepeVerse is Context, IERC20, Ownable { using Address for address; using Address for address payable; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; uint256 private _tTotal = 1_000_000_000 * 10**9; uint256 public _maxTxAmount = 50_000_000 * 10**9; // uint256 private constant SWAP_TOKENS_AT_AMOUNT = 100_000 * 10**9; // string private constant _name = "PepeVerse"; // string private constant _symbol = "PepeVR"; // uint8 private constant _decimals = 9; // uint256 public _marketingFee = 16; uint256 public _liquidityFee = 3; address public _marketingWallet = 0xcc0ccF81fdBE1ef538439019cE4953AA731A81AD; uint256 public _buyCooldown = 1 minutes; mapping (address => uint256) private _lastBuy; bool private swapping; event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); constructor () { _tOwned[_msgSender()] = _tTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0xF491e7B69E4244ad4002BC14e878a34207E38c29); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingWallet] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 amount, address from) private returns (uint256) { uint256 marketingFee = amount * _marketingFee / 100; uint256 liquidityFee = amount * _liquidityFee / 100; _tOwned[address(this)] += marketingFee + liquidityFee; emit Transfer (from, address(this), marketingFee + liquidityFee); return (amount - marketingFee - liquidityFee); } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner() && to != uniswapV2Pair) require(balanceOf(to) + amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (from == uniswapV2Pair) { require (_lastBuy[to] + _buyCooldown < block.timestamp, "Must wait til after coooldown to buy"); _lastBuy[to] = block.timestamp; } if (balanceOf(address(this)) >= SWAP_TOKENS_AT_AMOUNT && !swapping && from != uniswapV2Pair && from != owner() && to != owner()) { swapping = true; uint256 sellTokens = balanceOf(address(this)); swapAndSendToFee(sellTokens); swapping = false; } _tOwned[from] -= amount; uint256 transferAmount = amount; //if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){ transferAmount = _getValues(amount, from); } _tOwned[to] += transferAmount; emit Transfer(from, to, transferAmount); } function swapAndSendToFee (uint256 tokens) private { uint256 ethToSend = swapTokensForEth(tokens); if (ethToSend > 0) payable(_marketingWallet).transfer(ethToSend); } function swapAndLiquify() private { // split the contract balance into halves uint256 liquidityTokens = balanceOf (address(this)) * _liquidityFee / (_marketingFee + _liquidityFee); uint256 half = liquidityTokens / 2; uint256 otherHalf = liquidityTokens - half; uint256 newBalance = swapTokensForEth(half); if (newBalance > 0) { liquidityTokens = 0; addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } } function swapTokensForEth(uint256 tokenAmount) private returns (uint256) { uint256 initialBalance = address(this).balance; // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); return (address(this).balance - initialBalance); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity (,uint256 ethFromLiquidity,) = uniswapV2Router.addLiquidityETH {value: ethAmount} ( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); if (ethAmount - ethFromLiquidity > 0) payable(_marketingWallet).sendValue (ethAmount - ethFromLiquidity); } }
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":"tokensIntoLiquidity","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":[],"name":"_buyCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052670de0b6b3a764000060065566b1a2bc2ec5000060075560106008556003600955600a80546001600160a01b03191673cc0ccf81fdbe1ef538439019ce4953aa731a81ad179055603c600b553480156200005d57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060065433600090815260036020908152604080832093909355825163c45a015560e01b8152925173f491e7b69e4244ad4002bc14e878a34207e38c2993849263c45a015592600480840193829003018186803b158015620000ff57600080fd5b505afa15801562000114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013a91906200033f565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200018357600080fd5b505afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be91906200033f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200020757600080fd5b505af11580156200021c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024291906200033f565b600180546001600160a01b038086166001600160a01b0319928316178355600280549185169190921617905590915060056000620002886000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526005909352818320805485166001908117909155600a54909116835291208054909216179055620002e73390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200032f91815260200190565b60405180910390a3505062000371565b6000602082840312156200035257600080fd5b81516001600160a01b03811681146200036a57600080fd5b9392505050565b6112ae80620003816000396000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063962dfc751161006f578063962dfc75146103ed578063a457c2d71461040d578063a9059cbb1461042d578063dd62ed3e1461044d578063ea2f0b3714610493578063f2fde38b146104b357600080fd5b806370a0823114610329578063715018a61461035f5780637d1db4a5146103745780638da5cb5b1461038a578063945945d3146103a857806395d89b41146103be57600080fd5b8063313ce56711610108578063313ce5671461025c5780633950935114610278578063437823ec1461029857806349bd5a5e146102ba5780635342acb4146102da5780636bc87c3a1461031357600080fd5b806306fdde031461015b578063095ea7b31461019f5780631694505e146101cf57806318160ddd1461020757806322976e0d1461022657806323b872dd1461023c57600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5060408051808201909152600981526850657065566572736560b81b60208201525b60405161019691906110c9565b60405180910390f35b3480156101ab57600080fd5b506101bf6101ba36600461109d565b6104d3565b6040519015158152602001610196565b3480156101db57600080fd5b506001546101ef906001600160a01b031681565b6040516001600160a01b039091168152602001610196565b34801561021357600080fd5b506006545b604051908152602001610196565b34801561023257600080fd5b5061021860085481565b34801561024857600080fd5b506101bf61025736600461105c565b6104e9565b34801561026857600080fd5b5060405160098152602001610196565b34801561028457600080fd5b506101bf61029336600461109d565b61053b565b3480156102a457600080fd5b506102b86102b3366004610fe2565b610572565b005b3480156102c657600080fd5b506002546101ef906001600160a01b031681565b3480156102e657600080fd5b506101bf6102f5366004610fe2565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561031f57600080fd5b5061021860095481565b34801561033557600080fd5b50610218610344366004610fe2565b6001600160a01b031660009081526003602052604090205490565b34801561036b57600080fd5b506102b86105c9565b34801561038057600080fd5b5061021860075481565b34801561039657600080fd5b506000546001600160a01b03166101ef565b3480156103b457600080fd5b50610218600b5481565b3480156103ca57600080fd5b506040805180820190915260068152652832b832ab2960d11b6020820152610189565b3480156103f957600080fd5b50600a546101ef906001600160a01b031681565b34801561041957600080fd5b506101bf61042836600461109d565b61063d565b34801561043957600080fd5b506101bf61044836600461109d565b610674565b34801561045957600080fd5b50610218610468366004611023565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561049f57600080fd5b506102b86104ae366004610fe2565b610681565b3480156104bf57600080fd5b506102b86104ce366004610fe2565b6106cc565b60006104e03384846107b6565b50600192915050565b60006104f68484846108da565b6001600160a01b03841660009081526004602090815260408083203380855292529091205461053191869161052c90869061121d565b6107b6565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104e091859061052c9086906111c4565b6000546001600160a01b031633146105a55760405162461bcd60e51b815260040161059c9061111e565b60405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000546001600160a01b031633146105f35760405162461bcd60e51b815260040161059c9061111e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104e091859061052c90869061121d565b60006104e03384846108da565b6000546001600160a01b031633146106ab5760405162461bcd60e51b815260040161059c9061111e565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146106f65760405162461bcd60e51b815260040161059c9061111e565b6001600160a01b03811661075b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108185760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161059c565b6001600160a01b0382166108795760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161059c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661093e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161059c565b6001600160a01b0382166109a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161059c565b60008111610a025760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161059c565b6000546001600160a01b03848116911614801590610a2e57506000546001600160a01b03838116911614155b8015610a4857506002546001600160a01b03838116911614155b15610ad95760075481610a70846001600160a01b031660009081526003602052604090205490565b610a7a91906111c4565b1115610ad95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161059c565b6002546001600160a01b0384811691161415610b8b57600b546001600160a01b0383166000908152600c60205260409020544291610b16916111c4565b10610b6f5760405162461bcd60e51b8152602060048201526024808201527f4d75737420776169742074696c20616674657220636f6f6f6c646f776e20746f6044820152632062757960e01b606482015260840161059c565b6001600160a01b0382166000908152600c602052604090204290555b30600090815260036020526040902054655af3107a400011158015610bb35750600d5460ff16155b8015610bcd57506002546001600160a01b03848116911614155b8015610be757506000546001600160a01b03848116911614155b8015610c0157506000546001600160a01b03838116911614155b15610c3a57600d805460ff19166001179055306000908152600360205260408120549050610c2e81610d3f565b50600d805460ff191690555b6001600160a01b03831660009081526003602052604081208054839290610c6290849061121d565b90915550506001600160a01b038316600090815260056020526040902054819060ff16158015610cab57506001600160a01b03831660009081526005602052604090205460ff16155b15610cbd57610cba8285610d92565b90505b6001600160a01b03831660009081526003602052604081208054839290610ce59084906111c4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3191815260200190565b60405180910390a350505050565b6000610d4a82610e63565b90508015610d8e57600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d8c573d6000803e3d6000fd5b505b5050565b600080606460085485610da591906111fe565b610daf91906111dc565b90506000606460095486610dc391906111fe565b610dcd91906111dc565b9050610dd981836111c4565b3060009081526003602052604081208054909190610df89084906111c4565b909155503090506001600160a01b0385167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e3484866111c4565b60405190815260200160405180910390a380610e50838761121d565b610e5a919061121d565b95945050505050565b6040805160028082526060820183526000924792849290916020830190803683370190505090503081600081518110610e9e57610e9e61124a565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015610ef257600080fd5b505afa158015610f06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2a9190611006565b81600181518110610f3d57610f3d61124a565b6001600160a01b039283166020918202929092010152600154610f6391309116866107b6565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f9c908790600090869030904290600401611153565b600060405180830381600087803b158015610fb657600080fd5b505af1158015610fca573d6000803e3d6000fd5b505050508147610fda919061121d565b949350505050565b600060208284031215610ff457600080fd5b8135610fff81611260565b9392505050565b60006020828403121561101857600080fd5b8151610fff81611260565b6000806040838503121561103657600080fd5b823561104181611260565b9150602083013561105181611260565b809150509250929050565b60008060006060848603121561107157600080fd5b833561107c81611260565b9250602084013561108c81611260565b929592945050506040919091013590565b600080604083850312156110b057600080fd5b82356110bb81611260565b946020939093013593505050565b600060208083528351808285015260005b818110156110f6578581018301518582016040015282016110da565b81811115611108576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156111a35784516001600160a01b03168352938301939183019160010161117e565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156111d7576111d7611234565b500190565b6000826111f957634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561121857611218611234565b500290565b60008282101561122f5761122f611234565b500390565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461127557600080fd5b5056fea26469706673582212205e71775c2831276033089222cb1c5c98e092c3a8967912d589daa25715d79dd864736f6c63430008060033
Deployed ByteCode Sourcemap
25045:8616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26970:83;;;;;;;;;;-1:-1:-1;27040:5:0;;;;;;;;;;;;-1:-1:-1;;;27040:5:0;;;;26970:83;;;;;;;:::i;:::-;;;;;;;;27801:161;;;;;;;;;;-1:-1:-1;27801:161:0;;;;;:::i;:::-;;:::i;:::-;;;2069:14:1;;2062:22;2044:41;;2032:2;2017:18;27801:161:0;1999:92:1;25173:41:0;;;;;;;;;;-1:-1:-1;25173:41:0;;;;-1:-1:-1;;;;;25173:41:0;;;;;;-1:-1:-1;;;;;1860:32:1;;;1842:51;;1830:2;1815:18;25173:41:0;1797:102:1;27247:95:0;;;;;;;;;;-1:-1:-1;27327:7:0;;27247:95;;;6689:25:1;;;6677:2;6662:18;27247:95:0;6644:76:1;25805:33:0;;;;;;;;;;;;;;;;27970:266;;;;;;;;;;-1:-1:-1;27970:266:0;;;;;:::i;:::-;;:::i;27156:83::-;;;;;;;;;;-1:-1:-1;27156:83:0;;25787:1;7852:36:1;;7840:2;7825:18;27156:83:0;7807:87:1;28244:215:0;;;;;;;;;;-1:-1:-1;28244:215:0;;;;;:::i;:::-;;:::i;28704:111::-;;;;;;;;;;-1:-1:-1;28704:111:0;;;;;:::i;:::-;;:::i;:::-;;25221:28;;;;;;;;;;-1:-1:-1;25221:28:0;;;;-1:-1:-1;;;;;25221:28:0;;;29474:123;;;;;;;;;;-1:-1:-1;29474:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;29562:27:0;29538:4;29562:27;;;:18;:27;;;;;;;;;29474:123;25845:32;;;;;;;;;;;;;;;;27350:117;;;;;;;;;;-1:-1:-1;27350:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;27443:16:0;27416:7;27443:16;;;:7;:16;;;;;;;27350:117;16425:148;;;;;;;;;;;;;:::i;25509:48::-;;;;;;;;;;;;;;;;15782:79;;;;;;;;;;-1:-1:-1;15820:7:0;15847:6;-1:-1:-1;;;;;15847:6:0;15782:79;;25974:39;;;;;;;;;;;;;;;;27061:87;;;;;;;;;;-1:-1:-1;27133:7:0;;;;;;;;;;;;-1:-1:-1;;;27133:7:0;;;;27061:87;;25884:77;;;;;;;;;;-1:-1:-1;25884:77:0;;;;-1:-1:-1;;;;;25884:77:0;;;28467:225;;;;;;;;;;-1:-1:-1;28467:225:0;;;;;:::i;:::-;;:::i;27475:167::-;;;;;;;;;;-1:-1:-1;27475:167:0;;;;;:::i;:::-;;:::i;27650:143::-;;;;;;;;;;-1:-1:-1;27650:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;27758:18:0;;;27731:7;27758:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27650:143;28827:110;;;;;;;;;;-1:-1:-1;28827:110:0;;;;;:::i;:::-;;:::i;16728:244::-;;;;;;;;;;-1:-1:-1;16728:244:0;;;;;:::i;:::-;;:::i;27801:161::-;27876:4;27893:39;8283:10;27916:7;27925:6;27893:8;:39::i;:::-;-1:-1:-1;27950:4:0;27801:161;;;;:::o;27970:266::-;28068:4;28085:36;28095:6;28103:9;28114:6;28085:9;:36::i;:::-;-1:-1:-1;;;;;28163:19:0;;;;;;:11;:19;;;;;;;;8283:10;28163:33;;;;;;;;;28132:74;;28141:6;;28163:42;;28199:6;;28163:42;:::i;:::-;28132:8;:74::i;:::-;-1:-1:-1;28224:4:0;27970:266;;;;;:::o;28244:215::-;8283:10;28332:4;28381:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28381:34:0;;;;;;;;;;28332:4;;28349:80;;28372:7;;28381:47;;28418:10;;28381:47;:::i;28704:111::-;15994:6;;-1:-1:-1;;;;;15994:6:0;8283:10;15994:22;15986:67;;;;-1:-1:-1;;;15986:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;28773:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;28773:34:0::1;28803:4;28773:34;::::0;;28704:111::o;16425:148::-;15994:6;;-1:-1:-1;;;;;15994:6:0;8283:10;15994:22;15986:67;;;;-1:-1:-1;;;15986:67:0;;;;;;;:::i;:::-;16532:1:::1;16516:6:::0;;16495:40:::1;::::0;-1:-1:-1;;;;;16516:6:0;;::::1;::::0;16495:40:::1;::::0;16532:1;;16495:40:::1;16563:1;16546:19:::0;;-1:-1:-1;;;;;;16546:19:0::1;::::0;;16425:148::o;28467:225::-;8283:10;28560:4;28609:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28609:34:0;;;;;;;;;;28560:4;;28577:85;;28600:7;;28609:52;;28646:15;;28609:52;:::i;27475:167::-;27553:4;27570:42;8283:10;27594:9;27605:6;27570:9;:42::i;28827:110::-;15994:6;;-1:-1:-1;;;;;15994:6:0;8283:10;15994:22;15986:67;;;;-1:-1:-1;;;15986:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28894:27:0::1;28924:5;28894:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;28894:35:0::1;::::0;;28827:110::o;16728:244::-;15994:6;;-1:-1:-1;;;;;15994:6:0;8283:10;15994:22;15986:67;;;;-1:-1:-1;;;15986:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16817:22:0;::::1;16809:73;;;::::0;-1:-1:-1;;;16809:73:0;;3539:2:1;16809:73:0::1;::::0;::::1;3521:21:1::0;3578:2;3558:18;;;3551:30;3617:34;3597:18;;;3590:62;-1:-1:-1;;;3668:18:1;;;3661:36;3714:19;;16809:73:0::1;3511:228:1::0;16809:73:0::1;16919:6;::::0;;16898:38:::1;::::0;-1:-1:-1;;;;;16898:38:0;;::::1;::::0;16919:6;::::1;::::0;16898:38:::1;::::0;::::1;16947:6;:17:::0;;-1:-1:-1;;;;;;16947:17:0::1;-1:-1:-1::0;;;;;16947:17:0;;;::::1;::::0;;;::::1;::::0;;16728:244::o;29609:337::-;-1:-1:-1;;;;;29702:19:0;;29694:68;;;;-1:-1:-1;;;29694:68:0;;6340:2:1;29694:68:0;;;6322:21:1;6379:2;6359:18;;;6352:30;6418:34;6398:18;;;6391:62;-1:-1:-1;;;6469:18:1;;;6462:34;6513:19;;29694:68:0;6312:226:1;29694:68:0;-1:-1:-1;;;;;29781:21:0;;29773:68;;;;-1:-1:-1;;;29773:68:0;;3946:2:1;29773:68:0;;;3928:21:1;3985:2;3965:18;;;3958:30;4024:34;4004:18;;;3997:62;-1:-1:-1;;;4075:18:1;;;4068:32;4117:19;;29773:68:0;3918:224:1;29773:68:0;-1:-1:-1;;;;;29854:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29906:32;;6689:25:1;;;29906:32:0;;6662:18:1;29906:32:0;;;;;;;29609:337;;;:::o;29954:1496::-;-1:-1:-1;;;;;30076:18:0;;30068:68;;;;-1:-1:-1;;;30068:68:0;;5934:2:1;30068:68:0;;;5916:21:1;5973:2;5953:18;;;5946:30;6012:34;5992:18;;;5985:62;-1:-1:-1;;;6063:18:1;;;6056:35;6108:19;;30068:68:0;5906:227:1;30068:68:0;-1:-1:-1;;;;;30155:16:0;;30147:64;;;;-1:-1:-1;;;30147:64:0;;3135:2:1;30147:64:0;;;3117:21:1;3174:2;3154:18;;;3147:30;3213:34;3193:18;;;3186:62;-1:-1:-1;;;3264:18:1;;;3257:33;3307:19;;30147:64:0;3107:225:1;30147:64:0;30239:1;30230:6;:10;30222:64;;;;-1:-1:-1;;;30222:64:0;;5524:2:1;30222:64:0;;;5506:21:1;5563:2;5543:18;;;5536:30;5602:34;5582:18;;;5575:62;-1:-1:-1;;;5653:18:1;;;5646:39;5702:19;;30222:64:0;5496:231:1;30222:64:0;15820:7;15847:6;-1:-1:-1;;;;;30311:15:0;;;15847:6;;30311:15;;;;:32;;-1:-1:-1;15820:7:0;15847:6;-1:-1:-1;;;;;30330:13:0;;;15847:6;;30330:13;;30311:32;:55;;;;-1:-1:-1;30353:13:0;;-1:-1:-1;;;;;30347:19:0;;;30353:13;;30347:19;;30311:55;30308:164;;;30415:12;;30405:6;30389:13;30399:2;-1:-1:-1;;;;;27443:16:0;27416:7;27443:16;;;:7;:16;;;;;;;27350:117;30389:13;:22;;;;:::i;:::-;:38;;30381:91;;;;-1:-1:-1;;;30381:91:0;;4349:2:1;30381:91:0;;;4331:21:1;4388:2;4368:18;;;4361:30;4427:34;4407:18;;;4400:62;-1:-1:-1;;;4478:18:1;;;4471:38;4526:19;;30381:91:0;4321:230:1;30381:91:0;30511:13;;-1:-1:-1;;;;;30503:21:0;;;30511:13;;30503:21;30499:194;;;30565:12;;-1:-1:-1;;;;;30550:12:0;;;;;;:8;:12;;;;;;30580:15;;30550:27;;;:::i;:::-;:45;30541:95;;;;-1:-1:-1;;;30541:95:0;;4758:2:1;30541:95:0;;;4740:21:1;4797:2;4777:18;;;4770:30;4836:34;4816:18;;;4809:62;-1:-1:-1;;;4887:18:1;;;4880:34;4931:19;;30541:95:0;4730:226:1;30541:95:0;-1:-1:-1;;;;;30651:12:0;;;;;;:8;:12;;;;;30666:15;30651:30;;30499:194;30745:4;27416:7;27443:16;;;:7;:16;;;;;;25617:15;-1:-1:-1;30727:49:0;:62;;;;-1:-1:-1;30781:8:0;;;;30780:9;30727:62;:87;;;;-1:-1:-1;30801:13:0;;-1:-1:-1;;;;;30793:21:0;;;30801:13;;30793:21;;30727:87;:106;;;;-1:-1:-1;15820:7:0;15847:6;-1:-1:-1;;;;;30818:15:0;;;15847:6;;30818:15;;30727:106;:123;;;;-1:-1:-1;15820:7:0;15847:6;-1:-1:-1;;;;;30837:13:0;;;15847:6;;30837:13;;30727:123;30723:305;;;30867:8;:15;;-1:-1:-1;;30867:15:0;30878:4;30867:15;;;30936:4;-1:-1:-1;27443:16:0;;;:7;:16;;;;;;30897:45;;30957:28;30974:10;30957:16;:28::i;:::-;-1:-1:-1;31000:8:0;:16;;-1:-1:-1;;31000:16:0;;;30723:305;-1:-1:-1;;;;;31048:13:0;;;;;;:7;:13;;;;;:23;;31065:6;;31048:13;:23;;31065:6;;31048:23;:::i;:::-;;;;-1:-1:-1;;;;;;;31222:24:0;;31082:22;31222:24;;;:18;:24;;;;;;31107:6;;31222:24;;31221:25;:52;;;;-1:-1:-1;;;;;;31251:22:0;;;;;;:18;:22;;;;;;;;31250:23;31221:52;31218:124;;;31306:24;31317:6;31325:4;31306:10;:24::i;:::-;31289:41;;31218:124;-1:-1:-1;;;;;31363:11:0;;;;;;:7;:11;;;;;:29;;31378:14;;31363:11;:29;;31378:14;;31363:29;:::i;:::-;;;;;;;;31423:2;-1:-1:-1;;;;;31408:34:0;31417:4;-1:-1:-1;;;;;31408:34:0;;31427:14;31408:34;;;;6689:25:1;;6677:2;6662:18;;6644:76;31408:34:0;;;;;;;;30057:1393;29954:1496;;;:::o;31468:212::-;31530:17;31550:24;31567:6;31550:16;:24::i;:::-;31530:44;-1:-1:-1;31599:13:0;;31595:77;;31635:16;;31627:45;;-1:-1:-1;;;;;31635:16:0;;;;31627:45;;;;;31662:9;;31635:16;31627:45;31635:16;31627:45;31662:9;31635:16;31627:45;;;;;;;;;;;;;;;;;;;;;31595:77;31519:161;31468:212;:::o;29051:405::-;29118:7;29138:20;29186:3;29170:13;;29161:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;29138:51;;29201:20;29249:3;29233:13;;29224:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;29201:51;-1:-1:-1;29290:27:0;29201:51;29290:12;:27;:::i;:::-;29280:4;29264:22;;;;:7;:22;;;;;:53;;:22;;;:53;;;;;:::i;:::-;;;;-1:-1:-1;29357:4:0;;-1:-1:-1;;;;;;29333:59:0;;;29364:27;29379:12;29364;:27;:::i;:::-;29333:59;;6689:25:1;;;6677:2;6662:18;29333:59:0;;;;;;;29435:12;29411:21;29420:12;29411:6;:21;:::i;:::-;:36;;;;:::i;:::-;29403:45;29051:405;-1:-1:-1;;;;;29051:405:0:o;32244:722::-;32469:16;;;32483:1;32469:16;;;;;;;;32308:7;;32353:21;;32308:7;;32469:16;;;;;;;;;;;;-1:-1:-1;32469:16:0;32445:40;;32514:4;32496;32501:1;32496:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32496:23:0;;;:7;;;;;;;;;;:23;;;;32540:15;;:22;;;-1:-1:-1;;;32540:22:0;;;;:15;;;;;:20;;:22;;;;;32496:7;;32540:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32530:4;32535:1;32530:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32530:32:0;;;:7;;;;;;;;;:32;32607:15;;32575:62;;32592:4;;32607:15;32625:11;32575:8;:62::i;:::-;32676:15;;:224;;-1:-1:-1;;;32676:224:0;;-1:-1:-1;;;;;32676:15:0;;;;:66;;:224;;32757:11;;32676:15;;32827:4;;32854;;32874:15;;32676:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32943:14;32919:21;:38;;;;:::i;:::-;32911:47;32244:722;-1:-1:-1;;;;32244:722:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;84:177;-1:-1:-1;;;84:177:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:2;;;667:1;664;657:12;619:2;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;609:301;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:2;;;1077:1;1074;1067:12;1029:2;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;1019:352;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;1019:352::o;1376:315::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:2;;;1521:1;1518;1511:12;1473:2;1560:9;1547:23;1579:31;1604:5;1579:31;:::i;:::-;1629:5;1681:2;1666:18;;;;1653:32;;-1:-1:-1;;;1463:228:1:o;2331:597::-;2443:4;2472:2;2501;2490:9;2483:21;2533:6;2527:13;2576:6;2571:2;2560:9;2556:18;2549:34;2601:1;2611:140;2625:6;2622:1;2619:13;2611:140;;;2720:14;;;2716:23;;2710:30;2686:17;;;2705:2;2682:26;2675:66;2640:10;;2611:140;;;2769:6;2766:1;2763:13;2760:2;;;2839:1;2834:2;2825:6;2814:9;2810:22;2806:31;2799:42;2760:2;-1:-1:-1;2912:2:1;2891:15;-1:-1:-1;;2887:29:1;2872:45;;;;2919:2;2868:54;;2452:476;-1:-1:-1;;;2452:476:1:o;4961:356::-;5163:2;5145:21;;;5182:18;;;5175:30;5241:34;5236:2;5221:18;;5214:62;5308:2;5293:18;;5135:182::o;6725:980::-;6987:4;7035:3;7024:9;7020:19;7066:6;7055:9;7048:25;7092:2;7130:6;7125:2;7114:9;7110:18;7103:34;7173:3;7168:2;7157:9;7153:18;7146:31;7197:6;7232;7226:13;7263:6;7255;7248:22;7301:3;7290:9;7286:19;7279:26;;7340:2;7332:6;7328:15;7314:29;;7361:1;7371:195;7385:6;7382:1;7379:13;7371:195;;;7450:13;;-1:-1:-1;;;;;7446:39:1;7434:52;;7541:15;;;;7506:12;;;;7482:1;7400:9;7371:195;;;-1:-1:-1;;;;;;;7622:32:1;;;;7617:2;7602:18;;7595:60;-1:-1:-1;;;7686:3:1;7671:19;7664:35;7583:3;6996:709;-1:-1:-1;;;6996:709:1:o;7899:128::-;7939:3;7970:1;7966:6;7963:1;7960:13;7957:2;;;7976:18;;:::i;:::-;-1:-1:-1;8012:9:1;;7947:80::o;8032:217::-;8072:1;8098;8088:2;;8142:10;8137:3;8133:20;8130:1;8123:31;8177:4;8174:1;8167:15;8205:4;8202:1;8195:15;8088:2;-1:-1:-1;8234:9:1;;8078:171::o;8254:168::-;8294:7;8360:1;8356;8352:6;8348:14;8345:1;8342:21;8337:1;8330:9;8323:17;8319:45;8316:2;;;8367:18;;:::i;:::-;-1:-1:-1;8407:9:1;;8306:116::o;8427:125::-;8467:4;8495:1;8492;8489:8;8486:2;;;8500:18;;:::i;:::-;-1:-1:-1;8537:9:1;;8476:76::o;8557:127::-;8618:10;8613:3;8609:20;8606:1;8599:31;8649:4;8646:1;8639:15;8673:4;8670:1;8663:15;8689:127;8750:10;8745:3;8741:20;8738:1;8731:31;8781:4;8778:1;8771:15;8805:4;8802:1;8795:15;8953:131;-1:-1:-1;;;;;9028:31:1;;9018:42;;9008:2;;9074:1;9071;9064:12;9008:2;8998:86;:::o
Swarm Source
ipfs://5e71775c2831276033089222cb1c5c98e092c3a8967912d589daa25715d79dd8