Overview
ETH Balance
0.322153153518563205 ETH
ETH Value
$738.78 (@ $2,293.25/ETH)Token Holdings
Sponsored
Latest 25 from a total of 27,774 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19493830 | 58 mins ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19493631 | 1 hr ago | IN | 0 ETH | 0.00000019 | ||||
Approve | 19492544 | 1 hr ago | IN | 0 ETH | 0.0000001 | ||||
Approve | 19491210 | 2 hrs ago | IN | 0 ETH | 0.00000014 | ||||
Transfer | 19490515 | 2 hrs ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 19490241 | 2 hrs ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 19485228 | 5 hrs ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 19483729 | 6 hrs ago | IN | 0 ETH | 0.00000016 | ||||
Approve | 19482580 | 7 hrs ago | IN | 0 ETH | 0.00000021 | ||||
Transfer | 19481751 | 7 hrs ago | IN | 0 ETH | 0.00000016 | ||||
Approve | 19480515 | 8 hrs ago | IN | 0 ETH | 0.00000016 | ||||
Approve | 19480486 | 8 hrs ago | IN | 0 ETH | 0.00000016 | ||||
Approve | 19477127 | 10 hrs ago | IN | 0 ETH | 0.00000014 | ||||
Approve | 19475732 | 11 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19475683 | 11 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19473112 | 12 hrs ago | IN | 0 ETH | 0.00000015 | ||||
Approve | 19470663 | 13 hrs ago | IN | 0 ETH | 0.00000022 | ||||
Transfer | 19470619 | 13 hrs ago | IN | 0 ETH | 0.00000034 | ||||
Approve | 19469881 | 14 hrs ago | IN | 0 ETH | 0.00000024 | ||||
Approve | 19469761 | 14 hrs ago | IN | 0 ETH | 0.00000024 | ||||
Approve | 19467729 | 15 hrs ago | IN | 0 ETH | 0.00000029 | ||||
Approve | 19466539 | 16 hrs ago | IN | 0 ETH | 0.00000023 | ||||
Transfer | 19466488 | 16 hrs ago | IN | 0 ETH | 0.00000034 | ||||
Approve | 19466250 | 16 hrs ago | IN | 0 ETH | 0.00000022 | ||||
Approve | 19466037 | 16 hrs ago | IN | 0 ETH | 0.0000002 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
13606060 | 136 days ago | 0.85809673 ETH | ||||
13606060 | 136 days ago | 0.45721302 ETH | ||||
12618074 | 159 days ago | 0.05905545 ETH | ||||
12618074 | 159 days ago | 0.05905545 ETH | ||||
12618070 | 159 days ago | 0.05536818 ETH | ||||
12618070 | 159 days ago | 0.05536818 ETH | ||||
12618063 | 159 days ago | 0.06086411 ETH | ||||
12618063 | 159 days ago | 0.06086411 ETH | ||||
12618045 | 159 days ago | 0.09539449 ETH | ||||
12618045 | 159 days ago | 0.09539449 ETH | ||||
12618020 | 159 days ago | 0.07126324 ETH | ||||
12618020 | 159 days ago | 0.07126324 ETH | ||||
12618019 | 159 days ago | 0.07126324 ETH | ||||
12618019 | 159 days ago | 0.07126324 ETH | ||||
12618019 | 159 days ago | 0.07126324 ETH | ||||
12618019 | 159 days ago | 0.07126324 ETH | ||||
12618017 | 159 days ago | 0.09114786 ETH | ||||
12618017 | 159 days ago | 0.09114786 ETH | ||||
12618011 | 159 days ago | 0.05343838 ETH | ||||
12618011 | 159 days ago | 0.05343838 ETH | ||||
12618009 | 159 days ago | 0.11210097 ETH | ||||
12618009 | 159 days ago | 0.11210097 ETH | ||||
12618004 | 159 days ago | 0.06584296 ETH | ||||
12618004 | 159 days ago | 0.06584296 ETH | ||||
12618003 | 159 days ago | 0.06584296 ETH |
Loading...
Loading
Contract Name:
LandWolf
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at basescan.org on 2024-04-02 */ /* * SPDX-License-Identifier: MIT * https://t.me/LandWolfOnBaseCommunity * https://twitter.com/LandWolf_Base * https://www.landwolftoken.vip/ */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev 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 ); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract LandWolf is Context, ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private _isExcludedFromFee; address payable private _taxWallet; uint256 firstBlock; uint64 private lastLiquifyTime; uint256 private buyFee = 20; uint256 private sellFee = 99; uint256 private _preventSwapBefore = 1; uint256 private _buyCount = 0; uint256 private _txAmountLimit; uint256 private _walletAmountLimit; uint256 private _swapbackMin; uint256 private _swapbackMax; IDexRouter private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _txAmountLimit); event MaxWalletAmountUpdated(uint _walletAmountLimit); event FeesUpdated(uint buyFee, uint sellFee); event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax); event FeeReceiverUpdated(address _taxWallet); event ExcludedFromFee(address account, bool status); event LimitsRemoved(); event TradingOpened(); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() ERC20("LandWolf", "WOLF") { uint256 _totalSupply = 420_690_000_000_000 * 10 ** 18; _txAmountLimit = (_totalSupply * 10) / 1000; _walletAmountLimit = (_totalSupply * 10) / 1000; _swapbackMin = (_totalSupply * 5) / 10000; _swapbackMax = (_totalSupply * 300) / 10000; _taxWallet = payable(0x9D56a1ae9598C25d41c2d397E1cA43cec60Dd5B4); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _mint(_msgSender(), _totalSupply); } receive() external payable {} function setLive() external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IDexRouter( 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24 ); _approve(address(this), address(uniswapV2Router), totalSupply()); uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; lastLiquifyTime = uint64(block.number); _isExcludedFromFee[address(this)] = true; emit TradingOpened(); } function changeFeeWAddress(address payable marketingWallet) external onlyOwner { _taxWallet = marketingWallet; emit FeeReceiverUpdated(marketingWallet); } function changeTxAmountMax(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max tx cant be lower than 0.1%"); _txAmountLimit = (totalSupply() * newValue) / 1000; emit MaxTxAmountUpdated(_txAmountLimit); } function changeWltAmountMax(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max wallet cant be lower than 0.1%"); _walletAmountLimit = (totalSupply() * newValue) / 1000; emit MaxWalletAmountUpdated(_walletAmountLimit); } function changeSBRangeValues( uint256 taxSwapThreshold, uint256 maxTaxSwap ) external onlyOwner { _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000; _swapbackMax = (totalSupply() * maxTaxSwap) / 10000; emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap); } function removeLimits() external onlyOwner { _txAmountLimit = totalSupply(); _walletAmountLimit = totalSupply(); emit MaxTxAmountUpdated(totalSupply()); emit MaxWalletAmountUpdated(totalSupply()); } function changeTxFees(uint256 buyTax, uint256 sellTax) external onlyOwner { require(buyTax <= 99, "Invalid buy tax value"); require(sellTax <= 99, "Invalid sell tax value"); buyFee = buyTax; sellFee = sellTax; emit FeesUpdated(buyTax, sellTax); } function recoverETHER() external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); _taxWallet.transfer(address(this).balance); } function setFeeWl(address account, bool status) external onlyOwner { _isExcludedFromFee[account] = status; emit ExcludedFromFee(account, status); } function viewInfo() external view returns ( uint256 _buyFee, uint256 _sellFee, uint256 maxTxAmount, uint256 maxWalletSize, uint256 taxSwapThreshold, uint256 maxTaxSwap ) { return ( buyFee, sellFee, _txAmountLimit, _walletAmountLimit, _swapbackMin, _swapbackMax ); } 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(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner() && !inSwap) { taxAmount = amount.mul(buyFee).div(100); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit."); require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); if (firstBlock + 3 > block.number) { require(!isContract(to)); } _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount.mul(sellFee).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapbackMin && _buyCount > _preventSwapBefore && lastLiquifyTime != uint64(block.number) ) { swapTokensForEth(min(contractTokenBalance, _swapbackMax)); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } } if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function triggerSwap() external { require( msg.sender == _taxWallet || msg.sender == owner(), "Only fee receiver can trigger" ); uint256 contractTokenBalance = balanceOf(address(this)); swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { lastLiquifyTime = uint64(block.number); 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 ); } function sendETHToFee() private { bool success; (success, ) = address(_taxWallet).call{value: address(this).balance}( "" ); } }
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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWallet","type":"address"}],"name":"changeFeeWAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"changeSBRangeValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"changeTxAmountMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"changeTxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"changeWltAmountMax","outputs":[],"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":"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":"recoverETHER","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setFeeWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewInfo","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526014600a556063600b556001600c556000600d556013805461ffff60a81b191690553480156200003357600080fd5b50604051806040016040528060088152602001672630b7322bb7b63360c11b815250604051806040016040528060048152602001632ba7a62360e11b8152508160039081620000839190620003d2565b506004620000928282620003d2565b505050620000af620000a9620001eb60201b60201c565b620001ef565b6d14bddab3e51a57cff87a500000006103e8620000ce82600a620004b4565b620000da9190620004d4565b600e556103e8620000ed82600a620004b4565b620000f99190620004d4565b600f556127106200010c826005620004b4565b620001189190620004d4565b6010556127106200012c8261012c620004b4565b620001389190620004d4565b601155600780546001600160a01b031916739d56a1ae9598c25d41c2d397e1ca43cec60dd5b41790556001600660006200017a6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600754909116835291208054909216179055620001e4620001dd3390565b8262000241565b506200050d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200029c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002b09190620004f7565b90915550506001600160a01b03821660009081526020819052604081208054839290620002df908490620004f7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035957607f821691505b6020821081036200037a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032957600081815260208120601f850160051c81016020861015620003a95750805b601f850160051c820191505b81811015620003ca57828155600101620003b5565b505050505050565b81516001600160401b03811115620003ee57620003ee6200032e565b6200040681620003ff845462000344565b8462000380565b602080601f8311600181146200043e5760008415620004255750858301515b600019600386901b1c1916600185901b178555620003ca565b600085815260208120601f198616915b828110156200046f578886015182559484019460019091019084016200044e565b50858210156200048e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004ce57620004ce6200049e565b92915050565b600082620004f257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004ce57620004ce6200049e565b611fdb806200051d6000396000f3fe60806040526004361061016a5760003560e01c8063751039fc116100d1578063a9059cbb1161008a578063bbd2330711610064578063bbd2330714610436578063dd62ed3e14610456578063f1b12a031461049c578063f2fde38b146104bc57600080fd5b8063a9059cbb146103b5578063ae601480146103d5578063b98de7c71461042157600080fd5b8063751039fc14610319578063884d23641461032e5780638da5cb5b146103435780638f937cc41461036b57806395d89b4114610380578063a457c2d71461039557600080fd5b806323b872dd1161012357806323b872dd14610252578063313ce56714610272578063395093511461028e5780633bb5fb70146102ae57806370a08231146102ce578063715018a61461030457600080fd5b806306fdde0314610176578063095ea7b3146101a157806316fdb869146101d157806318160ddd146101f35780631f67f25e1461021257806321ce30be1461023257600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104dc565b6040516101989190611b9a565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611bfd565b61056e565b6040519015158152602001610198565b3480156101dd57600080fd5b506101f16101ec366004611c29565b610585565b005b3480156101ff57600080fd5b506002545b604051908152602001610198565b34801561021e57600080fd5b506101f161022d366004611c4b565b610693565b34801561023e57600080fd5b506101f161024d366004611c4b565b610776565b34801561025e57600080fd5b506101c161026d366004611c64565b610847565b34801561027e57600080fd5b5060405160128152602001610198565b34801561029a57600080fd5b506101c16102a9366004611bfd565b6108f1565b3480156102ba57600080fd5b506101f16102c9366004611c29565b61092d565b3480156102da57600080fd5b506102046102e9366004611ca5565b6001600160a01b031660009081526020819052604090205490565b34801561031057600080fd5b506101f16109d5565b34801561032557600080fd5b506101f1610a0b565b34801561033a57600080fd5b506101f1610ab9565b34801561034f57600080fd5b506005546040516001600160a01b039091168152602001610198565b34801561037757600080fd5b506101f1610b4f565b34801561038c57600080fd5b5061018b610bea565b3480156103a157600080fd5b506101c16103b0366004611bfd565b610bf9565b3480156103c157600080fd5b506101c16103d0366004611bfd565b610c92565b3480156103e157600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c001610198565b34801561042d57600080fd5b506101f1610c9f565b34801561044257600080fd5b506101f1610451366004611cd0565b6110b1565b34801561046257600080fd5b50610204610471366004611d09565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a857600080fd5b506101f16104b7366004611ca5565b611137565b3480156104c857600080fd5b506101f16104d7366004611ca5565b6111af565b6060600380546104eb90611d37565b80601f016020809104026020016040519081016040528092919081815260200182805461051790611d37565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057b338484611247565b5060015b92915050565b6005546001600160a01b031633146105b85760405162461bcd60e51b81526004016105af90611d6b565b60405180910390fd5b60638211156106015760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b60448201526064016105af565b606381111561064b5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b60448201526064016105af565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6005546001600160a01b031633146106bd5760405162461bcd60e51b81526004016105af90611d6b565b60018110156107195760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b60648201526084016105af565b6103e88161072660025490565b6107309190611db6565b61073a9190611dcd565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b031633146107a05760405162461bcd60e51b81526004016105af90611d6b565b60018110156107f15760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e3125000060448201526064016105af565b6103e8816107fe60025490565b6108089190611db6565b6108129190611dcd565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200161076b565b600061085484848461136b565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105af565b6108e68533858403611247565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057b918590610928908690611def565b611247565b6005546001600160a01b031633146109575760405162461bcd60e51b81526004016105af90611d6b565b6127108261096460025490565b61096e9190611db6565b6109789190611dcd565b6010556127108161098860025490565b6109929190611db6565b61099c9190611dcd565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb19101610687565b6005546001600160a01b031633146109ff5760405162461bcd60e51b81526004016105af90611d6b565b610a0960006117ce565b565b6005546001600160a01b03163314610a355760405162461bcd60e51b81526004016105af90611d6b565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610a6b60025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610aa660025490565b60405190815260200160405180910390a1565b6007546001600160a01b03163314610b135760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b4c573d6000803e3d6000fd5b50565b6007546001600160a01b0316331480610b7257506005546001600160a01b031633145b610bbe5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b30600090815260208190526040902054610bd781611820565b478015610be657610be66119b9565b5050565b6060600480546104eb90611d37565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c7b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105af565b610c883385858403611247565b5060019392505050565b600061057b33848461136b565b6005546001600160a01b03163314610cc95760405162461bcd60e51b81526004016105af90611d6b565b601354600160a01b900460ff1615610d235760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105af565b601280546001600160a01b031916734752ba5dbc23f44d87826276bf6fd6b1c372ad24908117909155610d5b90309061092860025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd29190611e02565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e589190611e02565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec99190611e02565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610f11816001600160a01b031660009081526020819052604090205490565b600080610f266005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f8e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fb39190611e1f565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561100c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110309190611e4d565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff19166001179055517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b031633146110db5760405162461bcd60e51b81526004016105af90611d6b565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa99101610687565b6005546001600160a01b031633146111615760405162461bcd60e51b81526004016105af90611d6b565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee9060200161076b565b6005546001600160a01b031633146111d95760405162461bcd60e51b81526004016105af90611d6b565b6001600160a01b03811661123e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105af565b610b4c816117ce565b6001600160a01b0383166112a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105af565b6001600160a01b03821661130a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113915760405162461bcd60e51b81526004016105af90611e6a565b6001600160a01b0382166113b75760405162461bcd60e51b81526004016105af90611eaf565b600081116114195760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105af565b600061142d6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561145c57506005546001600160a01b03848116911614155b80156114725750601354600160a81b900460ff16155b156117a3576114976064611491600a5485611a0690919063ffffffff16565b90611a19565b6013549091506001600160a01b0385811691161480156114c557506012546001600160a01b03848116911614155b80156114ea57506001600160a01b03831660009081526006602052604090205460ff16155b156115f457600e548211156115415760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e000000000060448201526064016105af565b600f5482611564856001600160a01b031660009081526020819052604090205490565b61156e9190611def565b11156115bc5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b4360085460036115cc9190611def565b11156115de57823b156115de57600080fd5b600d80549060006115ee83611ef2565b91905055505b6013546001600160a01b0384811691161480159061162b57506001600160a01b03831660009081526006602052604090205460ff16155b156116ab57600f5482611653856001600160a01b031660009081526020819052604090205490565b61165d9190611def565b11156116ab5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b6013546001600160a01b0384811691161480156116d157506001600160a01b0384163014155b156116f3576116f06064611491600b5485611a0690919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561172a57506013546001600160a01b038581169116145b801561173f5750601354600160b01b900460ff165b801561174c575060105481115b801561175b5750600c54600d54115b801561177757506009544367ffffffffffffffff908116911614155b156117a15761179061178b82601154611a25565b611820565b47801561179f5761179f6119b9565b505b505b80156117b4576117b4843083611a3a565b6117c884846117c38585611b8e565b611a3a565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff19909116179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061188757611887611f0b565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119049190611e02565b8160018151811061191757611917611f0b565b6001600160a01b03928316602091820292909201015260125461193d9130911684611247565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611976908590600090869030904290600401611f21565b600060405180830381600087803b15801561199057600080fd5b505af11580156119a4573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146117c8576040519150601f19603f3d011682016040523d82523d6000602084013e6117c8565b6000611a128284611db6565b9392505050565b6000611a128284611dcd565b6000818311611a345782611a12565b50919050565b6001600160a01b038316611a605760405162461bcd60e51b81526004016105af90611e6a565b6001600160a01b038216611a865760405162461bcd60e51b81526004016105af90611eaf565b6001600160a01b03831660009081526020819052604090205481811015611afe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105af565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b35908490611def565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8191815260200190565b60405180910390a36117c8565b6000611a128284611f92565b600060208083528351808285015260005b81811015611bc757858101830151858201604001528201611bab565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b4c57600080fd5b60008060408385031215611c1057600080fd5b8235611c1b81611be8565b946020939093013593505050565b60008060408385031215611c3c57600080fd5b50508035926020909101359150565b600060208284031215611c5d57600080fd5b5035919050565b600080600060608486031215611c7957600080fd5b8335611c8481611be8565b92506020840135611c9481611be8565b929592945050506040919091013590565b600060208284031215611cb757600080fd5b8135611a1281611be8565b8015158114610b4c57600080fd5b60008060408385031215611ce357600080fd5b8235611cee81611be8565b91506020830135611cfe81611cc2565b809150509250929050565b60008060408385031215611d1c57600080fd5b8235611d2781611be8565b91506020830135611cfe81611be8565b600181811c90821680611d4b57607f821691505b602082108103611a3457634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057f5761057f611da0565b600082611dea57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561057f5761057f611da0565b600060208284031215611e1457600080fd5b8151611a1281611be8565b600080600060608486031215611e3457600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611e5f57600080fd5b8151611a1281611cc2565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060018201611f0457611f04611da0565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f715784516001600160a01b031683529383019391830191600101611f4c565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561057f5761057f611da056fea26469706673582212208720dc1e0865668b5c1883f69b3e5e4034957eaed32642ad61abfbe0c78282de64736f6c63430008130033
Deployed Bytecode
0x60806040526004361061016a5760003560e01c8063751039fc116100d1578063a9059cbb1161008a578063bbd2330711610064578063bbd2330714610436578063dd62ed3e14610456578063f1b12a031461049c578063f2fde38b146104bc57600080fd5b8063a9059cbb146103b5578063ae601480146103d5578063b98de7c71461042157600080fd5b8063751039fc14610319578063884d23641461032e5780638da5cb5b146103435780638f937cc41461036b57806395d89b4114610380578063a457c2d71461039557600080fd5b806323b872dd1161012357806323b872dd14610252578063313ce56714610272578063395093511461028e5780633bb5fb70146102ae57806370a08231146102ce578063715018a61461030457600080fd5b806306fdde0314610176578063095ea7b3146101a157806316fdb869146101d157806318160ddd146101f35780631f67f25e1461021257806321ce30be1461023257600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104dc565b6040516101989190611b9a565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611bfd565b61056e565b6040519015158152602001610198565b3480156101dd57600080fd5b506101f16101ec366004611c29565b610585565b005b3480156101ff57600080fd5b506002545b604051908152602001610198565b34801561021e57600080fd5b506101f161022d366004611c4b565b610693565b34801561023e57600080fd5b506101f161024d366004611c4b565b610776565b34801561025e57600080fd5b506101c161026d366004611c64565b610847565b34801561027e57600080fd5b5060405160128152602001610198565b34801561029a57600080fd5b506101c16102a9366004611bfd565b6108f1565b3480156102ba57600080fd5b506101f16102c9366004611c29565b61092d565b3480156102da57600080fd5b506102046102e9366004611ca5565b6001600160a01b031660009081526020819052604090205490565b34801561031057600080fd5b506101f16109d5565b34801561032557600080fd5b506101f1610a0b565b34801561033a57600080fd5b506101f1610ab9565b34801561034f57600080fd5b506005546040516001600160a01b039091168152602001610198565b34801561037757600080fd5b506101f1610b4f565b34801561038c57600080fd5b5061018b610bea565b3480156103a157600080fd5b506101c16103b0366004611bfd565b610bf9565b3480156103c157600080fd5b506101c16103d0366004611bfd565b610c92565b3480156103e157600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c001610198565b34801561042d57600080fd5b506101f1610c9f565b34801561044257600080fd5b506101f1610451366004611cd0565b6110b1565b34801561046257600080fd5b50610204610471366004611d09565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a857600080fd5b506101f16104b7366004611ca5565b611137565b3480156104c857600080fd5b506101f16104d7366004611ca5565b6111af565b6060600380546104eb90611d37565b80601f016020809104026020016040519081016040528092919081815260200182805461051790611d37565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057b338484611247565b5060015b92915050565b6005546001600160a01b031633146105b85760405162461bcd60e51b81526004016105af90611d6b565b60405180910390fd5b60638211156106015760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b60448201526064016105af565b606381111561064b5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b60448201526064016105af565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6005546001600160a01b031633146106bd5760405162461bcd60e51b81526004016105af90611d6b565b60018110156107195760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b60648201526084016105af565b6103e88161072660025490565b6107309190611db6565b61073a9190611dcd565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b031633146107a05760405162461bcd60e51b81526004016105af90611d6b565b60018110156107f15760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e3125000060448201526064016105af565b6103e8816107fe60025490565b6108089190611db6565b6108129190611dcd565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200161076b565b600061085484848461136b565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105af565b6108e68533858403611247565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057b918590610928908690611def565b611247565b6005546001600160a01b031633146109575760405162461bcd60e51b81526004016105af90611d6b565b6127108261096460025490565b61096e9190611db6565b6109789190611dcd565b6010556127108161098860025490565b6109929190611db6565b61099c9190611dcd565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb19101610687565b6005546001600160a01b031633146109ff5760405162461bcd60e51b81526004016105af90611d6b565b610a0960006117ce565b565b6005546001600160a01b03163314610a355760405162461bcd60e51b81526004016105af90611d6b565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610a6b60025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610aa660025490565b60405190815260200160405180910390a1565b6007546001600160a01b03163314610b135760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b4c573d6000803e3d6000fd5b50565b6007546001600160a01b0316331480610b7257506005546001600160a01b031633145b610bbe5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b30600090815260208190526040902054610bd781611820565b478015610be657610be66119b9565b5050565b6060600480546104eb90611d37565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c7b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105af565b610c883385858403611247565b5060019392505050565b600061057b33848461136b565b6005546001600160a01b03163314610cc95760405162461bcd60e51b81526004016105af90611d6b565b601354600160a01b900460ff1615610d235760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105af565b601280546001600160a01b031916734752ba5dbc23f44d87826276bf6fd6b1c372ad24908117909155610d5b90309061092860025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd29190611e02565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e589190611e02565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec99190611e02565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610f11816001600160a01b031660009081526020819052604090205490565b600080610f266005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f8e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fb39190611e1f565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561100c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110309190611e4d565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff19166001179055517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b031633146110db5760405162461bcd60e51b81526004016105af90611d6b565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa99101610687565b6005546001600160a01b031633146111615760405162461bcd60e51b81526004016105af90611d6b565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee9060200161076b565b6005546001600160a01b031633146111d95760405162461bcd60e51b81526004016105af90611d6b565b6001600160a01b03811661123e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105af565b610b4c816117ce565b6001600160a01b0383166112a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105af565b6001600160a01b03821661130a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113915760405162461bcd60e51b81526004016105af90611e6a565b6001600160a01b0382166113b75760405162461bcd60e51b81526004016105af90611eaf565b600081116114195760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105af565b600061142d6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561145c57506005546001600160a01b03848116911614155b80156114725750601354600160a81b900460ff16155b156117a3576114976064611491600a5485611a0690919063ffffffff16565b90611a19565b6013549091506001600160a01b0385811691161480156114c557506012546001600160a01b03848116911614155b80156114ea57506001600160a01b03831660009081526006602052604090205460ff16155b156115f457600e548211156115415760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e000000000060448201526064016105af565b600f5482611564856001600160a01b031660009081526020819052604090205490565b61156e9190611def565b11156115bc5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b4360085460036115cc9190611def565b11156115de57823b156115de57600080fd5b600d80549060006115ee83611ef2565b91905055505b6013546001600160a01b0384811691161480159061162b57506001600160a01b03831660009081526006602052604090205460ff16155b156116ab57600f5482611653856001600160a01b031660009081526020819052604090205490565b61165d9190611def565b11156116ab5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b6013546001600160a01b0384811691161480156116d157506001600160a01b0384163014155b156116f3576116f06064611491600b5485611a0690919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561172a57506013546001600160a01b038581169116145b801561173f5750601354600160b01b900460ff165b801561174c575060105481115b801561175b5750600c54600d54115b801561177757506009544367ffffffffffffffff908116911614155b156117a15761179061178b82601154611a25565b611820565b47801561179f5761179f6119b9565b505b505b80156117b4576117b4843083611a3a565b6117c884846117c38585611b8e565b611a3a565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff19909116179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061188757611887611f0b565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119049190611e02565b8160018151811061191757611917611f0b565b6001600160a01b03928316602091820292909201015260125461193d9130911684611247565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611976908590600090869030904290600401611f21565b600060405180830381600087803b15801561199057600080fd5b505af11580156119a4573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146117c8576040519150601f19603f3d011682016040523d82523d6000602084013e6117c8565b6000611a128284611db6565b9392505050565b6000611a128284611dcd565b6000818311611a345782611a12565b50919050565b6001600160a01b038316611a605760405162461bcd60e51b81526004016105af90611e6a565b6001600160a01b038216611a865760405162461bcd60e51b81526004016105af90611eaf565b6001600160a01b03831660009081526020819052604090205481811015611afe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105af565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b35908490611def565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8191815260200190565b60405180910390a36117c8565b6000611a128284611f92565b600060208083528351808285015260005b81811015611bc757858101830151858201604001528201611bab565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b4c57600080fd5b60008060408385031215611c1057600080fd5b8235611c1b81611be8565b946020939093013593505050565b60008060408385031215611c3c57600080fd5b50508035926020909101359150565b600060208284031215611c5d57600080fd5b5035919050565b600080600060608486031215611c7957600080fd5b8335611c8481611be8565b92506020840135611c9481611be8565b929592945050506040919091013590565b600060208284031215611cb757600080fd5b8135611a1281611be8565b8015158114610b4c57600080fd5b60008060408385031215611ce357600080fd5b8235611cee81611be8565b91506020830135611cfe81611cc2565b809150509250929050565b60008060408385031215611d1c57600080fd5b8235611d2781611be8565b91506020830135611cfe81611be8565b600181811c90821680611d4b57607f821691505b602082108103611a3457634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057f5761057f611da0565b600082611dea57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561057f5761057f611da0565b600060208284031215611e1457600080fd5b8151611a1281611be8565b600080600060608486031215611e3457600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611e5f57600080fd5b8151611a1281611cc2565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060018201611f0457611f04611da0565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f715784516001600160a01b031683529383019391830191600101611f4c565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561057f5761057f611da056fea26469706673582212208720dc1e0865668b5c1883f69b3e5e4034957eaed32642ad61abfbe0c78282de64736f6c63430008130033
Deployed Bytecode Sourcemap
25435:9084:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11033:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13266:194;;;;;;;;;;-1:-1:-1;13266:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13266:194:0;1023:187:1;29591:296:0;;;;;;;;;;-1:-1:-1;29591:296:0;;;;;:::i;:::-;;:::i;:::-;;12153:108;;;;;;;;;;-1:-1:-1;12241:12:0;;12153:108;;;1614:25:1;;;1602:2;1587:18;12153:108:0;1468:177:1;28743:267:0;;;;;;;;;;-1:-1:-1;28743:267:0;;;;;:::i;:::-;;:::i;28485:250::-;;;;;;;;;;-1:-1:-1;28485:250:0;;;;;:::i;:::-;;:::i;13938:529::-;;;;;;;;;;-1:-1:-1;13938:529:0;;;;;:::i;:::-;;:::i;11995:93::-;;;;;;;;;;-1:-1:-1;11995:93:0;;12078:2;2438:36:1;;2426:2;2411:18;11995:93:0;2296:184:1;14872:290:0;;;;;;;;;;-1:-1:-1;14872:290:0;;;;;:::i;:::-;;:::i;29018:318::-;;;;;;;;;;-1:-1:-1;29018:318:0;;;;;:::i;:::-;;:::i;12324:143::-;;;;;;;;;;-1:-1:-1;12324:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12441:18:0;12414:7;12441:18;;;;;;;;;;;;12324:143;22372:103;;;;;;;;;;;;;:::i;29344:239::-;;;;;;;;;;;;;:::i;29895:171::-;;;;;;;;;;;;;:::i;21721:87::-;;;;;;;;;;-1:-1:-1;21794:6:0;;21721:87;;-1:-1:-1;;;;;21794:6:0;;;2883:51:1;;2871:2;2856:18;21721:87:0;2737:203:1;33362:436:0;;;;;;;;;;;;;:::i;11252:104::-;;;;;;;;;;;;;:::i;15661:475::-;;;;;;;;;;-1:-1:-1;15661:475:0;;;;;:::i;:::-;;:::i;12680:200::-;;;;;;;;;;-1:-1:-1;12680:200:0;;;;;:::i;:::-;;:::i;30252:485::-;;;;;;;;;;-1:-1:-1;30574:6:0;;30595:7;;30617:14;;30646:18;;30679:12;;30706;;30252:485;;;3232:25:1;;;3288:2;3273:18;;3266:34;;;;3316:18;;;3309:34;;;;3374:2;3359:18;;3352:34;3417:3;3402:19;;3395:35;3461:3;3446:19;;3439:35;3219:3;3204:19;30252:485:0;2945:535:1;27308:982:0;;;;;;;;;;;;;:::i;30074:170::-;;;;;;;;;;-1:-1:-1;30074:170:0;;;;;:::i;:::-;;:::i;12943:176::-;;;;;;;;;;-1:-1:-1;12943:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13084:18:0;;;13057:7;13084:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12943:176;28298:179;;;;;;;;;;-1:-1:-1;28298:179:0;;;;;:::i;:::-;;:::i;22630:238::-;;;;;;;;;;-1:-1:-1;22630:238:0;;;;;:::i;:::-;;:::i;11033:100::-;11087:13;11120:5;11113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11033:100;:::o;13266:194::-;13374:4;13391:39;10119:10;13414:7;13423:6;13391:8;:39::i;:::-;-1:-1:-1;13448:4:0;13266:194;;;;;:::o;29591:296::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;;;;;;;;;29694:2:::1;29684:6;:12;;29676:46;;;::::0;-1:-1:-1;;;29676:46:0;;5596:2:1;29676:46:0::1;::::0;::::1;5578:21:1::0;5635:2;5615:18;;;5608:30;-1:-1:-1;;;5654:18:1;;;5647:51;5715:18;;29676:46:0::1;5394:345:1::0;29676:46:0::1;29752:2;29741:7;:13;;29733:48;;;::::0;-1:-1:-1;;;29733:48:0;;5946:2:1;29733:48:0::1;::::0;::::1;5928:21:1::0;5985:2;5965:18;;;5958:30;-1:-1:-1;;;6004:18:1;;;5997:52;6066:18;;29733:48:0::1;5744:346:1::0;29733:48:0::1;29792:6;:15:::0;;;29818:7:::1;:17:::0;;;29851:28:::1;::::0;;6269:25:1;;;6325:2;6310:18;;6303:34;;;29851:28:0::1;::::0;6242:18:1;29851:28:0::1;;;;;;;;29591:296:::0;;:::o;28743:267::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;28839:1:::1;28827:8;:13;;28819:60;;;::::0;-1:-1:-1;;;28819:60:0;;6550:2:1;28819:60:0::1;::::0;::::1;6532:21:1::0;6589:2;6569:18;;;6562:30;6628:34;6608:18;;;6601:62;-1:-1:-1;;;6679:18:1;;;6672:32;6721:19;;28819:60:0::1;6348:398:1::0;28819:60:0::1;28940:4;28928:8;28912:13;12241:12:::0;;;12153:108;28912:13:::1;:24;;;;:::i;:::-;28911:33;;;;:::i;:::-;28890:18;:54:::0;;;28960:42:::1;::::0;1614:25:1;;;28960:42:0::1;::::0;1602:2:1;1587:18;28960:42:0::1;;;;;;;;28743:267:::0;:::o;28485:250::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;28580:1:::1;28568:8;:13;;28560:56;;;::::0;-1:-1:-1;;;28560:56:0;;7480:2:1;28560:56:0::1;::::0;::::1;7462:21:1::0;7519:2;7499:18;;;7492:30;7558:32;7538:18;;;7531:60;7608:18;;28560:56:0::1;7278:354:1::0;28560:56:0::1;28673:4;28661:8;28645:13;12241:12:::0;;;12153:108;28645:13:::1;:24;;;;:::i;:::-;28644:33;;;;:::i;:::-;28627:14;:50:::0;;;28693:34:::1;::::0;1614:25:1;;;28693:34:0::1;::::0;1602:2:1;1587:18;28693:34:0::1;1468:177:1::0;13938:529:0;14078:4;14095:36;14105:6;14113:9;14124:6;14095:9;:36::i;:::-;-1:-1:-1;;;;;14171:19:0;;14144:24;14171:19;;;:11;:19;;;;;;;;10119:10;14171:33;;;;;;;;14237:26;;;;14215:116;;;;-1:-1:-1;;;14215:116:0;;7839:2:1;14215:116:0;;;7821:21:1;7878:2;7858:18;;;7851:30;7917:34;7897:18;;;7890:62;-1:-1:-1;;;7968:18:1;;;7961:38;8016:19;;14215:116:0;7637:404:1;14215:116:0;14367:57;14376:6;10119:10;14417:6;14398:16;:25;14367:8;:57::i;:::-;-1:-1:-1;14455:4:0;;13938:529;-1:-1:-1;;;;13938:529:0:o;14872:290::-;10119:10;14985:4;15074:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15074:34:0;;;;;;;;;;14985:4;;15002:130;;15052:7;;15074:47;;15111:10;;15074:47;:::i;:::-;15002:8;:130::i;29018:318::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;29200:5:::1;29180:16;29164:13;12241:12:::0;;;12153:108;29164:13:::1;:32;;;;:::i;:::-;29163:42;;;;:::i;:::-;29148:12;:57:::0;29262:5:::1;29248:10:::0;29232:13:::1;12241:12:::0;;;12153:108;29232:13:::1;:26;;;;:::i;:::-;29231:36;;;;:::i;:::-;29216:12;:51:::0;29283:45:::1;::::0;;6269:25:1;;;6325:2;6310:18;;6303:34;;;29283:45:0::1;::::0;6242:18:1;29283:45:0::1;6095:248:1::0;22372:103:0;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;22437:30:::1;22464:1;22437:18;:30::i;:::-;22372:103::o:0;29344:239::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;12241:12;;29398:14:::1;:30:::0;12241:12;;29439:18:::1;:34:::0;29489:33:::1;29508:13;12241:12:::0;;;12153:108;29508:13:::1;29489:33;::::0;1614:25:1;;;1602:2;1587:18;29489:33:0::1;;;;;;;29538:37;29561:13;12241:12:::0;;;12153:108;29561:13:::1;29538:37;::::0;1614:25:1;;;1602:2;1587:18;29538:37:0::1;;;;;;;29344:239::o:0;29895:171::-;29961:10;;-1:-1:-1;;;;;29961:10:0;29947;:24;29939:66;;;;-1:-1:-1;;;29939:66:0;;8378:2:1;29939:66:0;;;8360:21:1;8417:2;8397:18;;;8390:30;8456:31;8436:18;;;8429:59;8505:18;;29939:66:0;8176:353:1;29939:66:0;30016:10;;:42;;-1:-1:-1;;;;;30016:10:0;;;;30036:21;30016:42;;;;;:10;:42;:10;:42;30036:21;30016:10;:42;;;;;;;;;;;;;;;;;;;;;29895:171::o;33362:436::-;33441:10;;-1:-1:-1;;;;;33441:10:0;33427;:24;;:49;;-1:-1:-1;21794:6:0;;-1:-1:-1;;;;;21794:6:0;33455:10;:21;33427:49;33405:128;;;;-1:-1:-1;;;33405:128:0;;8378:2:1;33405:128:0;;;8360:21:1;8417:2;8397:18;;;8390:30;8456:31;8436:18;;;8429:59;8505:18;;33405:128:0;8176:353:1;33405:128:0;33593:4;33544:28;12441:18;;;;;;;;;;;33612:38;12441:18;33612:16;:38::i;:::-;33690:21;33726:22;;33722:69;;33765:14;:12;:14::i;:::-;33394:404;;33362:436::o;11252:104::-;11308:13;11341:7;11334:14;;;;;:::i;15661:475::-;10119:10;15779:4;15823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15823:34:0;;;;;;;;;;15890:35;;;;15868:122;;;;-1:-1:-1;;;15868:122:0;;8736:2:1;15868:122:0;;;8718:21:1;8775:2;8755:18;;;8748:30;8814:34;8794:18;;;8787:62;-1:-1:-1;;;8865:18:1;;;8858:35;8910:19;;15868:122:0;8534:401:1;15868:122:0;16026:67;10119:10;16049:7;16077:15;16058:16;:34;16026:8;:67::i;:::-;-1:-1:-1;16124:4:0;;15661:475;-1:-1:-1;;;15661:475:0:o;12680:200::-;12791:4;12808:42;10119:10;12832:9;12843:6;12808:9;:42::i;27308:982::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;27366:11:::1;::::0;-1:-1:-1;;;27366:11:0;::::1;;;27365:12;27357:48;;;::::0;-1:-1:-1;;;27357:48:0;;9142:2:1;27357:48:0::1;::::0;::::1;9124:21:1::0;9181:2;9161:18;;;9154:30;9220:25;9200:18;;;9193:53;9263:18;;27357:48:0::1;8940:347:1::0;27357:48:0::1;27416:15;:96:::0;;-1:-1:-1;;;;;;27416:96:0::1;27459:42;27416:96:::0;;::::1;::::0;;;27523:64:::1;::::0;27540:4:::1;::::0;27573:13:::1;12241:12:::0;;;12153:108;27523:64:::1;27626:15;;;;;;;;;-1:-1:-1::0;;;;;27626:15:0::1;-1:-1:-1::0;;;;;27626:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27614:49:0::1;;27686:4;27706:15;;;;;;;;;-1:-1:-1::0;;;;;27706:15:0::1;-1:-1:-1::0;;;;;27706:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27614:125;::::0;-1:-1:-1;;;;;;27614:125:0::1;::::0;;;;;;-1:-1:-1;;;;;9778:15:1;;;27614:125:0::1;::::0;::::1;9760:34:1::0;9830:15;;9810:18;;;9803:43;9695:18;;27614:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27598:13;:141:::0;;-1:-1:-1;;;;;27598:141:0;;::::1;-1:-1:-1::0;;;;;;27598:141:0;;::::1;;::::0;;27750:15:::1;::::0;::::1;:31;27789:21;27834:4;27854:24;27834:4:::0;-1:-1:-1;;;;;12441:18:0;12414:7;12441:18;;;;;;;;;;;;12324:143;27854:24:::1;27893:1;27909::::0;27925:7:::1;21794:6:::0;;-1:-1:-1;;;;;21794:6:0;;21721:87;27925:7:::1;27750:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;27750:223:0;;;-1:-1:-1;;;;;10216:15:1;;;27750:223:0::1;::::0;::::1;10198:34:1::0;10248:18;;;10241:34;;;;10291:18;;;10284:34;;;;10334:18;;;10327:34;10398:15;;;10377:19;;;10370:44;27947:15:0::1;10430:19:1::0;;;10423:35;10132:19;;27750:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;27991:13:0::1;::::0;28022:15:::1;::::0;27984:71:::1;::::0;-1:-1:-1;;;27984:71:0;;-1:-1:-1;;;;;28022:15:0;;::::1;27984:71;::::0;::::1;10954:51:1::0;-1:-1:-1;;11021:18:1;;;11014:34;27991:13:0;::::1;::::0;-1:-1:-1;27984:29:0::1;::::0;10927:18:1;;27984:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28066:11:0::1;:18:::0;;-1:-1:-1;;;;28095:18:0;-1:-1:-1;;;28095:18:0;;;28137:12:::1;28124:10;:25:::0;;;28160:15:::1;:38:::0;;-1:-1:-1;;28160:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;28236:4:::1;-1:-1:-1::0;28209:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;28209:40:0::1;-1:-1:-1::0;28209:40:0::1;::::0;;28267:15;::::1;::::0;-1:-1:-1;28267:15:0::1;27308:982::o:0;30074:170::-;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30152:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:36;;-1:-1:-1;;30152:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30204:32;;11477:51:1;;;11544:18;;;11537:50;30204:32:0::1;::::0;11450:18:1;30204:32:0::1;11309:284:1::0;28298:179:0;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;28388:10:::1;:28:::0;;-1:-1:-1;;;;;;28388:28:0::1;-1:-1:-1::0;;;;;28388:28:0;::::1;::::0;;::::1;::::0;;;28434:35:::1;::::0;2883:51:1;;;28434:35:0::1;::::0;2871:2:1;2856:18;28434:35:0::1;2737:203:1::0;22630:238:0;21794:6;;-1:-1:-1;;;;;21794:6:0;10119:10;21941:23;21933:68;;;;-1:-1:-1;;;21933:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22733:22:0;::::1;22711:110;;;::::0;-1:-1:-1;;;22711:110:0;;12016:2:1;22711:110:0::1;::::0;::::1;11998:21:1::0;12055:2;12035:18;;;12028:30;12094:34;12074:18;;;12067:62;-1:-1:-1;;;12145:18:1;;;12138:36;12191:19;;22711:110:0::1;11814:402:1::0;22711:110:0::1;22832:28;22851:8;22832:18;:28::i;19444:380::-:0;-1:-1:-1;;;;;19580:19:0;;19572:68;;;;-1:-1:-1;;;19572:68:0;;12423:2:1;19572:68:0;;;12405:21:1;12462:2;12442:18;;;12435:30;12501:34;12481:18;;;12474:62;-1:-1:-1;;;12552:18:1;;;12545:34;12596:19;;19572:68:0;12221:400:1;19572:68:0;-1:-1:-1;;;;;19659:21:0;;19651:68;;;;-1:-1:-1;;;19651:68:0;;12828:2:1;19651:68:0;;;12810:21:1;12867:2;12847:18;;;12840:30;12906:34;12886:18;;;12879:62;-1:-1:-1;;;12957:18:1;;;12950:32;12999:19;;19651:68:0;12626:398:1;19651:68:0;-1:-1:-1;;;;;19732:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19784:32;;1614:25:1;;;19784:32:0;;1587:18:1;19784:32:0;;;;;;;19444:380;;;:::o;30745:2291::-;-1:-1:-1;;;;;30877:18:0;;30869:68;;;;-1:-1:-1;;;30869:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30956:16:0;;30948:64;;;;-1:-1:-1;;;30948:64:0;;;;;;;:::i;:::-;31040:1;31031:6;:10;31023:64;;;;-1:-1:-1;;;31023:64:0;;14041:2:1;31023:64:0;;;14023:21:1;14080:2;14060:18;;;14053:30;14119:34;14099:18;;;14092:62;-1:-1:-1;;;14170:18:1;;;14163:39;14219:19;;31023:64:0;13839:405:1;31023:64:0;31098:17;31142:7;21794:6;;-1:-1:-1;;;;;21794:6:0;;21721:87;31142:7;-1:-1:-1;;;;;31134:15:0;:4;-1:-1:-1;;;;;31134:15:0;;;:32;;;;-1:-1:-1;21794:6:0;;-1:-1:-1;;;;;31153:13:0;;;21794:6;;31153:13;;31134:32;:43;;;;-1:-1:-1;31171:6:0;;-1:-1:-1;;;31171:6:0;;;;31170:7;31134:43;31130:1735;;;31220:27;31243:3;31220:18;31231:6;;31220;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;31294:13;;31208:39;;-1:-1:-1;;;;;;31286:21:0;;;31294:13;;31286:21;:72;;;;-1:-1:-1;31342:15:0;;-1:-1:-1;;;;;31328:30:0;;;31342:15;;31328:30;;31286:72;:116;;;;-1:-1:-1;;;;;;31380:22:0;;;;;;:18;:22;;;;;;;;31379:23;31286:116;31264:568;;;31455:14;;31445:6;:24;;31437:64;;;;-1:-1:-1;;;31437:64:0;;14451:2:1;31437:64:0;;;14433:21:1;14490:2;14470:18;;;14463:30;14529:29;14509:18;;;14502:57;14576:18;;31437:64:0;14249:351:1;31437:64:0;31576:18;;31566:6;31550:13;31560:2;-1:-1:-1;;;;;12441:18:0;12414:7;12441:18;;;;;;;;;;;;12324:143;31550:13;:22;;;;:::i;:::-;:44;;31520:144;;;;-1:-1:-1;;;31520:144:0;;14807:2:1;31520:144:0;;;14789:21:1;14846:2;14826:18;;;14819:30;14885:28;14865:18;;;14858:56;14931:18;;31520:144:0;14605:350:1;31520:144:0;31706:12;31689:10;;31702:1;31689:14;;;;:::i;:::-;:29;31685:102;;;33290:20;;33338:8;31743:24;;;;;;31805:9;:11;;;:9;:11;;;:::i;:::-;;;;;;31264:568;31858:13;;-1:-1:-1;;;;;31852:19:0;;;31858:13;;31852:19;;;;:46;;-1:-1:-1;;;;;;31876:22:0;;;;;;:18;:22;;;;;;;;31875:23;31852:46;31848:231;;;31975:18;;31965:6;31949:13;31959:2;-1:-1:-1;;;;;12441:18:0;12414:7;12441:18;;;;;;;;;;;;12324:143;31949:13;:22;;;;:::i;:::-;:44;;31919:144;;;;-1:-1:-1;;;31919:144:0;;14807:2:1;31919:144:0;;;14789:21:1;14846:2;14826:18;;;14819:30;14885:28;14865:18;;;14858:56;14931:18;;31919:144:0;14605:350:1;31919:144:0;32105:13;;-1:-1:-1;;;;;32099:19:0;;;32105:13;;32099:19;:44;;;;-1:-1:-1;;;;;;32122:21:0;;32138:4;32122:21;;32099:44;32095:125;;;32176:28;32200:3;32176:19;32187:7;;32176:6;:10;;:19;;;;:::i;:28::-;32164:40;;32095:125;32285:4;32236:28;12441:18;;;;;;;;;;;32329:6;;-1:-1:-1;;;32329:6:0;;;;32328:7;:47;;;;-1:-1:-1;32362:13:0;;-1:-1:-1;;;;;32356:19:0;;;32362:13;;32356:19;32328:47;:79;;;;-1:-1:-1;32396:11:0;;-1:-1:-1;;;32396:11:0;;;;32328:79;:135;;;;;32451:12;;32428:20;:35;32328:135;:186;;;;;32496:18;;32484:9;;:30;32328:186;:246;;;;-1:-1:-1;32535:15:0;;32561:12;32535:39;;;;:15;;:39;;32328:246;32306:548;;;32609:57;32626:39;32630:20;32652:12;;32626:3;:39::i;:::-;32609:16;:57::i;:::-;32714:21;32758:22;;32754:85;;32805:14;:12;:14::i;:::-;32590:264;32306:548;31179:1686;31130:1735;32881:13;;32877:93;;32911:47;32927:4;32941;32948:9;32911:15;:47::i;:::-;32980:48;32996:4;33002:2;33006:21;:6;33017:9;33006:10;:21::i;:::-;32980:15;:48::i;:::-;30858:2178;30745:2291;;;:::o;23028:191::-;23121:6;;;-1:-1:-1;;;;;23138:17:0;;;-1:-1:-1;;;;;;23138:17:0;;;;;;;23171:40;;23121:6;;;23138:17;23121:6;;23171:40;;23102:16;;23171:40;23091:128;23028:191;:::o;33806:532::-;26600:6;:13;;-1:-1:-1;;;;26600:13:0;-1:-1:-1;;;26600:13:0;;;33884:15:::1;:38:::0;;::::1;33909:12;33884:38;-1:-1:-1::0;;33884:38:0;;::::1;;::::0;;33957:16:::1;::::0;;33971:1:::1;33957:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33957:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33957:16:0::1;33933:40;;34002:4;33984;33989:1;33984:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;33984:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;34028:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;34028:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;33984:7;;34028:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34018:4;34023:1;34018:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34018:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;34093:15:::1;::::0;34061:62:::1;::::0;34078:4:::1;::::0;34093:15:::1;34111:11:::0;34061:8:::1;:62::i;:::-;34134:15;::::0;:196:::1;::::0;-1:-1:-1;;;34134:196:0;;-1:-1:-1;;;;;34134:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;34215:11;;34134:15:::1;::::0;34257:4;;34284::::1;::::0;34304:15:::1;::::0;34134:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26636:6:0;:14;;-1:-1:-1;;;;26636:14:0;;;-1:-1:-1;;;;33806:532:0:o;34346:170::-;34434:10;;34426:82;;34389:12;;-1:-1:-1;;;;;34434:10:0;;34458:21;;34389:12;34426:82;34389:12;34426:82;34458:21;34434:10;34426:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3398:98;3456:7;3483:5;3487:1;3483;:5;:::i;:::-;3476:12;3398:98;-1:-1:-1;;;3398:98:0:o;3797:::-;3855:7;3882:5;3886:1;3882;:5;:::i;33044:107::-;33101:7;33133:1;33129;:5;33128:15;;33142:1;33128:15;;;-1:-1:-1;33138:1:0;33044:107;-1:-1:-1;33044:107:0:o;16626:770::-;-1:-1:-1;;;;;16766:20:0;;16758:70;;;;-1:-1:-1;;;16758:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16847:23:0;;16839:71;;;;-1:-1:-1;;;16839:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17007:17:0;;16983:21;17007:17;;;;;;;;;;;17057:23;;;;17035:111;;;;-1:-1:-1;;;17035:111:0;;16761:2:1;17035:111:0;;;16743:21:1;16800:2;16780:18;;;16773:30;16839:34;16819:18;;;16812:62;-1:-1:-1;;;16890:18:1;;;16883:36;16936:19;;17035:111:0;16559:402:1;17035:111:0;-1:-1:-1;;;;;17182:17:0;;;:9;:17;;;;;;;;;;;17202:22;;;17182:42;;17246:20;;;;;;;;:30;;17218:6;;17182:9;17246:30;;17218:6;;17246:30;:::i;:::-;;;;;;;;17311:9;-1:-1:-1;;;;;17294:35:0;17303:6;-1:-1:-1;;;;;17294:35:0;;17322:6;17294:35;;;;1614:25:1;;1602:2;1587:18;;1468:177;17294:35:0;;;;;;;;17342:46;20424:125;3041:98;3099:7;3126:5;3130:1;3126;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:248::-;1283:6;1291;1344:2;1332:9;1323:7;1319:23;1315:32;1312:52;;;1360:1;1357;1350:12;1312:52;-1:-1:-1;;1383:23:1;;;1453:2;1438:18;;;1425:32;;-1:-1:-1;1215:248:1:o;1650:180::-;1709:6;1762:2;1750:9;1741:7;1737:23;1733:32;1730:52;;;1778:1;1775;1768:12;1730:52;-1:-1:-1;1801:23:1;;1650:180;-1:-1:-1;1650:180:1:o;1835:456::-;1912:6;1920;1928;1981:2;1969:9;1960:7;1956:23;1952:32;1949:52;;;1997:1;1994;1987:12;1949:52;2036:9;2023:23;2055:31;2080:5;2055:31;:::i;:::-;2105:5;-1:-1:-1;2162:2:1;2147:18;;2134:32;2175:33;2134:32;2175:33;:::i;:::-;1835:456;;2227:7;;-1:-1:-1;;;2281:2:1;2266:18;;;;2253:32;;1835:456::o;2485:247::-;2544:6;2597:2;2585:9;2576:7;2572:23;2568:32;2565:52;;;2613:1;2610;2603:12;2565:52;2652:9;2639:23;2671:31;2696:5;2671:31;:::i;3485:118::-;3571:5;3564:13;3557:21;3550:5;3547:32;3537:60;;3593:1;3590;3583:12;3608:382;3673:6;3681;3734:2;3722:9;3713:7;3709:23;3705:32;3702:52;;;3750:1;3747;3740:12;3702:52;3789:9;3776:23;3808:31;3833:5;3808:31;:::i;:::-;3858:5;-1:-1:-1;3915:2:1;3900:18;;3887:32;3928:30;3887:32;3928:30;:::i;:::-;3977:7;3967:17;;;3608:382;;;;;:::o;3995:388::-;4063:6;4071;4124:2;4112:9;4103:7;4099:23;4095:32;4092:52;;;4140:1;4137;4130:12;4092:52;4179:9;4166:23;4198:31;4223:5;4198:31;:::i;:::-;4248:5;-1:-1:-1;4305:2:1;4290:18;;4277:32;4318:33;4277:32;4318:33;:::i;4648:380::-;4727:1;4723:12;;;;4770;;;4791:61;;4845:4;4837:6;4833:17;4823:27;;4791:61;4898:2;4890:6;4887:14;4867:18;4864:38;4861:161;;4944:10;4939:3;4935:20;4932:1;4925:31;4979:4;4976:1;4969:15;5007:4;5004:1;4997:15;5033:356;5235:2;5217:21;;;5254:18;;;5247:30;5313:34;5308:2;5293:18;;5286:62;5380:2;5365:18;;5033:356::o;6751:127::-;6812:10;6807:3;6803:20;6800:1;6793:31;6843:4;6840:1;6833:15;6867:4;6864:1;6857:15;6883:168;6956:9;;;6987;;7004:15;;;6998:22;;6984:37;6974:71;;7025:18;;:::i;7056:217::-;7096:1;7122;7112:132;;7166:10;7161:3;7157:20;7154:1;7147:31;7201:4;7198:1;7191:15;7229:4;7226:1;7219:15;7112:132;-1:-1:-1;7258:9:1;;7056:217::o;8046:125::-;8111:9;;;8132:10;;;8129:36;;;8145:18;;:::i;9292:251::-;9362:6;9415:2;9403:9;9394:7;9390:23;9386:32;9383:52;;;9431:1;9428;9421:12;9383:52;9463:9;9457:16;9482:31;9507:5;9482:31;:::i;10469:306::-;10557:6;10565;10573;10626:2;10614:9;10605:7;10601:23;10597:32;10594:52;;;10642:1;10639;10632:12;10594:52;10671:9;10665:16;10655:26;;10721:2;10710:9;10706:18;10700:25;10690:35;;10765:2;10754:9;10750:18;10744:25;10734:35;;10469:306;;;;;:::o;11059:245::-;11126:6;11179:2;11167:9;11158:7;11154:23;11150:32;11147:52;;;11195:1;11192;11185:12;11147:52;11227:9;11221:16;11246:28;11268:5;11246:28;:::i;13029:401::-;13231:2;13213:21;;;13270:2;13250:18;;;13243:30;13309:34;13304:2;13289:18;;13282:62;-1:-1:-1;;;13375:2:1;13360:18;;13353:35;13420:3;13405:19;;13029:401::o;13435:399::-;13637:2;13619:21;;;13676:2;13656:18;;;13649:30;13715:34;13710:2;13695:18;;13688:62;-1:-1:-1;;;13781:2:1;13766:18;;13759:33;13824:3;13809:19;;13435:399::o;14960:135::-;14999:3;15020:17;;;15017:43;;15040:18;;:::i;:::-;-1:-1:-1;15087:1:1;15076:13;;14960:135::o;15232:127::-;15293:10;15288:3;15284:20;15281:1;15274:31;15324:4;15321:1;15314:15;15348:4;15345:1;15338:15;15364:980;15626:4;15674:3;15663:9;15659:19;15705:6;15694:9;15687:25;15731:2;15769:6;15764:2;15753:9;15749:18;15742:34;15812:3;15807:2;15796:9;15792:18;15785:31;15836:6;15871;15865:13;15902:6;15894;15887:22;15940:3;15929:9;15925:19;15918:26;;15979:2;15971:6;15967:15;15953:29;;16000:1;16010:195;16024:6;16021:1;16018:13;16010:195;;;16089:13;;-1:-1:-1;;;;;16085:39:1;16073:52;;16180:15;;;;16145:12;;;;16121:1;16039:9;16010:195;;;-1:-1:-1;;;;;;;16261:32:1;;;;16256:2;16241:18;;16234:60;-1:-1:-1;;;16325:3:1;16310:19;16303:35;16222:3;15364:980;-1:-1:-1;;;15364:980:1:o;16966:128::-;17033:9;;;17054:11;;;17051:37;;;17068:18;;:::i
Swarm Source
ipfs://8720dc1e0865668b5c1883f69b3e5e4034957eaed32642ad61abfbe0c78282de
Loading...
Loading
OVERVIEW
Inspired by the fever dream artwork of Matt Furie and the legendary Boys Club, Landwolf isn't about utility; it's about pure, unadulterated chaos. LandWolf a community of degenerate amphibians, misfits, and those who believe crypto should be a wild ride, not a spreadsheet.Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.