ERC-20
Overview
Max Total Supply
100,000,000,000 METH
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
893,808,686.069897453825793555 METHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
METH
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** WEBSITE: https://methereum.org/ TWITTER: https://twitter.com/methereum69 TELEGRAM: https://t.me/METHEREUEM */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; //import "hardhat/console.sol"; contract METH is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD); bool private swapping; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public swapTokensAtMultiplier; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; struct Taxes { uint256 corruption; uint256 liquidity; uint256 cooking; } Taxes public taxes = Taxes(1, 0, 1); Taxes public sellTaxes = Taxes(1, 0, 1); uint256 public buyTotalFees; uint256 public sellTotalFees; uint256 public tokensForCorruption; uint256 public tokensForLiquidity; uint256 public tokensForCooking; address private corruptionWallet; address private cookingWallet; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preListingPhase = true; mapping(address => bool) public preListingTransferrable; event UpdateUniswapV2Router(address indexed newAddress,address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event CorruptionWalletUpdated(address indexed newWallet, address indexed oldWallet); event CookingWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); constructor() ERC20("METHEREUM", "METH") { corruptionWallet = address(0x90f91bA79aAfEfdcFc0b5fFFb7F0b61526667b19); cookingWallet = address(0x60FaeAef5c85CD38892c7107a60CBDD604F8C55d); address routerAddress_ = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(routerAddress_); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(routerAddress_), true); uint256 totalSupply = 100 * 1e9 * 1e18; // 100 billions maxTransactionAmount = totalSupply * 10 / 1000; // 1% maxtxn maxWallet = totalSupply * 10 / 1000; // 1% maxw swapTokensAtMultiplier = 20; //this set max swap amount to 20 times the swapTokensAtAmount swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swapw buyTotalFees = taxes.corruption + taxes.liquidity + taxes.cooking; sellTotalFees = sellTaxes.corruption + sellTaxes.liquidity + sellTaxes.cooking; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(corruptionWallet, true); excludeFromFees(cookingWallet, true); excludeFromMaxTransaction(corruptionWallet, true); excludeFromMaxTransaction(cookingWallet, true); preListingTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preListingPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function UpdateBuyTaxes( uint256 _corruption, uint256 _liquidity, uint256 _cooking ) external onlyOwner { taxes = Taxes(_corruption, _liquidity, _cooking); buyTotalFees = taxes.corruption + taxes.liquidity + taxes.cooking; } function SetSellTaxes( uint256 _corruption, uint256 _liquidity, uint256 _cooking ) external onlyOwner { sellTaxes = Taxes(_corruption, _liquidity, _cooking); sellTotalFees = sellTaxes.corruption + sellTaxes.liquidity + sellTaxes.cooking; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateCorruptionWallet(address newWallet) external onlyOwner { emit CorruptionWalletUpdated(newWallet, corruptionWallet); corruptionWallet = newWallet; } function updateCookingWallet(address newWallet) external onlyOwner { emit CookingWalletUpdated(newWallet, cookingWallet); cookingWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { //console.log("Transferring from %s to %s %s tokens", msg.sender, to, amount); require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (preListingPhase) { require(preListingTransferrable[from], "Not authorized to transfer pre-listing."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; /*console.log("from: %s and to: %s", from, to); console.log("!automatedMarketMakerPairs[from] %s", !automatedMarketMakerPairs[from]); console.log("!automatedMarketMakerPairs[to] %s", !automatedMarketMakerPairs[to]);*/ if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && //true only during token sell or user wallet to user wallet transfer !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellTaxes.liquidity) / sellTotalFees; tokensForCooking += (fees * sellTaxes.cooking) / sellTotalFees; tokensForCorruption += (fees * sellTaxes.corruption) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * taxes.liquidity) / buyTotalFees; tokensForCooking += (fees * taxes.cooking) / buyTotalFees; tokensForCorruption += (fees * taxes.corruption) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForCorruption + tokensForCooking; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * swapTokensAtMultiplier){ contractBalance = swapTokensAtAmount * swapTokensAtMultiplier; } uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForCorruption = ethBalance.mul(tokensForCorruption).div(totalTokensToSwap); uint256 ethForCooking = ethBalance.mul(tokensForCooking).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCorruption - ethForCooking; tokensForLiquidity = 0; tokensForCorruption = 0; tokensForCooking = 0; (success,) = address(cookingWallet).call{value: ethForCooking}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(corruptionWallet).call{value: address(this).balance}(""); } function withdrawStuckToken() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(uniswapV2Router), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(uniswapV2Router), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreListingTransferable(address _addr, bool isAuthorized) public onlyOwner { preListingTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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 subtraction 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; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"CookingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"CorruptionWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"uint256","name":"_corruption","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_cooking","type":"uint256"}],"name":"SetSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_corruption","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_cooking","type":"uint256"}],"name":"UpdateBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preListingPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preListingTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"corruption","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"cooking","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreListingTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint256","name":"corruption","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"cooking","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCooking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCorruption","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCookingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCorruptionWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055505f600a60036101000a81548160ff0219169083151502179055506040518060600160405280600181526020015f81526020016001815250600c5f820151815f0155602082015181600101556040820151816002015550506040518060600160405280600181526020015f81526020016001815250600f5f820151815f0155602082015181600101556040820151816002015550506001601c5f6101000a81548160ff0219169083151502179055503480156200010c575f80fd5b506040518060400160405280600981526020017f4d455448455245554d00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4554480000000000000000000000000000000000000000000000000000000081525081600390816200018a919062000e64565b5080600490816200019c919062000e64565b505050620001bf620001b36200075060201b60201c565b6200075760201b60201c565b7390f91ba79aafefdcfc0b5fffb7f0b61526667b1960175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507360faeaef5c85cd38892c7107a60cbdd604f8c55d60185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f8190505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002f4919062000fad565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200035a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000380919062000fad565b6040518363ffffffff1660e01b81526004016200039f92919062000fee565b6020604051808303815f875af1158015620003bc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003e2919062000fad565b90508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200046160a05160016200081a60201b60201c565b6200047660a0516001620008b860201b60201c565b62000489836001620008b860201b60201c565b5f6c01431e0fae6d7217caa000000090506103e8600a82620004ac919062001046565b620004b89190620010bd565b6006819055506103e8600a82620004d0919062001046565b620004dc9190620010bd565b6007819055506014600981905550612710600582620004fc919062001046565b620005089190620010bd565b600881905550600c60020154600c60010154600c5f01546200052b9190620010f4565b620005379190620010f4565b601281905550600f60020154600f60010154600f5f01546200055a9190620010f4565b620005669190620010f4565b6013819055506200058e620005806200092060201b60201c565b60016200094860201b60201c565b620005a13060016200094860201b60201c565b620005b661dead60016200094860201b60201c565b620005d8620005ca6200092060201b60201c565b6001620008b860201b60201c565b620005eb306001620008b860201b60201c565b6200060061dead6001620008b860201b60201c565b6200063460175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094860201b60201c565b6200066860185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094860201b60201c565b6200069c60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008b860201b60201c565b620006d060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008b860201b60201c565b6001601d5f620006e56200092060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000746338262000a0060201b60201c565b505050506200127d565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b620008c862000b6560201b60201c565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200095862000b6560201b60201c565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009f491906200114a565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6890620011c3565b60405180910390fd5b62000a845f838362000bf660201b60201c565b8060025f82825462000a979190620010f4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b469190620011f4565b60405180910390a362000b615f838362000bfb60201b60201c565b5050565b62000b756200075060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b9b6200092060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000beb906200125d565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000c7c57607f821691505b60208210810362000c925762000c9162000c37565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000cf67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb9565b62000d02868362000cb9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000d4c62000d4662000d408462000d1a565b62000d23565b62000d1a565b9050919050565b5f819050919050565b62000d678362000d2c565b62000d7f62000d768262000d53565b84845462000cc5565b825550505050565b5f90565b62000d9562000d87565b62000da281848462000d5c565b505050565b5b8181101562000dc95762000dbd5f8262000d8b565b60018101905062000da8565b5050565b601f82111562000e185762000de28162000c98565b62000ded8462000caa565b8101602085101562000dfd578190505b62000e1562000e0c8562000caa565b83018262000da7565b50505b505050565b5f82821c905092915050565b5f62000e3a5f198460080262000e1d565b1980831691505092915050565b5f62000e54838362000e29565b9150826002028217905092915050565b62000e6f8262000c00565b67ffffffffffffffff81111562000e8b5762000e8a62000c0a565b5b62000e97825462000c64565b62000ea482828562000dcd565b5f60209050601f83116001811462000eda575f841562000ec5578287015190505b62000ed1858262000e47565b86555062000f40565b601f19841662000eea8662000c98565b5f5b8281101562000f135784890151825560018201915060208501945060208101905062000eec565b8683101562000f33578489015162000f2f601f89168262000e29565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000f778262000f4c565b9050919050565b62000f898162000f6b565b811462000f94575f80fd5b50565b5f8151905062000fa78162000f7e565b92915050565b5f6020828403121562000fc55762000fc462000f48565b5b5f62000fd48482850162000f97565b91505092915050565b62000fe88162000f6b565b82525050565b5f604082019050620010035f83018562000fdd565b62001012602083018462000fdd565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620010528262000d1a565b91506200105f8362000d1a565b92508282026200106f8162000d1a565b9150828204841483151762001089576200108862001019565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620010c98262000d1a565b9150620010d68362000d1a565b925082620010e957620010e862001090565b5b828204905092915050565b5f620011008262000d1a565b91506200110d8362000d1a565b925082820190508082111562001128576200112762001019565b5b92915050565b5f8115159050919050565b62001144816200112e565b82525050565b5f6020820190506200115f5f83018462001139565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620011ab601f8362001165565b9150620011b88262001175565b602082019050919050565b5f6020820190508181035f830152620011dc816200119d565b9050919050565b620011ee8162000d1a565b82525050565b5f602082019050620012095f830184620011e3565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200124560208362001165565b915062001252826200120f565b602082019050919050565b5f6020820190508181035f830152620012768162001237565b9050919050565b60805160a05161511b620012e55f395f81816110cb0152818161173b01528181611d93015261204f01525f8181610eb201528181611dea015281816120a601528181613887015281816139660152818161398d01528181613a230152613a4a015261511b5ff3fe60806040526004361061038f575f3560e01c806375e3661e116101db578063c18bc19511610101578063e82493a91161009f578063f66895a31161006e578063f66895a314610d0a578063f8b45b0514610d36578063f9f92be414610d60578063fe575a8714610d8857610396565b8063e82493a914610c66578063f0b89f0a14610c8e578063f2fde38b14610cb8578063f55f718e14610ce057610396565b8063d85ba063116100db578063d85ba06314610bae578063dd62ed3e14610bd8578063e19b282314610c14578063e2f4560514610c3c57610396565b8063c18bc19514610b20578063c8c8ebe414610b48578063d257b34f14610b7257610396565b80639a7a23d611610179578063b62496f511610148578063b62496f514610a6a578063bbc0c74214610aa6578063bc205ad314610ad0578063c024666814610af857610396565b80639a7a23d6146109a25780639d282cd6146109ca578063a457c2d7146109f2578063a9059cbb14610a2e57610396565b80638a8c523c116101b55780638a8c523c146109105780638da5cb5b14610926578063924de9b71461095057806395d89b411461097857610396565b806375e3661e146108aa5780637ca8448a146108d257806384dd4452146108fa57610396565b806349bd5a5e116102c05780636ddd17131161025e578063728f8eea1161022d578063728f8eea14610802578063745e2d301461082e578063751039fc146108585780637571336a1461088257610396565b80636ddd17131461075e5780636f8862771461078857806370a08231146107b0578063715018a6146107ec57610396565b80634fbee1931161029a5780634fbee193146106b85780635f189361146106f45780636490015c1461070a5780636a486a8e1461073457610396565b806349bd5a5e1461063c5780634a62bb65146106665780634e736f221461069057610396565b8063203e727e1161032d5780632ed541bc116103075780632ed541bc14610584578063313ce567146105ac57806339509351146105d65780633dc599ff1461061257610396565b8063203e727e146104f657806323b872dd1461051e57806327c8f8351461055a57610396565b806310d5de531161036957806310d5de531461043c5780631694505e1461047857806318160ddd146104a25780631a8145bb146104cc57610396565b806304fa50c21461039a57806306fdde03146103d6578063095ea7b31461040057610396565b3661039657005b5f80fd5b3480156103a5575f80fd5b506103c060048036038101906103bb9190613b59565b610dc4565b6040516103cd9190613b9e565b60405180910390f35b3480156103e1575f80fd5b506103ea610de1565b6040516103f79190613c41565b60405180910390f35b34801561040b575f80fd5b5061042660048036038101906104219190613c94565b610e71565b6040516104339190613b9e565b60405180910390f35b348015610447575f80fd5b50610462600480360381019061045d9190613b59565b610e93565b60405161046f9190613b9e565b60405180910390f35b348015610483575f80fd5b5061048c610eb0565b6040516104999190613d2d565b60405180910390f35b3480156104ad575f80fd5b506104b6610ed4565b6040516104c39190613d55565b60405180910390f35b3480156104d7575f80fd5b506104e0610edd565b6040516104ed9190613d55565b60405180910390f35b348015610501575f80fd5b5061051c60048036038101906105179190613d6e565b610ee3565b005b348015610529575f80fd5b50610544600480360381019061053f9190613d99565b610f7e565b6040516105519190613b9e565b60405180910390f35b348015610565575f80fd5b5061056e610fac565b60405161057b9190613df8565b60405180910390f35b34801561058f575f80fd5b506105aa60048036038101906105a59190613b59565b610fb2565b005b3480156105b7575f80fd5b506105c0611078565b6040516105cd9190613e2c565b60405180910390f35b3480156105e1575f80fd5b506105fc60048036038101906105f79190613c94565b611080565b6040516106099190613b9e565b60405180910390f35b34801561061d575f80fd5b506106266110b6565b6040516106339190613b9e565b60405180910390f35b348015610647575f80fd5b506106506110c9565b60405161065d9190613df8565b60405180910390f35b348015610671575f80fd5b5061067a6110ed565b6040516106879190613b9e565b60405180910390f35b34801561069b575f80fd5b506106b660048036038101906106b19190613e45565b6110ff565b005b3480156106c3575f80fd5b506106de60048036038101906106d99190613b59565b611173565b6040516106eb9190613b9e565b60405180910390f35b3480156106ff575f80fd5b506107086111c5565b005b348015610715575f80fd5b5061071e6111ea565b60405161072b9190613b9e565b60405180910390f35b34801561073f575f80fd5b506107486111fc565b6040516107559190613d55565b60405180910390f35b348015610769575f80fd5b50610772611202565b60405161077f9190613b9e565b60405180910390f35b348015610793575f80fd5b506107ae60048036038101906107a99190613b59565b611215565b005b3480156107bb575f80fd5b506107d660048036038101906107d19190613b59565b6112db565b6040516107e39190613d55565b60405180910390f35b3480156107f7575f80fd5b50610800611320565b005b34801561080d575f80fd5b50610816611333565b60405161082593929190613e95565b60405180910390f35b348015610839575f80fd5b5061084261134a565b60405161084f9190613d55565b60405180910390f35b348015610863575f80fd5b5061086c611350565b6040516108799190613b9e565b60405180910390f35b34801561088d575f80fd5b506108a860048036038101906108a39190613ef4565b611379565b005b3480156108b5575f80fd5b506108d060048036038101906108cb9190613b59565b6113d9565b005b3480156108dd575f80fd5b506108f860048036038101906108f39190613b59565b611438565b005b348015610905575f80fd5b5061090e6114b5565b005b34801561091b575f80fd5b506109246115fb565b005b348015610931575f80fd5b5061093a611654565b6040516109479190613df8565b60405180910390f35b34801561095b575f80fd5b5061097660048036038101906109719190613f32565b61167c565b005b348015610983575f80fd5b5061098c6116a1565b6040516109999190613c41565b60405180910390f35b3480156109ad575f80fd5b506109c860048036038101906109c39190613ef4565b611731565b005b3480156109d5575f80fd5b506109f060048036038101906109eb9190613e45565b6117d5565b005b3480156109fd575f80fd5b50610a186004803603810190610a139190613c94565b611849565b604051610a259190613b9e565b60405180910390f35b348015610a39575f80fd5b50610a546004803603810190610a4f9190613c94565b6118be565b604051610a619190613b9e565b60405180910390f35b348015610a75575f80fd5b50610a906004803603810190610a8b9190613b59565b6118e0565b604051610a9d9190613b9e565b60405180910390f35b348015610ab1575f80fd5b50610aba6118fd565b604051610ac79190613b9e565b60405180910390f35b348015610adb575f80fd5b50610af66004803603810190610af19190613f5d565b611910565b005b348015610b03575f80fd5b50610b1e6004803603810190610b199190613ef4565b611a82565b005b348015610b2b575f80fd5b50610b466004803603810190610b419190613d6e565b611b30565b005b348015610b53575f80fd5b50610b5c611bcb565b604051610b699190613d55565b60405180910390f35b348015610b7d575f80fd5b50610b986004803603810190610b939190613d6e565b611bd1565b604051610ba59190613b9e565b60405180910390f35b348015610bb9575f80fd5b50610bc2611cb1565b604051610bcf9190613d55565b60405180910390f35b348015610be3575f80fd5b50610bfe6004803603810190610bf99190613f5d565b611cb7565b604051610c0b9190613d55565b60405180910390f35b348015610c1f575f80fd5b50610c3a6004803603810190610c359190613b59565b611d39565b005b348015610c47575f80fd5b50610c50611ed0565b604051610c5d9190613d55565b60405180910390f35b348015610c71575f80fd5b50610c8c6004803603810190610c879190613ef4565b611ed6565b005b348015610c99575f80fd5b50610ca2611f4a565b604051610caf9190613d55565b60405180910390f35b348015610cc3575f80fd5b50610cde6004803603810190610cd99190613b59565b611f50565b005b348015610ceb575f80fd5b50610cf4611fd2565b604051610d019190613d55565b60405180910390f35b348015610d15575f80fd5b50610d1e611fd8565b604051610d2d93929190613e95565b60405180910390f35b348015610d41575f80fd5b50610d4a611fef565b604051610d579190613d55565b60405180910390f35b348015610d6b575f80fd5b50610d866004803603810190610d819190613b59565b611ff5565b005b348015610d93575f80fd5b50610dae6004803603810190610da99190613b59565b61218c565b604051610dbb9190613b9e565b60405180910390f35b601d602052805f5260405f205f915054906101000a900460ff1681565b606060038054610df090613fc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90613fc8565b8015610e675780601f10610e3e57610100808354040283529160200191610e67565b820191905f5260205f20905b815481529060010190602001808311610e4a57829003601f168201915b5050505050905090565b5f80610e7b6121de565b9050610e888185856121e5565b600191505092915050565b601a602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60155481565b610eeb6123a8565b670de0b6b3a76400006103e86005610f01610ed4565b610f0b9190614025565b610f159190614093565b610f1f9190614093565b811015610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890614133565b60405180910390fd5b670de0b6b3a764000081610f759190614025565b60068190555050565b5f80610f886121de565b9050610f95858285612426565b610fa08585856124b1565b60019150509392505050565b61dead81565b610fba6123a8565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f935faa33dbbba6283a3a6b0b372b9108616c498054a936d634b805c6c6d565d860405160405180910390a38060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6012905090565b5f8061108a6121de565b90506110ab81858561109c8589611cb7565b6110a69190614151565b6121e5565b600191505092915050565b600a60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b6111076123a8565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050600f60020154600f60010154600f5f015461115e9190614151565b6111689190614151565b601381905550505050565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6111cd6123a8565b6001600a60036101000a81548160ff021916908315150217905550565b601c5f9054906101000a900460ff1681565b60135481565b600a60029054906101000a900460ff1681565b61121d6123a8565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f6e62c456784d643fa5b63af00fe87f822762ae252ba3fd51bd83a8033cd4144a60405160405180910390a38060175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6113286123a8565b6113315f613103565b565b600c805f0154908060010154908060020154905083565b60145481565b5f6113596123a8565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6113816123a8565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6113e16123a8565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6114406123a8565b5f8173ffffffffffffffffffffffffffffffffffffffff1647604051611465906141b1565b5f6040518083038185875af1925050503d805f811461149f576040519150601f19603f3d011682016040523d82523d5f602084013e6114a4565b606091505b50509050806114b1575f80fd5b5050565b6114bd6123a8565b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114f79190613df8565b602060405180830381865afa158015611512573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153691906141d9565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611573929190614204565b6020604051808303815f875af115801561158f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b3919061423f565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156115f7573d5f803e3d5ffd5b5050565b6116036123a8565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055505f601c5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116846123a8565b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546116b090613fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc90613fc8565b80156117275780601f106116fe57610100808354040283529160200191611727565b820191905f5260205f20905b81548152906001019060200180831161170a57829003601f168201915b5050505050905090565b6117396123a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906142da565b60405180910390fd5b6117d182826131c6565b5050565b6117dd6123a8565b604051806060016040528084815260200183815260200182815250600c5f820151815f01556020820151816001015560408201518160020155905050600c60020154600c60010154600c5f01546118349190614151565b61183e9190614151565b601281905550505050565b5f806118536121de565b90505f6118608286611cb7565b9050838110156118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614368565b60405180910390fd5b6118b282868684036121e5565b60019250505092915050565b5f806118c86121de565b90506118d58185856124b1565b600191505092915050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6119186123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906143d0565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119c09190613df8565b602060405180830381865afa1580156119db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119ff91906141d9565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611a3c929190614204565b6020604051808303815f875af1158015611a58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a7c919061423f565b50505050565b611a8a6123a8565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b249190613b9e565b60405180910390a25050565b611b386123a8565b670de0b6b3a76400006103e8600a611b4e610ed4565b611b589190614025565b611b629190614093565b611b6c9190614093565b811015611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba59061445e565b60405180910390fd5b670de0b6b3a764000081611bc29190614025565b60078190555050565b60065481565b5f611bda6123a8565b620186a06001611be8610ed4565b611bf29190614025565b611bfc9190614093565b821015611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c35906144ec565b60405180910390fd5b6103e86005611c4b610ed4565b611c559190614025565b611c5f9190614093565b821115611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c989061457a565b60405180910390fd5b8160088190555060019050919050565b60125481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611d416123a8565b600a60039054906101000a900460ff1615611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614608565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611e3957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60085481565b611ede6123a8565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611f3c8282611a82565b611f468282611379565b5050565b60095481565b611f586123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614724565b60405180910390fd5b611fcf81613103565b50565b60165481565b600f805f0154908060010154908060020154905083565b60075481565b611ffd6123a8565b600a60039054906101000a900460ff161561204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614608565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156120f557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a906147b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614840565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161239b9190613d55565b60405180910390a3505050565b6123b06121de565b73ffffffffffffffffffffffffffffffffffffffff166123ce611654565b73ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b906148a8565b60405180910390fd5b565b5f6124318484611cb7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124ab578181101561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614910565b60405180910390fd5b6124aa84848484036121e5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125169061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258490614a2c565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90614a94565b60405180910390fd5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890614afc565b60405180910390fd5b601c5f9054906101000a900460ff161561273f57601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661273e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273590614b8a565b60405180910390fd5b5b5f81036127565761275183835f613264565b6130fe565b600a5f9054906101000a900460ff1615612c3a57612772611654565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e057506127b0611654565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612852575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286b5750600560149054906101000a900460ff16155b15612c3957600a60019054906101000a900460ff1661295f5760195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061291f575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590614bf2565b60405180910390fd5b5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129fc5750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612aa357600654811115612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d90614c80565b60405180910390fd5b600754612a52836112db565b82612a5d9190614151565b1115612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590614ce8565b60405180910390fd5b612c38565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612b405750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612b8f57600654811115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614d76565b60405180910390fd5b612c37565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612c3657600754612be9836112db565b82612bf49190614151565b1115612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614ce8565b60405180910390fd5b5b5b5b5b5b5f612c44306112db565b90505f6008548210159050808015612c685750600a60029054906101000a900460ff165b8015612c815750600560149054906101000a900460ff16155b8015612cd45750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d27575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d7a575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612dbd576001600560146101000a81548160ff021916908315150217905550612da26134d0565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612e6c575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612e75575f90505b5f81156130ee57601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ed357505f601354115b15612fa557612f006064612ef2601354886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601354600f6001015482612f169190614025565b612f209190614093565b60155f828254612f309190614151565b92505081905550601354600f6002015482612f4b9190614025565b612f559190614093565b60165f828254612f659190614151565b92505081905550601354600f5f015482612f7f9190614025565b612f899190614093565b60145f828254612f999190614151565b925050819055506130cb565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ffc57505f601254115b156130ca57613029606461301b601254886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601254600c600101548261303f9190614025565b6130499190614093565b60155f8282546130599190614151565b92505081905550601254600c60020154826130749190614025565b61307e9190614093565b60165f82825461308e9190614151565b92505081905550601254600c5f0154826130a89190614025565b6130b29190614093565b60145f8282546130c29190614151565b925050819055505b5b5f8111156130df576130de873083613264565b5b80856130eb9190614d94565b94505b6130f9878787613264565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333790614a2c565b60405180910390fd5b61334b8383836137cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156133ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c590614e37565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134b79190613d55565b60405180910390a36134ca8484846137d0565b50505050565b5f6134da306112db565b90505f6016546014546015546134f09190614151565b6134fa9190614151565b90505f8083148061350a57505f82145b156135175750505061379f565b6009546008546135279190614025565b8311156135415760095460085461353e9190614025565b92505b5f600283601554866135539190614025565b61355d9190614093565b6135679190614093565b90505f61357d82866137d590919063ffffffff16565b90505f47905061358c826137ea565b5f6135a082476137d590919063ffffffff16565b90505f6135ca876135bc601454856137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f6135f4886135e6601654866137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f8183856136049190614d94565b61360e9190614d94565b90505f6015819055505f6014819055505f60168190555060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161366a906141b1565b5f6040518083038185875af1925050503d805f81146136a4576040519150601f19603f3d011682016040523d82523d5f602084013e6136a9565b606091505b5050809850505f871180156136bd57505f81115b1561370a576136cc8782613a1d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260155460405161370193929190613e95565b60405180910390a15b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161374f906141b1565b5f6040518083038185875af1925050503d805f8114613789576040519150601f19603f3d011682016040523d82523d5f602084013e61378e565b606091505b505080985050505050505050505050505b565b5f81836137ae9190614025565b905092915050565b5f81836137c39190614093565b905092915050565b505050565b505050565b5f81836137e29190614d94565b905092915050565b5f600267ffffffffffffffff81111561380657613805614e55565b5b6040519080825280602002602001820160405280156138345781602001602082028036833780820191505090505b50905030815f8151811061384b5761384a614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139129190614ec3565b8160018151811061392657613925614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061398b307f0000000000000000000000000000000000000000000000000000000000000000846121e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016139ec959493929190614fde565b5f604051808303815f87803b158015613a03575f80fd5b505af1158015613a15573d5f803e3d5ffd5b505050505050565b613a48307f0000000000000000000000000000000000000000000000000000000000000000846121e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a91611654565b426040518863ffffffff1660e01b8152600401613ab396959493929190615036565b60606040518083038185885af1158015613acf573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613af49190615095565b5050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613b2882613aff565b9050919050565b613b3881613b1e565b8114613b42575f80fd5b50565b5f81359050613b5381613b2f565b92915050565b5f60208284031215613b6e57613b6d613afb565b5b5f613b7b84828501613b45565b91505092915050565b5f8115159050919050565b613b9881613b84565b82525050565b5f602082019050613bb15f830184613b8f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613bee578082015181840152602081019050613bd3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613c1382613bb7565b613c1d8185613bc1565b9350613c2d818560208601613bd1565b613c3681613bf9565b840191505092915050565b5f6020820190508181035f830152613c598184613c09565b905092915050565b5f819050919050565b613c7381613c61565b8114613c7d575f80fd5b50565b5f81359050613c8e81613c6a565b92915050565b5f8060408385031215613caa57613ca9613afb565b5b5f613cb785828601613b45565b9250506020613cc885828601613c80565b9150509250929050565b5f819050919050565b5f613cf5613cf0613ceb84613aff565b613cd2565b613aff565b9050919050565b5f613d0682613cdb565b9050919050565b5f613d1782613cfc565b9050919050565b613d2781613d0d565b82525050565b5f602082019050613d405f830184613d1e565b92915050565b613d4f81613c61565b82525050565b5f602082019050613d685f830184613d46565b92915050565b5f60208284031215613d8357613d82613afb565b5b5f613d9084828501613c80565b91505092915050565b5f805f60608486031215613db057613daf613afb565b5b5f613dbd86828701613b45565b9350506020613dce86828701613b45565b9250506040613ddf86828701613c80565b9150509250925092565b613df281613b1e565b82525050565b5f602082019050613e0b5f830184613de9565b92915050565b5f60ff82169050919050565b613e2681613e11565b82525050565b5f602082019050613e3f5f830184613e1d565b92915050565b5f805f60608486031215613e5c57613e5b613afb565b5b5f613e6986828701613c80565b9350506020613e7a86828701613c80565b9250506040613e8b86828701613c80565b9150509250925092565b5f606082019050613ea85f830186613d46565b613eb56020830185613d46565b613ec26040830184613d46565b949350505050565b613ed381613b84565b8114613edd575f80fd5b50565b5f81359050613eee81613eca565b92915050565b5f8060408385031215613f0a57613f09613afb565b5b5f613f1785828601613b45565b9250506020613f2885828601613ee0565b9150509250929050565b5f60208284031215613f4757613f46613afb565b5b5f613f5484828501613ee0565b91505092915050565b5f8060408385031215613f7357613f72613afb565b5b5f613f8085828601613b45565b9250506020613f9185828601613b45565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613fdf57607f821691505b602082108103613ff257613ff1613f9b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61402f82613c61565b915061403a83613c61565b925082820261404881613c61565b9150828204841483151761405f5761405e613ff8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61409d82613c61565b91506140a883613c61565b9250826140b8576140b7614066565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f61411d602f83613bc1565b9150614128826140c3565b604082019050919050565b5f6020820190508181035f83015261414a81614111565b9050919050565b5f61415b82613c61565b915061416683613c61565b925082820190508082111561417e5761417d613ff8565b5b92915050565b5f81905092915050565b50565b5f61419c5f83614184565b91506141a78261418e565b5f82019050919050565b5f6141bb82614191565b9150819050919050565b5f815190506141d381613c6a565b92915050565b5f602082840312156141ee576141ed613afb565b5b5f6141fb848285016141c5565b91505092915050565b5f6040820190506142175f830185613de9565b6142246020830184613d46565b9392505050565b5f8151905061423981613eca565b92915050565b5f6020828403121561425457614253613afb565b5b5f6142618482850161422b565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6142c4603983613bc1565b91506142cf8261426a565b604082019050919050565b5f6020820190508181035f8301526142f1816142b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614352602583613bc1565b915061435d826142f8565b604082019050919050565b5f6020820190508181035f83015261437f81614346565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6143ba601a83613bc1565b91506143c582614386565b602082019050919050565b5f6020820190508181035f8301526143e7816143ae565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614448602483613bc1565b9150614453826143ee565b604082019050919050565b5f6020820190508181035f8301526144758161443c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6144d6603583613bc1565b91506144e18261447c565b604082019050919050565b5f6020820190508181035f830152614503816144ca565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614564603483613bc1565b915061456f8261450a565b604082019050919050565b5f6020820190508181035f83015261459181614558565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6145f2602183613bc1565b91506145fd82614598565b604082019050919050565b5f6020820190508181035f83015261461f816145e6565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614680602e83613bc1565b915061468b82614626565b604082019050919050565b5f6020820190508181035f8301526146ad81614674565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61470e602683613bc1565b9150614719826146b4565b604082019050919050565b5f6020820190508181035f83015261473b81614702565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61479c602483613bc1565b91506147a782614742565b604082019050919050565b5f6020820190508181035f8301526147c981614790565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61482a602283613bc1565b9150614835826147d0565b604082019050919050565b5f6020820190508181035f8301526148578161481e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614892602083613bc1565b915061489d8261485e565b602082019050919050565b5f6020820190508181035f8301526148bf81614886565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6148fa601d83613bc1565b9150614905826148c6565b602082019050919050565b5f6020820190508181035f830152614927816148ee565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614988602583613bc1565b91506149938261492e565b604082019050919050565b5f6020820190508181035f8301526149b58161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614a16602383613bc1565b9150614a21826149bc565b604082019050919050565b5f6020820190508181035f830152614a4381614a0a565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614a7e601283613bc1565b9150614a8982614a4a565b602082019050919050565b5f6020820190508181035f830152614aab81614a72565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614ae6601483613bc1565b9150614af182614ab2565b602082019050919050565b5f6020820190508181035f830152614b1381614ada565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6c5f8201527f697374696e672e00000000000000000000000000000000000000000000000000602082015250565b5f614b74602783613bc1565b9150614b7f82614b1a565b604082019050919050565b5f6020820190508181035f830152614ba181614b68565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614bdc601683613bc1565b9150614be782614ba8565b602082019050919050565b5f6020820190508181035f830152614c0981614bd0565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614c6a603583613bc1565b9150614c7582614c10565b604082019050919050565b5f6020820190508181035f830152614c9781614c5e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614cd2601383613bc1565b9150614cdd82614c9e565b602082019050919050565b5f6020820190508181035f830152614cff81614cc6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614d60603683613bc1565b9150614d6b82614d06565b604082019050919050565b5f6020820190508181035f830152614d8d81614d54565b9050919050565b5f614d9e82613c61565b9150614da983613c61565b9250828203905081811115614dc157614dc0613ff8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614e21602683613bc1565b9150614e2c82614dc7565b604082019050919050565b5f6020820190508181035f830152614e4e81614e15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050614ebd81613b2f565b92915050565b5f60208284031215614ed857614ed7613afb565b5b5f614ee584828501614eaf565b91505092915050565b5f819050919050565b5f614f11614f0c614f0784614eee565b613cd2565b613c61565b9050919050565b614f2181614ef7565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614f5981613b1e565b82525050565b5f614f6a8383614f50565b60208301905092915050565b5f602082019050919050565b5f614f8c82614f27565b614f968185614f31565b9350614fa183614f41565b805f5b83811015614fd1578151614fb88882614f5f565b9750614fc383614f76565b925050600181019050614fa4565b5085935050505092915050565b5f60a082019050614ff15f830188613d46565b614ffe6020830187614f18565b81810360408301526150108186614f82565b905061501f6060830185613de9565b61502c6080830184613d46565b9695505050505050565b5f60c0820190506150495f830189613de9565b6150566020830188613d46565b6150636040830187614f18565b6150706060830186614f18565b61507d6080830185613de9565b61508a60a0830184613d46565b979650505050505050565b5f805f606084860312156150ac576150ab613afb565b5b5f6150b9868287016141c5565b93505060206150ca868287016141c5565b92505060406150db868287016141c5565b915050925092509256fea2646970667358221220a952f624fba2e780204755b0da991ac546ab75f07e2e8e0bdb317a88cbc01a7164736f6c63430008140033
Deployed Bytecode
0x60806040526004361061038f575f3560e01c806375e3661e116101db578063c18bc19511610101578063e82493a91161009f578063f66895a31161006e578063f66895a314610d0a578063f8b45b0514610d36578063f9f92be414610d60578063fe575a8714610d8857610396565b8063e82493a914610c66578063f0b89f0a14610c8e578063f2fde38b14610cb8578063f55f718e14610ce057610396565b8063d85ba063116100db578063d85ba06314610bae578063dd62ed3e14610bd8578063e19b282314610c14578063e2f4560514610c3c57610396565b8063c18bc19514610b20578063c8c8ebe414610b48578063d257b34f14610b7257610396565b80639a7a23d611610179578063b62496f511610148578063b62496f514610a6a578063bbc0c74214610aa6578063bc205ad314610ad0578063c024666814610af857610396565b80639a7a23d6146109a25780639d282cd6146109ca578063a457c2d7146109f2578063a9059cbb14610a2e57610396565b80638a8c523c116101b55780638a8c523c146109105780638da5cb5b14610926578063924de9b71461095057806395d89b411461097857610396565b806375e3661e146108aa5780637ca8448a146108d257806384dd4452146108fa57610396565b806349bd5a5e116102c05780636ddd17131161025e578063728f8eea1161022d578063728f8eea14610802578063745e2d301461082e578063751039fc146108585780637571336a1461088257610396565b80636ddd17131461075e5780636f8862771461078857806370a08231146107b0578063715018a6146107ec57610396565b80634fbee1931161029a5780634fbee193146106b85780635f189361146106f45780636490015c1461070a5780636a486a8e1461073457610396565b806349bd5a5e1461063c5780634a62bb65146106665780634e736f221461069057610396565b8063203e727e1161032d5780632ed541bc116103075780632ed541bc14610584578063313ce567146105ac57806339509351146105d65780633dc599ff1461061257610396565b8063203e727e146104f657806323b872dd1461051e57806327c8f8351461055a57610396565b806310d5de531161036957806310d5de531461043c5780631694505e1461047857806318160ddd146104a25780631a8145bb146104cc57610396565b806304fa50c21461039a57806306fdde03146103d6578063095ea7b31461040057610396565b3661039657005b5f80fd5b3480156103a5575f80fd5b506103c060048036038101906103bb9190613b59565b610dc4565b6040516103cd9190613b9e565b60405180910390f35b3480156103e1575f80fd5b506103ea610de1565b6040516103f79190613c41565b60405180910390f35b34801561040b575f80fd5b5061042660048036038101906104219190613c94565b610e71565b6040516104339190613b9e565b60405180910390f35b348015610447575f80fd5b50610462600480360381019061045d9190613b59565b610e93565b60405161046f9190613b9e565b60405180910390f35b348015610483575f80fd5b5061048c610eb0565b6040516104999190613d2d565b60405180910390f35b3480156104ad575f80fd5b506104b6610ed4565b6040516104c39190613d55565b60405180910390f35b3480156104d7575f80fd5b506104e0610edd565b6040516104ed9190613d55565b60405180910390f35b348015610501575f80fd5b5061051c60048036038101906105179190613d6e565b610ee3565b005b348015610529575f80fd5b50610544600480360381019061053f9190613d99565b610f7e565b6040516105519190613b9e565b60405180910390f35b348015610565575f80fd5b5061056e610fac565b60405161057b9190613df8565b60405180910390f35b34801561058f575f80fd5b506105aa60048036038101906105a59190613b59565b610fb2565b005b3480156105b7575f80fd5b506105c0611078565b6040516105cd9190613e2c565b60405180910390f35b3480156105e1575f80fd5b506105fc60048036038101906105f79190613c94565b611080565b6040516106099190613b9e565b60405180910390f35b34801561061d575f80fd5b506106266110b6565b6040516106339190613b9e565b60405180910390f35b348015610647575f80fd5b506106506110c9565b60405161065d9190613df8565b60405180910390f35b348015610671575f80fd5b5061067a6110ed565b6040516106879190613b9e565b60405180910390f35b34801561069b575f80fd5b506106b660048036038101906106b19190613e45565b6110ff565b005b3480156106c3575f80fd5b506106de60048036038101906106d99190613b59565b611173565b6040516106eb9190613b9e565b60405180910390f35b3480156106ff575f80fd5b506107086111c5565b005b348015610715575f80fd5b5061071e6111ea565b60405161072b9190613b9e565b60405180910390f35b34801561073f575f80fd5b506107486111fc565b6040516107559190613d55565b60405180910390f35b348015610769575f80fd5b50610772611202565b60405161077f9190613b9e565b60405180910390f35b348015610793575f80fd5b506107ae60048036038101906107a99190613b59565b611215565b005b3480156107bb575f80fd5b506107d660048036038101906107d19190613b59565b6112db565b6040516107e39190613d55565b60405180910390f35b3480156107f7575f80fd5b50610800611320565b005b34801561080d575f80fd5b50610816611333565b60405161082593929190613e95565b60405180910390f35b348015610839575f80fd5b5061084261134a565b60405161084f9190613d55565b60405180910390f35b348015610863575f80fd5b5061086c611350565b6040516108799190613b9e565b60405180910390f35b34801561088d575f80fd5b506108a860048036038101906108a39190613ef4565b611379565b005b3480156108b5575f80fd5b506108d060048036038101906108cb9190613b59565b6113d9565b005b3480156108dd575f80fd5b506108f860048036038101906108f39190613b59565b611438565b005b348015610905575f80fd5b5061090e6114b5565b005b34801561091b575f80fd5b506109246115fb565b005b348015610931575f80fd5b5061093a611654565b6040516109479190613df8565b60405180910390f35b34801561095b575f80fd5b5061097660048036038101906109719190613f32565b61167c565b005b348015610983575f80fd5b5061098c6116a1565b6040516109999190613c41565b60405180910390f35b3480156109ad575f80fd5b506109c860048036038101906109c39190613ef4565b611731565b005b3480156109d5575f80fd5b506109f060048036038101906109eb9190613e45565b6117d5565b005b3480156109fd575f80fd5b50610a186004803603810190610a139190613c94565b611849565b604051610a259190613b9e565b60405180910390f35b348015610a39575f80fd5b50610a546004803603810190610a4f9190613c94565b6118be565b604051610a619190613b9e565b60405180910390f35b348015610a75575f80fd5b50610a906004803603810190610a8b9190613b59565b6118e0565b604051610a9d9190613b9e565b60405180910390f35b348015610ab1575f80fd5b50610aba6118fd565b604051610ac79190613b9e565b60405180910390f35b348015610adb575f80fd5b50610af66004803603810190610af19190613f5d565b611910565b005b348015610b03575f80fd5b50610b1e6004803603810190610b199190613ef4565b611a82565b005b348015610b2b575f80fd5b50610b466004803603810190610b419190613d6e565b611b30565b005b348015610b53575f80fd5b50610b5c611bcb565b604051610b699190613d55565b60405180910390f35b348015610b7d575f80fd5b50610b986004803603810190610b939190613d6e565b611bd1565b604051610ba59190613b9e565b60405180910390f35b348015610bb9575f80fd5b50610bc2611cb1565b604051610bcf9190613d55565b60405180910390f35b348015610be3575f80fd5b50610bfe6004803603810190610bf99190613f5d565b611cb7565b604051610c0b9190613d55565b60405180910390f35b348015610c1f575f80fd5b50610c3a6004803603810190610c359190613b59565b611d39565b005b348015610c47575f80fd5b50610c50611ed0565b604051610c5d9190613d55565b60405180910390f35b348015610c71575f80fd5b50610c8c6004803603810190610c879190613ef4565b611ed6565b005b348015610c99575f80fd5b50610ca2611f4a565b604051610caf9190613d55565b60405180910390f35b348015610cc3575f80fd5b50610cde6004803603810190610cd99190613b59565b611f50565b005b348015610ceb575f80fd5b50610cf4611fd2565b604051610d019190613d55565b60405180910390f35b348015610d15575f80fd5b50610d1e611fd8565b604051610d2d93929190613e95565b60405180910390f35b348015610d41575f80fd5b50610d4a611fef565b604051610d579190613d55565b60405180910390f35b348015610d6b575f80fd5b50610d866004803603810190610d819190613b59565b611ff5565b005b348015610d93575f80fd5b50610dae6004803603810190610da99190613b59565b61218c565b604051610dbb9190613b9e565b60405180910390f35b601d602052805f5260405f205f915054906101000a900460ff1681565b606060038054610df090613fc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90613fc8565b8015610e675780601f10610e3e57610100808354040283529160200191610e67565b820191905f5260205f20905b815481529060010190602001808311610e4a57829003601f168201915b5050505050905090565b5f80610e7b6121de565b9050610e888185856121e5565b600191505092915050565b601a602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60155481565b610eeb6123a8565b670de0b6b3a76400006103e86005610f01610ed4565b610f0b9190614025565b610f159190614093565b610f1f9190614093565b811015610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890614133565b60405180910390fd5b670de0b6b3a764000081610f759190614025565b60068190555050565b5f80610f886121de565b9050610f95858285612426565b610fa08585856124b1565b60019150509392505050565b61dead81565b610fba6123a8565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f935faa33dbbba6283a3a6b0b372b9108616c498054a936d634b805c6c6d565d860405160405180910390a38060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6012905090565b5f8061108a6121de565b90506110ab81858561109c8589611cb7565b6110a69190614151565b6121e5565b600191505092915050565b600a60039054906101000a900460ff1681565b7f0000000000000000000000000aa2348309596e5fa59ac302b65e2c5115c5d72381565b600a5f9054906101000a900460ff1681565b6111076123a8565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050600f60020154600f60010154600f5f015461115e9190614151565b6111689190614151565b601381905550505050565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6111cd6123a8565b6001600a60036101000a81548160ff021916908315150217905550565b601c5f9054906101000a900460ff1681565b60135481565b600a60029054906101000a900460ff1681565b61121d6123a8565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f6e62c456784d643fa5b63af00fe87f822762ae252ba3fd51bd83a8033cd4144a60405160405180910390a38060175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6113286123a8565b6113315f613103565b565b600c805f0154908060010154908060020154905083565b60145481565b5f6113596123a8565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6113816123a8565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6113e16123a8565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6114406123a8565b5f8173ffffffffffffffffffffffffffffffffffffffff1647604051611465906141b1565b5f6040518083038185875af1925050503d805f811461149f576040519150601f19603f3d011682016040523d82523d5f602084013e6114a4565b606091505b50509050806114b1575f80fd5b5050565b6114bd6123a8565b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114f79190613df8565b602060405180830381865afa158015611512573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153691906141d9565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611573929190614204565b6020604051808303815f875af115801561158f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b3919061423f565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156115f7573d5f803e3d5ffd5b5050565b6116036123a8565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055505f601c5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116846123a8565b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546116b090613fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc90613fc8565b80156117275780601f106116fe57610100808354040283529160200191611727565b820191905f5260205f20905b81548152906001019060200180831161170a57829003601f168201915b5050505050905090565b6117396123a8565b7f0000000000000000000000000aa2348309596e5fa59ac302b65e2c5115c5d72373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906142da565b60405180910390fd5b6117d182826131c6565b5050565b6117dd6123a8565b604051806060016040528084815260200183815260200182815250600c5f820151815f01556020820151816001015560408201518160020155905050600c60020154600c60010154600c5f01546118349190614151565b61183e9190614151565b601281905550505050565b5f806118536121de565b90505f6118608286611cb7565b9050838110156118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614368565b60405180910390fd5b6118b282868684036121e5565b60019250505092915050565b5f806118c86121de565b90506118d58185856124b1565b600191505092915050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6119186123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906143d0565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119c09190613df8565b602060405180830381865afa1580156119db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119ff91906141d9565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611a3c929190614204565b6020604051808303815f875af1158015611a58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a7c919061423f565b50505050565b611a8a6123a8565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b249190613b9e565b60405180910390a25050565b611b386123a8565b670de0b6b3a76400006103e8600a611b4e610ed4565b611b589190614025565b611b629190614093565b611b6c9190614093565b811015611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba59061445e565b60405180910390fd5b670de0b6b3a764000081611bc29190614025565b60078190555050565b60065481565b5f611bda6123a8565b620186a06001611be8610ed4565b611bf29190614025565b611bfc9190614093565b821015611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c35906144ec565b60405180910390fd5b6103e86005611c4b610ed4565b611c559190614025565b611c5f9190614093565b821115611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c989061457a565b60405180910390fd5b8160088190555060019050919050565b60125481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611d416123a8565b600a60039054906101000a900460ff1615611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614608565b60405180910390fd5b7f0000000000000000000000000aa2348309596e5fa59ac302b65e2c5115c5d72373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611e3957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60085481565b611ede6123a8565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611f3c8282611a82565b611f468282611379565b5050565b60095481565b611f586123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614724565b60405180910390fd5b611fcf81613103565b50565b60165481565b600f805f0154908060010154908060020154905083565b60075481565b611ffd6123a8565b600a60039054906101000a900460ff161561204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614608565b60405180910390fd5b7f0000000000000000000000000aa2348309596e5fa59ac302b65e2c5115c5d72373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156120f557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a906147b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614840565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161239b9190613d55565b60405180910390a3505050565b6123b06121de565b73ffffffffffffffffffffffffffffffffffffffff166123ce611654565b73ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b906148a8565b60405180910390fd5b565b5f6124318484611cb7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124ab578181101561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614910565b60405180910390fd5b6124aa84848484036121e5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125169061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258490614a2c565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90614a94565b60405180910390fd5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890614afc565b60405180910390fd5b601c5f9054906101000a900460ff161561273f57601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661273e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273590614b8a565b60405180910390fd5b5b5f81036127565761275183835f613264565b6130fe565b600a5f9054906101000a900460ff1615612c3a57612772611654565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e057506127b0611654565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612852575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286b5750600560149054906101000a900460ff16155b15612c3957600a60019054906101000a900460ff1661295f5760195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061291f575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590614bf2565b60405180910390fd5b5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129fc5750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612aa357600654811115612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d90614c80565b60405180910390fd5b600754612a52836112db565b82612a5d9190614151565b1115612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590614ce8565b60405180910390fd5b612c38565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612b405750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612b8f57600654811115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614d76565b60405180910390fd5b612c37565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612c3657600754612be9836112db565b82612bf49190614151565b1115612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614ce8565b60405180910390fd5b5b5b5b5b5b5f612c44306112db565b90505f6008548210159050808015612c685750600a60029054906101000a900460ff165b8015612c815750600560149054906101000a900460ff16155b8015612cd45750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d27575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d7a575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612dbd576001600560146101000a81548160ff021916908315150217905550612da26134d0565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612e6c575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612e75575f90505b5f81156130ee57601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ed357505f601354115b15612fa557612f006064612ef2601354886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601354600f6001015482612f169190614025565b612f209190614093565b60155f828254612f309190614151565b92505081905550601354600f6002015482612f4b9190614025565b612f559190614093565b60165f828254612f659190614151565b92505081905550601354600f5f015482612f7f9190614025565b612f899190614093565b60145f828254612f999190614151565b925050819055506130cb565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ffc57505f601254115b156130ca57613029606461301b601254886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601254600c600101548261303f9190614025565b6130499190614093565b60155f8282546130599190614151565b92505081905550601254600c60020154826130749190614025565b61307e9190614093565b60165f82825461308e9190614151565b92505081905550601254600c5f0154826130a89190614025565b6130b29190614093565b60145f8282546130c29190614151565b925050819055505b5b5f8111156130df576130de873083613264565b5b80856130eb9190614d94565b94505b6130f9878787613264565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333790614a2c565b60405180910390fd5b61334b8383836137cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156133ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c590614e37565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134b79190613d55565b60405180910390a36134ca8484846137d0565b50505050565b5f6134da306112db565b90505f6016546014546015546134f09190614151565b6134fa9190614151565b90505f8083148061350a57505f82145b156135175750505061379f565b6009546008546135279190614025565b8311156135415760095460085461353e9190614025565b92505b5f600283601554866135539190614025565b61355d9190614093565b6135679190614093565b90505f61357d82866137d590919063ffffffff16565b90505f47905061358c826137ea565b5f6135a082476137d590919063ffffffff16565b90505f6135ca876135bc601454856137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f6135f4886135e6601654866137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f8183856136049190614d94565b61360e9190614d94565b90505f6015819055505f6014819055505f60168190555060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161366a906141b1565b5f6040518083038185875af1925050503d805f81146136a4576040519150601f19603f3d011682016040523d82523d5f602084013e6136a9565b606091505b5050809850505f871180156136bd57505f81115b1561370a576136cc8782613a1d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260155460405161370193929190613e95565b60405180910390a15b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161374f906141b1565b5f6040518083038185875af1925050503d805f8114613789576040519150601f19603f3d011682016040523d82523d5f602084013e61378e565b606091505b505080985050505050505050505050505b565b5f81836137ae9190614025565b905092915050565b5f81836137c39190614093565b905092915050565b505050565b505050565b5f81836137e29190614d94565b905092915050565b5f600267ffffffffffffffff81111561380657613805614e55565b5b6040519080825280602002602001820160405280156138345781602001602082028036833780820191505090505b50905030815f8151811061384b5761384a614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139129190614ec3565b8160018151811061392657613925614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061398b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016139ec959493929190614fde565b5f604051808303815f87803b158015613a03575f80fd5b505af1158015613a15573d5f803e3d5ffd5b505050505050565b613a48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a91611654565b426040518863ffffffff1660e01b8152600401613ab396959493929190615036565b60606040518083038185885af1158015613acf573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613af49190615095565b5050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613b2882613aff565b9050919050565b613b3881613b1e565b8114613b42575f80fd5b50565b5f81359050613b5381613b2f565b92915050565b5f60208284031215613b6e57613b6d613afb565b5b5f613b7b84828501613b45565b91505092915050565b5f8115159050919050565b613b9881613b84565b82525050565b5f602082019050613bb15f830184613b8f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613bee578082015181840152602081019050613bd3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613c1382613bb7565b613c1d8185613bc1565b9350613c2d818560208601613bd1565b613c3681613bf9565b840191505092915050565b5f6020820190508181035f830152613c598184613c09565b905092915050565b5f819050919050565b613c7381613c61565b8114613c7d575f80fd5b50565b5f81359050613c8e81613c6a565b92915050565b5f8060408385031215613caa57613ca9613afb565b5b5f613cb785828601613b45565b9250506020613cc885828601613c80565b9150509250929050565b5f819050919050565b5f613cf5613cf0613ceb84613aff565b613cd2565b613aff565b9050919050565b5f613d0682613cdb565b9050919050565b5f613d1782613cfc565b9050919050565b613d2781613d0d565b82525050565b5f602082019050613d405f830184613d1e565b92915050565b613d4f81613c61565b82525050565b5f602082019050613d685f830184613d46565b92915050565b5f60208284031215613d8357613d82613afb565b5b5f613d9084828501613c80565b91505092915050565b5f805f60608486031215613db057613daf613afb565b5b5f613dbd86828701613b45565b9350506020613dce86828701613b45565b9250506040613ddf86828701613c80565b9150509250925092565b613df281613b1e565b82525050565b5f602082019050613e0b5f830184613de9565b92915050565b5f60ff82169050919050565b613e2681613e11565b82525050565b5f602082019050613e3f5f830184613e1d565b92915050565b5f805f60608486031215613e5c57613e5b613afb565b5b5f613e6986828701613c80565b9350506020613e7a86828701613c80565b9250506040613e8b86828701613c80565b9150509250925092565b5f606082019050613ea85f830186613d46565b613eb56020830185613d46565b613ec26040830184613d46565b949350505050565b613ed381613b84565b8114613edd575f80fd5b50565b5f81359050613eee81613eca565b92915050565b5f8060408385031215613f0a57613f09613afb565b5b5f613f1785828601613b45565b9250506020613f2885828601613ee0565b9150509250929050565b5f60208284031215613f4757613f46613afb565b5b5f613f5484828501613ee0565b91505092915050565b5f8060408385031215613f7357613f72613afb565b5b5f613f8085828601613b45565b9250506020613f9185828601613b45565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613fdf57607f821691505b602082108103613ff257613ff1613f9b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61402f82613c61565b915061403a83613c61565b925082820261404881613c61565b9150828204841483151761405f5761405e613ff8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61409d82613c61565b91506140a883613c61565b9250826140b8576140b7614066565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f61411d602f83613bc1565b9150614128826140c3565b604082019050919050565b5f6020820190508181035f83015261414a81614111565b9050919050565b5f61415b82613c61565b915061416683613c61565b925082820190508082111561417e5761417d613ff8565b5b92915050565b5f81905092915050565b50565b5f61419c5f83614184565b91506141a78261418e565b5f82019050919050565b5f6141bb82614191565b9150819050919050565b5f815190506141d381613c6a565b92915050565b5f602082840312156141ee576141ed613afb565b5b5f6141fb848285016141c5565b91505092915050565b5f6040820190506142175f830185613de9565b6142246020830184613d46565b9392505050565b5f8151905061423981613eca565b92915050565b5f6020828403121561425457614253613afb565b5b5f6142618482850161422b565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6142c4603983613bc1565b91506142cf8261426a565b604082019050919050565b5f6020820190508181035f8301526142f1816142b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614352602583613bc1565b915061435d826142f8565b604082019050919050565b5f6020820190508181035f83015261437f81614346565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6143ba601a83613bc1565b91506143c582614386565b602082019050919050565b5f6020820190508181035f8301526143e7816143ae565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614448602483613bc1565b9150614453826143ee565b604082019050919050565b5f6020820190508181035f8301526144758161443c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6144d6603583613bc1565b91506144e18261447c565b604082019050919050565b5f6020820190508181035f830152614503816144ca565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614564603483613bc1565b915061456f8261450a565b604082019050919050565b5f6020820190508181035f83015261459181614558565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6145f2602183613bc1565b91506145fd82614598565b604082019050919050565b5f6020820190508181035f83015261461f816145e6565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614680602e83613bc1565b915061468b82614626565b604082019050919050565b5f6020820190508181035f8301526146ad81614674565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61470e602683613bc1565b9150614719826146b4565b604082019050919050565b5f6020820190508181035f83015261473b81614702565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61479c602483613bc1565b91506147a782614742565b604082019050919050565b5f6020820190508181035f8301526147c981614790565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61482a602283613bc1565b9150614835826147d0565b604082019050919050565b5f6020820190508181035f8301526148578161481e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614892602083613bc1565b915061489d8261485e565b602082019050919050565b5f6020820190508181035f8301526148bf81614886565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6148fa601d83613bc1565b9150614905826148c6565b602082019050919050565b5f6020820190508181035f830152614927816148ee565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614988602583613bc1565b91506149938261492e565b604082019050919050565b5f6020820190508181035f8301526149b58161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614a16602383613bc1565b9150614a21826149bc565b604082019050919050565b5f6020820190508181035f830152614a4381614a0a565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614a7e601283613bc1565b9150614a8982614a4a565b602082019050919050565b5f6020820190508181035f830152614aab81614a72565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614ae6601483613bc1565b9150614af182614ab2565b602082019050919050565b5f6020820190508181035f830152614b1381614ada565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6c5f8201527f697374696e672e00000000000000000000000000000000000000000000000000602082015250565b5f614b74602783613bc1565b9150614b7f82614b1a565b604082019050919050565b5f6020820190508181035f830152614ba181614b68565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614bdc601683613bc1565b9150614be782614ba8565b602082019050919050565b5f6020820190508181035f830152614c0981614bd0565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614c6a603583613bc1565b9150614c7582614c10565b604082019050919050565b5f6020820190508181035f830152614c9781614c5e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614cd2601383613bc1565b9150614cdd82614c9e565b602082019050919050565b5f6020820190508181035f830152614cff81614cc6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614d60603683613bc1565b9150614d6b82614d06565b604082019050919050565b5f6020820190508181035f830152614d8d81614d54565b9050919050565b5f614d9e82613c61565b9150614da983613c61565b9250828203905081811115614dc157614dc0613ff8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614e21602683613bc1565b9150614e2c82614dc7565b604082019050919050565b5f6020820190508181035f830152614e4e81614e15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050614ebd81613b2f565b92915050565b5f60208284031215614ed857614ed7613afb565b5b5f614ee584828501614eaf565b91505092915050565b5f819050919050565b5f614f11614f0c614f0784614eee565b613cd2565b613c61565b9050919050565b614f2181614ef7565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614f5981613b1e565b82525050565b5f614f6a8383614f50565b60208301905092915050565b5f602082019050919050565b5f614f8c82614f27565b614f968185614f31565b9350614fa183614f41565b805f5b83811015614fd1578151614fb88882614f5f565b9750614fc383614f76565b925050600181019050614fa4565b5085935050505092915050565b5f60a082019050614ff15f830188613d46565b614ffe6020830187614f18565b81810360408301526150108186614f82565b905061501f6060830185613de9565b61502c6080830184613d46565b9695505050505050565b5f60c0820190506150495f830189613de9565b6150566020830188613d46565b6150636040830187614f18565b6150706060830186614f18565b61507d6080830185613de9565b61508a60a0830184613d46565b979650505050505050565b5f805f606084860312156150ac576150ab613afb565b5b5f6150b9868287016141c5565b93505060206150ca868287016141c5565b92505060406150db868287016141c5565b915050925092509256fea2646970667358221220a952f624fba2e780204755b0da991ac546ab75f07e2e8e0bdb317a88cbc01a7164736f6c63430008140033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.