ERC-20
Overview
Max Total Supply
100,000,000 DEBOX
Holders
80
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DeBoxToken
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.28; /* DeBox.Cloud - Token Website: https://debox.cloud Twitter: https://x.com/DeBoxETH Telegram: https://t.me/DeBoxETH */ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/ISwapManager.sol"; contract DeBoxToken is ERC20Burnable, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public immutable WETH; address public constant deadAddress = address(0xdead); bool private swapping; address public taxWallet; ISwapManager public swapManager; uint public maxTransactionAmount; uint public swapTokensAtAmount; uint public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint public launchBlock; uint public delayBlocks = 20; uint public totalFees; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _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; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapManagerUpdated( address indexed newManager, address indexed oldManager ); event TaxWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndCollect( uint tokensSwapped, uint wethIntoTax ); constructor( address _router, address _taxWallet ) ERC20("DeBox Cloud", "DEBOX") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; WETH = _uniswapV2Router.WETH(); address pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), WETH); uniswapV2Pair = pair; excludeFromMaxTransaction(pair, true); _setAutomatedMarketMakerPair(pair, true); uint totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply / 200; // 0.5% of total supply maxWallet = totalSupply / 100; // 1% of total supply swapTokensAtAmount = totalSupply / 100_000; // 0.001% of total supply totalFees = 40; // 40% for launch, 5% afterwards taxWallet = address(_taxWallet); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(taxWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(taxWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(_msgSender(), totalSupply); } // once enabled, can never be turned off function enableTrading() external onlyOwner { require ( address(swapManager) != address(0), "Need to set swap manager" ); tradingActive = true; swapEnabled = true; launchBlock = block.number; } // 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(uint 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 updateMaxTxnAmount(uint newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateSwapManager(address newManager) external onlyOwner { emit SwapManagerUpdated(newManager, address(swapManager)); swapManager = ISwapManager(newManager); excludeFromFees(newManager, true); excludeFromMaxTransaction(newManager, true); } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } 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 updateTaxWallet(address newTaxWallet) external onlyOwner { emit TaxWalletUpdated(newTaxWallet, taxWallet); taxWallet = newTaxWallet; excludeFromFees(taxWallet, true); excludeFromMaxTransaction(taxWallet, true); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isExcludedFromMaxTx(address account) public view returns (bool) { return _isExcludedMaxTransactionAmount[account]; } function _transfer( address from, address to, uint amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); 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" ); } } } uint contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_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; } uint fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { if (totalFees != 5 && launchBlock + delayBlocks < block.number) { totalFees = 5; } if ((automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]) && totalFees > 0) { fees = amount * totalFees / 100; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapBack() private { uint contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 5) { contractBalance = swapTokensAtAmount * 5; } uint amountToSwapForWeth = contractBalance; uint initialWethBalance = IERC20(WETH).balanceOf(address(this)); _approve(address(this), address(swapManager), amountToSwapForWeth); swapManager.swapToWeth(amountToSwapForWeth); uint wethDelta = IERC20(WETH).balanceOf(address(this)) - initialWethBalance; IERC20(WETH).transfer(taxWallet, wethDelta); emit SwapAndCollect( amountToSwapForWeth, wethDelta ); } function rescueTokens(address _token) external onlyOwner { require(_token != address(this), "Can not rescue own token!"); IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this))); } }
// 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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// 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 (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ISwapManager { function swapToWeth(uint tokenAmount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Router02 { 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 removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) 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; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"}],"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":"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":"wethIntoTax","type":"uint256"}],"name":"SwapAndCollect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newManager","type":"address"},{"indexed":true,"internalType":"address","name":"oldManager","type":"address"}],"name":"SwapManagerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TaxWalletUpdated","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":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"delayBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapManager","outputs":[{"internalType":"contract ISwapManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":[],"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":"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":"address","name":"newManager","type":"address"}],"name":"updateSwapManager","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":"newTaxWallet","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506014600d5534801561006657600080fd5b50604051614f58380380614f5883398181016040528101906100889190610a1d565b6040518060400160405280600b81526020017f4465426f7820436c6f75640000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4445424f5800000000000000000000000000000000000000000000000000000081525081600390816101039190610cad565b5080600490816101139190610cad565b50505061013261012761050b60201b60201c565b61051360201b60201c565b60008290506101488160016105d960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101eb9190610d7f565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028f9190610d7f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b81526004016102cb929190610dbb565b6020604051808303816000875af11580156102ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030e9190610d7f565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506103558160016105d960201b60201c565b61036681600161064260201b60201c565b60006a52b7d2dcc80cd2e4000000905060c8816103839190610e42565b6008819055506064816103969190610e42565b600a81905550620186a0816103ab9190610e42565b6009819055506028600e8190555083600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061041861040b6106e360201b60201c565b600161070d60201b60201c565b61042930600161070d60201b60201c565b61043c61dead600161070d60201b60201c565b61046f600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161070d60201b60201c565b61048d6104806106e360201b60201c565b60016105d960201b60201c565b61049e3060016105d960201b60201c565b6104b161dead60016105d960201b60201c565b6104e4600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016105d960201b60201c565b6105016104f561050b60201b60201c565b826107c460201b60201c565b5050505050610ff0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105e761092660201b60201c565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61071b61092660201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516107b89190610e8e565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90610f06565b60405180910390fd5b610845600083836109b060201b60201c565b80600260008282546108579190610f26565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109089190610f69565b60405180910390a3610922600083836109b560201b60201c565b5050565b61093461050b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166109586106e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590610fd0565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006109ea826109bf565b9050919050565b6109fa816109df565b8114610a0557600080fd5b50565b600081519050610a17816109f1565b92915050565b60008060408385031215610a3457610a336109ba565b5b6000610a4285828601610a08565b9250506020610a5385828601610a08565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ade57607f821691505b602082108103610af157610af0610a97565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302610b597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610b1c565b610b638683610b1c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000610baa610ba5610ba084610b7b565b610b85565b610b7b565b9050919050565b6000819050919050565b610bc483610b8f565b610bd8610bd082610bb1565b848454610b29565b825550505050565b600090565b610bed610be0565b610bf8818484610bbb565b505050565b5b81811015610c1c57610c11600082610be5565b600181019050610bfe565b5050565b601f821115610c6157610c3281610af7565b610c3b84610b0c565b81016020851015610c4a578190505b610c5e610c5685610b0c565b830182610bfd565b50505b505050565b600082821c905092915050565b6000610c8460001984600802610c66565b1980831691505092915050565b6000610c9d8383610c73565b9150826002028217905092915050565b610cb682610a5d565b67ffffffffffffffff811115610ccf57610cce610a68565b5b610cd98254610ac6565b610ce4828285610c20565b600060209050601f831160018114610d175760008415610d05578287015190505b610d0f8582610c91565b865550610d77565b601f198416610d2586610af7565b60005b82811015610d4d57848901518255600182019150602085019450602081019050610d28565b86831015610d6a5784890151610d66601f891682610c73565b8355505b6001600288020188555050505b505050505050565b600060208284031215610d9557610d946109ba565b5b6000610da384828501610a08565b91505092915050565b610db5816109df565b82525050565b6000604082019050610dd06000830185610dac565b610ddd6020830184610dac565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e4d82610b7b565b9150610e5883610b7b565b925082610e6857610e67610de4565b5b828204905092915050565b60008115159050919050565b610e8881610e73565b82525050565b6000602082019050610ea36000830184610e7f565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000610ef0601f83610ea9565b9150610efb82610eba565b602082019050919050565b60006020820190508181036000830152610f1f81610ee3565b9050919050565b6000610f3182610b7b565b9150610f3c83610b7b565b9250828201905080821115610f5457610f53610e13565b5b92915050565b610f6381610b7b565b82525050565b6000602082019050610f7e6000830184610f5a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610fba602083610ea9565b9150610fc582610f84565b602082019050919050565b60006020820190508181036000830152610fe981610fad565b9050919050565b60805160a05160c051613f1d61103b600039600081816113430152818161294001528181612a990152612b3f015260008181610c25015261120d01526000610aad0152613f1d6000f3fe608060405234801561001057600080fd5b50600436106102895760003560e01c8063751039fc1161015c578063ad9c0c2e116100ce578063d00efb2f11610087578063d00efb2f146107a2578063d257b34f146107c0578063dd62ed3e146107f0578063e2f4560514610820578063f2fde38b1461083e578063f8b45b051461085a57610289565b8063ad9c0c2e146106e0578063b62496f5146106fe578063bbc0c7421461072e578063c02466681461074c578063c18bc19514610768578063c8c8ebe41461078457610289565b8063924de9b711610120578063924de9b71461060c57806395d89b41146106285780639a7a23d614610646578063a457c2d714610662578063a9059cbb14610692578063ad5c4648146106c257610289565b8063751039fc1461058e5780637571336a146105ac57806379cc6790146105c85780638a8c523c146105e45780638da5cb5b146105ee57610289565b80633950935111610200578063658c27a9116101b9578063658c27a9146104cc5780636ddd1713146104fc578063709d039d1461051a57806370a0823114610538578063715018a61461056857806374c9f6031461057257610289565b806339509351146103f857806342966c681461042857806349bd5a5e146104445780634a62bb65146104625780634c36fad7146104805780634fbee1931461049c57610289565b806318160ddd1161025257806318160ddd14610334578063203e727e1461035257806323b872dd1461036e57806327c8f8351461039e5780632dc0562d146103bc578063313ce567146103da57610289565b8062ae3bf81461028e57806306fdde03146102aa578063095ea7b3146102c857806313114a9d146102f85780631694505e14610316575b600080fd5b6102a860048036038101906102a39190612cab565b610878565b005b6102b26109f0565b6040516102bf9190612d68565b60405180910390f35b6102e260048036038101906102dd9190612dc0565b610a82565b6040516102ef9190612e1b565b60405180910390f35b610300610aa5565b60405161030d9190612e45565b60405180910390f35b61031e610aab565b60405161032b9190612ebf565b60405180910390f35b61033c610acf565b6040516103499190612e45565b60405180910390f35b61036c60048036038101906103679190612eda565b610ad9565b005b61038860048036038101906103839190612f07565b610b74565b6040516103959190612e1b565b60405180910390f35b6103a6610ba3565b6040516103b39190612f69565b60405180910390f35b6103c4610ba9565b6040516103d19190612f69565b60405180910390f35b6103e2610bcf565b6040516103ef9190612fa0565b60405180910390f35b610412600480360381019061040d9190612dc0565b610bd8565b60405161041f9190612e1b565b60405180910390f35b610442600480360381019061043d9190612eda565b610c0f565b005b61044c610c23565b6040516104599190612f69565b60405180910390f35b61046a610c47565b6040516104779190612e1b565b60405180910390f35b61049a60048036038101906104959190612cab565b610c5a565b005b6104b660048036038101906104b19190612cab565b610d38565b6040516104c39190612e1b565b60405180910390f35b6104e660048036038101906104e19190612cab565b610d8e565b6040516104f39190612e1b565b60405180910390f35b610504610de4565b6040516105119190612e1b565b60405180910390f35b610522610df7565b60405161052f9190612fdc565b60405180910390f35b610552600480360381019061054d9190612cab565b610e1d565b60405161055f9190612e45565b60405180910390f35b610570610e65565b005b61058c60048036038101906105879190612cab565b610e79565b005b610596610f9b565b6040516105a39190612e1b565b60405180910390f35b6105c660048036038101906105c19190613023565b610fc7565b005b6105e260048036038101906105dd9190612dc0565b61102a565b005b6105ec61104a565b005b6105f6611122565b6040516106039190612f69565b60405180910390f35b61062660048036038101906106219190613063565b61114c565b005b610630611171565b60405161063d9190612d68565b60405180910390f35b610660600480360381019061065b9190613023565b611203565b005b61067c60048036038101906106779190612dc0565b6112a7565b6040516106899190612e1b565b60405180910390f35b6106ac60048036038101906106a79190612dc0565b61131e565b6040516106b99190612e1b565b60405180910390f35b6106ca611341565b6040516106d79190612f69565b60405180910390f35b6106e8611365565b6040516106f59190612e45565b60405180910390f35b61071860048036038101906107139190612cab565b61136b565b6040516107259190612e1b565b60405180910390f35b61073661138b565b6040516107439190612e1b565b60405180910390f35b61076660048036038101906107619190613023565b61139e565b005b610782600480360381019061077d9190612eda565b61144f565b005b61078c6114ea565b6040516107999190612e45565b60405180910390f35b6107aa6114f0565b6040516107b79190612e45565b60405180910390f35b6107da60048036038101906107d59190612eda565b6114f6565b6040516107e79190612e1b565b60405180910390f35b61080a60048036038101906108059190613090565b6115d7565b6040516108179190612e45565b60405180910390f35b61082861165e565b6040516108359190612e45565b60405180910390f35b61085860048036038101906108539190612cab565b611664565b005b6108626116e7565b60405161086f9190612e45565b60405180910390f35b6108806116ed565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e59061311c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610912611122565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161094b9190612f69565b602060405180830381865afa158015610968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098c9190613151565b6040518363ffffffff1660e01b81526004016109a992919061317e565b6020604051808303816000875af11580156109c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ec91906131bc565b5050565b6060600380546109ff90613218565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2b90613218565b8015610a785780601f10610a4d57610100808354040283529160200191610a78565b820191906000526020600020905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b600080610a8d61176b565b9050610a9a818585611773565b600191505092915050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ae16116ed565b670de0b6b3a76400006103e86001610af7610acf565b610b019190613278565b610b0b91906132e9565b610b1591906132e9565b811015610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e9061338c565b60405180910390fd5b670de0b6b3a764000081610b6b9190613278565b60088190555050565b600080610b7f61176b565b9050610b8c85828561193c565b610b978585856119c8565b60019150509392505050565b61dead81565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610be361176b565b9050610c04818585610bf585896115d7565b610bff91906133ac565b611773565b600191505092915050565b610c20610c1a61176b565b8261234a565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b610c626116ed565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d2a81600161139e565b610d35816001610fc7565b50565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b60029054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e6d6116ed565b610e776000612517565b565b610e816116ed565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c9760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f6b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161139e565b610f98600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610fc7565b50565b6000610fa56116ed565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610fcf6116ed565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61103c8261103661176b565b8361193c565b611046828261234a565b5050565b6110526116ed565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061342c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043600c81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111546116ed565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461118090613218565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90613218565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b5050505050905090565b61120b6116ed565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611290906134be565b60405180910390fd5b6112a382826125dd565b5050565b6000806112b261176b565b905060006112c082866115d7565b905083811015611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90613550565b60405180910390fd5b6113128286868403611773565b60019250505092915050565b60008061132961176b565b90506113368185856119c8565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b60116020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6113a66116ed565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114439190612e1b565b60405180910390a25050565b6114576116ed565b670de0b6b3a76400006103e8600561146d610acf565b6114779190613278565b61148191906132e9565b61148b91906132e9565b8110156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906135e2565b60405180910390fd5b670de0b6b3a7640000816114e19190613278565b600a8190555050565b60085481565b600c5481565b60006115006116ed565b620186a0600161150e610acf565b6115189190613278565b61152291906132e9565b821015611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613674565b60405180910390fd5b6103e86005611571610acf565b61157b9190613278565b61158591906132e9565b8211156115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613706565b60405180910390fd5b8160098190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b61166c6116ed565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613798565b60405180910390fd5b6116e481612517565b50565b600a5481565b6116f561176b565b73ffffffffffffffffffffffffffffffffffffffff16611713611122565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613804565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613896565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613928565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161192f9190612e45565b60405180910390a3505050565b600061194884846115d7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119c257818110156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613994565b60405180910390fd5b6119c18484848403611773565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613a26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613ab8565b60405180910390fd5b60008103611abf57611aba8383600061267e565b612345565b600b60009054906101000a900460ff1615611fba57611adc611122565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b4a5750611b1a611122565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bbd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bd65750600560149054906101000a900460ff16155b15611fb957600b60019054906101000a900460ff16611cd057600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c905750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613b24565b60405180910390fd5b5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d735750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e1a57600854811115611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613bb6565b60405180910390fd5b600a54611dc983610e1d565b82611dd491906133ac565b1115611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90613c22565b60405180910390fd5b611fb8565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ebd5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f0c57600854811115611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90613cb4565b60405180910390fd5b611fb7565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fb657600a54611f6983610e1d565b82611f7491906133ac565b1115611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90613c22565b60405180910390fd5b5b5b5b5b5b6000611fc530610e1d565b905060006009548210159050808015611fea5750600b60029054906101000a900460ff165b80156120035750600560149054906101000a900460ff16155b80156120595750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120af5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612149576001600560146101000a81548160ff02191690831515021790555061212d6128f4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121ff5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561220957600090505b60008115612335576005600e5414158015612232575043600d54600c5461223091906133ac565b105b15612240576005600e819055505b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122e15750601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156122ef57506000600e54115b15612311576064600e54866123049190613278565b61230e91906132e9565b90505b60008111156123265761232587308361267e565b5b80856123329190613cd4565b94505b61234087878761267e565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090613d7a565b60405180910390fd5b6123c582600083612c3e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613e0c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124fe9190612e45565b60405180910390a361251283600084612c43565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e490613a26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390613ab8565b60405180910390fd5b612767838383612c3e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490613e9e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128db9190612e45565b60405180910390a36128ee848484612c43565b50505050565b60006128ff30610e1d565b90506000810361290f5750612c3c565b600560095461291e9190613278565b8111156129375760056009546129349190613278565b90505b600081905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016129979190612f69565b602060405180830381865afa1580156129b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d89190613151565b9050612a0730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611773565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb6a4c2c836040518263ffffffff1660e01b8152600401612a629190612e45565b600060405180830381600087803b158015612a7c57600080fd5b505af1158015612a90573d6000803e3d6000fd5b505050506000817f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612af09190612f69565b602060405180830381865afa158015612b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b319190613151565b612b3b9190613cd4565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612bba92919061317e565b6020604051808303816000875af1158015612bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfd91906131bc565b507f0c04c56ec8d6277982721e58bb8ab9b468ae47a1645b3e20c5fac70320bde0828382604051612c2f929190613ebe565b60405180910390a1505050505b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7882612c4d565b9050919050565b612c8881612c6d565b8114612c9357600080fd5b50565b600081359050612ca581612c7f565b92915050565b600060208284031215612cc157612cc0612c48565b5b6000612ccf84828501612c96565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d12578082015181840152602081019050612cf7565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d3a82612cd8565b612d448185612ce3565b9350612d54818560208601612cf4565b612d5d81612d1e565b840191505092915050565b60006020820190508181036000830152612d828184612d2f565b905092915050565b6000819050919050565b612d9d81612d8a565b8114612da857600080fd5b50565b600081359050612dba81612d94565b92915050565b60008060408385031215612dd757612dd6612c48565b5b6000612de585828601612c96565b9250506020612df685828601612dab565b9150509250929050565b60008115159050919050565b612e1581612e00565b82525050565b6000602082019050612e306000830184612e0c565b92915050565b612e3f81612d8a565b82525050565b6000602082019050612e5a6000830184612e36565b92915050565b6000819050919050565b6000612e85612e80612e7b84612c4d565b612e60565b612c4d565b9050919050565b6000612e9782612e6a565b9050919050565b6000612ea982612e8c565b9050919050565b612eb981612e9e565b82525050565b6000602082019050612ed46000830184612eb0565b92915050565b600060208284031215612ef057612eef612c48565b5b6000612efe84828501612dab565b91505092915050565b600080600060608486031215612f2057612f1f612c48565b5b6000612f2e86828701612c96565b9350506020612f3f86828701612c96565b9250506040612f5086828701612dab565b9150509250925092565b612f6381612c6d565b82525050565b6000602082019050612f7e6000830184612f5a565b92915050565b600060ff82169050919050565b612f9a81612f84565b82525050565b6000602082019050612fb56000830184612f91565b92915050565b6000612fc682612e8c565b9050919050565b612fd681612fbb565b82525050565b6000602082019050612ff16000830184612fcd565b92915050565b61300081612e00565b811461300b57600080fd5b50565b60008135905061301d81612ff7565b92915050565b6000806040838503121561303a57613039612c48565b5b600061304885828601612c96565b92505060206130598582860161300e565b9150509250929050565b60006020828403121561307957613078612c48565b5b60006130878482850161300e565b91505092915050565b600080604083850312156130a7576130a6612c48565b5b60006130b585828601612c96565b92505060206130c685828601612c96565b9150509250929050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000613106601983612ce3565b9150613111826130d0565b602082019050919050565b60006020820190508181036000830152613135816130f9565b9050919050565b60008151905061314b81612d94565b92915050565b60006020828403121561316757613166612c48565b5b60006131758482850161313c565b91505092915050565b60006040820190506131936000830185612f5a565b6131a06020830184612e36565b9392505050565b6000815190506131b681612ff7565b92915050565b6000602082840312156131d2576131d1612c48565b5b60006131e0848285016131a7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323057607f821691505b602082108103613243576132426131e9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328382612d8a565b915061328e83612d8a565b925082820261329c81612d8a565b915082820484148315176132b3576132b2613249565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132f482612d8a565b91506132ff83612d8a565b92508261330f5761330e6132ba565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613376602f83612ce3565b91506133818261331a565b604082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b60006133b782612d8a565b91506133c283612d8a565b92508282019050808211156133da576133d9613249565b5b92915050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b6000613416601883612ce3565b9150613421826133e0565b602082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006134a8603983612ce3565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061353a602583612ce3565b9150613545826134de565b604082019050919050565b600060208201905081810360008301526135698161352d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006135cc602483612ce3565b91506135d782613570565b604082019050919050565b600060208201905081810360008301526135fb816135bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061365e603583612ce3565b915061366982613602565b604082019050919050565b6000602082019050818103600083015261368d81613651565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006136f0603483612ce3565b91506136fb82613694565b604082019050919050565b6000602082019050818103600083015261371f816136e3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613782602683612ce3565b915061378d82613726565b604082019050919050565b600060208201905081810360008301526137b181613775565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ee602083612ce3565b91506137f9826137b8565b602082019050919050565b6000602082019050818103600083015261381d816137e1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613880602483612ce3565b915061388b82613824565b604082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613912602283612ce3565b915061391d826138b6565b604082019050919050565b6000602082019050818103600083015261394181613905565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061397e601d83612ce3565b915061398982613948565b602082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a10602583612ce3565b9150613a1b826139b4565b604082019050919050565b60006020820190508181036000830152613a3f81613a03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613aa2602383612ce3565b9150613aad82613a46565b604082019050919050565b60006020820190508181036000830152613ad181613a95565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b0e601683612ce3565b9150613b1982613ad8565b602082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613ba0603583612ce3565b9150613bab82613b44565b604082019050919050565b60006020820190508181036000830152613bcf81613b93565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c0c601383612ce3565b9150613c1782613bd6565b602082019050919050565b60006020820190508181036000830152613c3b81613bff565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613c9e603683612ce3565b9150613ca982613c42565b604082019050919050565b60006020820190508181036000830152613ccd81613c91565b9050919050565b6000613cdf82612d8a565b9150613cea83612d8a565b9250828203905081811115613d0257613d01613249565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d64602183612ce3565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613df6602283612ce3565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613e88602683612ce3565b9150613e9382613e2c565b604082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b6000604082019050613ed36000830185612e36565b613ee06020830184612e36565b939250505056fea2646970667358221220c202f7f9fa472dff019681fe9275f83290cf823dbfe65ea84d8ef6ce0071606464736f6c634300081c00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003b5bb08c0ec0a9b28e01ceeadb1411a7bc2b3cc5
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102895760003560e01c8063751039fc1161015c578063ad9c0c2e116100ce578063d00efb2f11610087578063d00efb2f146107a2578063d257b34f146107c0578063dd62ed3e146107f0578063e2f4560514610820578063f2fde38b1461083e578063f8b45b051461085a57610289565b8063ad9c0c2e146106e0578063b62496f5146106fe578063bbc0c7421461072e578063c02466681461074c578063c18bc19514610768578063c8c8ebe41461078457610289565b8063924de9b711610120578063924de9b71461060c57806395d89b41146106285780639a7a23d614610646578063a457c2d714610662578063a9059cbb14610692578063ad5c4648146106c257610289565b8063751039fc1461058e5780637571336a146105ac57806379cc6790146105c85780638a8c523c146105e45780638da5cb5b146105ee57610289565b80633950935111610200578063658c27a9116101b9578063658c27a9146104cc5780636ddd1713146104fc578063709d039d1461051a57806370a0823114610538578063715018a61461056857806374c9f6031461057257610289565b806339509351146103f857806342966c681461042857806349bd5a5e146104445780634a62bb65146104625780634c36fad7146104805780634fbee1931461049c57610289565b806318160ddd1161025257806318160ddd14610334578063203e727e1461035257806323b872dd1461036e57806327c8f8351461039e5780632dc0562d146103bc578063313ce567146103da57610289565b8062ae3bf81461028e57806306fdde03146102aa578063095ea7b3146102c857806313114a9d146102f85780631694505e14610316575b600080fd5b6102a860048036038101906102a39190612cab565b610878565b005b6102b26109f0565b6040516102bf9190612d68565b60405180910390f35b6102e260048036038101906102dd9190612dc0565b610a82565b6040516102ef9190612e1b565b60405180910390f35b610300610aa5565b60405161030d9190612e45565b60405180910390f35b61031e610aab565b60405161032b9190612ebf565b60405180910390f35b61033c610acf565b6040516103499190612e45565b60405180910390f35b61036c60048036038101906103679190612eda565b610ad9565b005b61038860048036038101906103839190612f07565b610b74565b6040516103959190612e1b565b60405180910390f35b6103a6610ba3565b6040516103b39190612f69565b60405180910390f35b6103c4610ba9565b6040516103d19190612f69565b60405180910390f35b6103e2610bcf565b6040516103ef9190612fa0565b60405180910390f35b610412600480360381019061040d9190612dc0565b610bd8565b60405161041f9190612e1b565b60405180910390f35b610442600480360381019061043d9190612eda565b610c0f565b005b61044c610c23565b6040516104599190612f69565b60405180910390f35b61046a610c47565b6040516104779190612e1b565b60405180910390f35b61049a60048036038101906104959190612cab565b610c5a565b005b6104b660048036038101906104b19190612cab565b610d38565b6040516104c39190612e1b565b60405180910390f35b6104e660048036038101906104e19190612cab565b610d8e565b6040516104f39190612e1b565b60405180910390f35b610504610de4565b6040516105119190612e1b565b60405180910390f35b610522610df7565b60405161052f9190612fdc565b60405180910390f35b610552600480360381019061054d9190612cab565b610e1d565b60405161055f9190612e45565b60405180910390f35b610570610e65565b005b61058c60048036038101906105879190612cab565b610e79565b005b610596610f9b565b6040516105a39190612e1b565b60405180910390f35b6105c660048036038101906105c19190613023565b610fc7565b005b6105e260048036038101906105dd9190612dc0565b61102a565b005b6105ec61104a565b005b6105f6611122565b6040516106039190612f69565b60405180910390f35b61062660048036038101906106219190613063565b61114c565b005b610630611171565b60405161063d9190612d68565b60405180910390f35b610660600480360381019061065b9190613023565b611203565b005b61067c60048036038101906106779190612dc0565b6112a7565b6040516106899190612e1b565b60405180910390f35b6106ac60048036038101906106a79190612dc0565b61131e565b6040516106b99190612e1b565b60405180910390f35b6106ca611341565b6040516106d79190612f69565b60405180910390f35b6106e8611365565b6040516106f59190612e45565b60405180910390f35b61071860048036038101906107139190612cab565b61136b565b6040516107259190612e1b565b60405180910390f35b61073661138b565b6040516107439190612e1b565b60405180910390f35b61076660048036038101906107619190613023565b61139e565b005b610782600480360381019061077d9190612eda565b61144f565b005b61078c6114ea565b6040516107999190612e45565b60405180910390f35b6107aa6114f0565b6040516107b79190612e45565b60405180910390f35b6107da60048036038101906107d59190612eda565b6114f6565b6040516107e79190612e1b565b60405180910390f35b61080a60048036038101906108059190613090565b6115d7565b6040516108179190612e45565b60405180910390f35b61082861165e565b6040516108359190612e45565b60405180910390f35b61085860048036038101906108539190612cab565b611664565b005b6108626116e7565b60405161086f9190612e45565b60405180910390f35b6108806116ed565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e59061311c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610912611122565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161094b9190612f69565b602060405180830381865afa158015610968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098c9190613151565b6040518363ffffffff1660e01b81526004016109a992919061317e565b6020604051808303816000875af11580156109c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ec91906131bc565b5050565b6060600380546109ff90613218565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2b90613218565b8015610a785780601f10610a4d57610100808354040283529160200191610a78565b820191906000526020600020905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b600080610a8d61176b565b9050610a9a818585611773565b600191505092915050565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ae16116ed565b670de0b6b3a76400006103e86001610af7610acf565b610b019190613278565b610b0b91906132e9565b610b1591906132e9565b811015610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e9061338c565b60405180910390fd5b670de0b6b3a764000081610b6b9190613278565b60088190555050565b600080610b7f61176b565b9050610b8c85828561193c565b610b978585856119c8565b60019150509392505050565b61dead81565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610be361176b565b9050610c04818585610bf585896115d7565b610bff91906133ac565b611773565b600191505092915050565b610c20610c1a61176b565b8261234a565b50565b7f0000000000000000000000004c09c8faf3dd774fa74376cb294b28bf0d9acd9a81565b600b60009054906101000a900460ff1681565b610c626116ed565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d2a81600161139e565b610d35816001610fc7565b50565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b60029054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e6d6116ed565b610e776000612517565b565b610e816116ed565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c9760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f6b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161139e565b610f98600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610fc7565b50565b6000610fa56116ed565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610fcf6116ed565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61103c8261103661176b565b8361193c565b611046828261234a565b5050565b6110526116ed565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061342c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043600c81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111546116ed565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461118090613218565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90613218565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b5050505050905090565b61120b6116ed565b7f0000000000000000000000004c09c8faf3dd774fa74376cb294b28bf0d9acd9a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611290906134be565b60405180910390fd5b6112a382826125dd565b5050565b6000806112b261176b565b905060006112c082866115d7565b905083811015611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90613550565b60405180910390fd5b6113128286868403611773565b60019250505092915050565b60008061132961176b565b90506113368185856119c8565b600191505092915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600d5481565b60116020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6113a66116ed565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114439190612e1b565b60405180910390a25050565b6114576116ed565b670de0b6b3a76400006103e8600561146d610acf565b6114779190613278565b61148191906132e9565b61148b91906132e9565b8110156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906135e2565b60405180910390fd5b670de0b6b3a7640000816114e19190613278565b600a8190555050565b60085481565b600c5481565b60006115006116ed565b620186a0600161150e610acf565b6115189190613278565b61152291906132e9565b821015611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613674565b60405180910390fd5b6103e86005611571610acf565b61157b9190613278565b61158591906132e9565b8211156115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613706565b60405180910390fd5b8160098190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b61166c6116ed565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613798565b60405180910390fd5b6116e481612517565b50565b600a5481565b6116f561176b565b73ffffffffffffffffffffffffffffffffffffffff16611713611122565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613804565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613896565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613928565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161192f9190612e45565b60405180910390a3505050565b600061194884846115d7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119c257818110156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613994565b60405180910390fd5b6119c18484848403611773565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613a26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613ab8565b60405180910390fd5b60008103611abf57611aba8383600061267e565b612345565b600b60009054906101000a900460ff1615611fba57611adc611122565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b4a5750611b1a611122565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bbd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bd65750600560149054906101000a900460ff16155b15611fb957600b60019054906101000a900460ff16611cd057600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c905750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613b24565b60405180910390fd5b5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d735750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e1a57600854811115611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613bb6565b60405180910390fd5b600a54611dc983610e1d565b82611dd491906133ac565b1115611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90613c22565b60405180910390fd5b611fb8565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ebd5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f0c57600854811115611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90613cb4565b60405180910390fd5b611fb7565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fb657600a54611f6983610e1d565b82611f7491906133ac565b1115611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90613c22565b60405180910390fd5b5b5b5b5b5b6000611fc530610e1d565b905060006009548210159050808015611fea5750600b60029054906101000a900460ff165b80156120035750600560149054906101000a900460ff16155b80156120595750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120af5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612149576001600560146101000a81548160ff02191690831515021790555061212d6128f4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121ff5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561220957600090505b60008115612335576005600e5414158015612232575043600d54600c5461223091906133ac565b105b15612240576005600e819055505b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122e15750601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156122ef57506000600e54115b15612311576064600e54866123049190613278565b61230e91906132e9565b90505b60008111156123265761232587308361267e565b5b80856123329190613cd4565b94505b61234087878761267e565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090613d7a565b60405180910390fd5b6123c582600083612c3e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613e0c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124fe9190612e45565b60405180910390a361251283600084612c43565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e490613a26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390613ab8565b60405180910390fd5b612767838383612c3e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490613e9e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128db9190612e45565b60405180910390a36128ee848484612c43565b50505050565b60006128ff30610e1d565b90506000810361290f5750612c3c565b600560095461291e9190613278565b8111156129375760056009546129349190613278565b90505b600081905060007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016129979190612f69565b602060405180830381865afa1580156129b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d89190613151565b9050612a0730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611773565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb6a4c2c836040518263ffffffff1660e01b8152600401612a629190612e45565b600060405180830381600087803b158015612a7c57600080fd5b505af1158015612a90573d6000803e3d6000fd5b505050506000817f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612af09190612f69565b602060405180830381865afa158015612b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b319190613151565b612b3b9190613cd4565b90507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612bba92919061317e565b6020604051808303816000875af1158015612bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfd91906131bc565b507f0c04c56ec8d6277982721e58bb8ab9b468ae47a1645b3e20c5fac70320bde0828382604051612c2f929190613ebe565b60405180910390a1505050505b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7882612c4d565b9050919050565b612c8881612c6d565b8114612c9357600080fd5b50565b600081359050612ca581612c7f565b92915050565b600060208284031215612cc157612cc0612c48565b5b6000612ccf84828501612c96565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d12578082015181840152602081019050612cf7565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d3a82612cd8565b612d448185612ce3565b9350612d54818560208601612cf4565b612d5d81612d1e565b840191505092915050565b60006020820190508181036000830152612d828184612d2f565b905092915050565b6000819050919050565b612d9d81612d8a565b8114612da857600080fd5b50565b600081359050612dba81612d94565b92915050565b60008060408385031215612dd757612dd6612c48565b5b6000612de585828601612c96565b9250506020612df685828601612dab565b9150509250929050565b60008115159050919050565b612e1581612e00565b82525050565b6000602082019050612e306000830184612e0c565b92915050565b612e3f81612d8a565b82525050565b6000602082019050612e5a6000830184612e36565b92915050565b6000819050919050565b6000612e85612e80612e7b84612c4d565b612e60565b612c4d565b9050919050565b6000612e9782612e6a565b9050919050565b6000612ea982612e8c565b9050919050565b612eb981612e9e565b82525050565b6000602082019050612ed46000830184612eb0565b92915050565b600060208284031215612ef057612eef612c48565b5b6000612efe84828501612dab565b91505092915050565b600080600060608486031215612f2057612f1f612c48565b5b6000612f2e86828701612c96565b9350506020612f3f86828701612c96565b9250506040612f5086828701612dab565b9150509250925092565b612f6381612c6d565b82525050565b6000602082019050612f7e6000830184612f5a565b92915050565b600060ff82169050919050565b612f9a81612f84565b82525050565b6000602082019050612fb56000830184612f91565b92915050565b6000612fc682612e8c565b9050919050565b612fd681612fbb565b82525050565b6000602082019050612ff16000830184612fcd565b92915050565b61300081612e00565b811461300b57600080fd5b50565b60008135905061301d81612ff7565b92915050565b6000806040838503121561303a57613039612c48565b5b600061304885828601612c96565b92505060206130598582860161300e565b9150509250929050565b60006020828403121561307957613078612c48565b5b60006130878482850161300e565b91505092915050565b600080604083850312156130a7576130a6612c48565b5b60006130b585828601612c96565b92505060206130c685828601612c96565b9150509250929050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000613106601983612ce3565b9150613111826130d0565b602082019050919050565b60006020820190508181036000830152613135816130f9565b9050919050565b60008151905061314b81612d94565b92915050565b60006020828403121561316757613166612c48565b5b60006131758482850161313c565b91505092915050565b60006040820190506131936000830185612f5a565b6131a06020830184612e36565b9392505050565b6000815190506131b681612ff7565b92915050565b6000602082840312156131d2576131d1612c48565b5b60006131e0848285016131a7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323057607f821691505b602082108103613243576132426131e9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328382612d8a565b915061328e83612d8a565b925082820261329c81612d8a565b915082820484148315176132b3576132b2613249565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132f482612d8a565b91506132ff83612d8a565b92508261330f5761330e6132ba565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613376602f83612ce3565b91506133818261331a565b604082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b60006133b782612d8a565b91506133c283612d8a565b92508282019050808211156133da576133d9613249565b5b92915050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b6000613416601883612ce3565b9150613421826133e0565b602082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006134a8603983612ce3565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061353a602583612ce3565b9150613545826134de565b604082019050919050565b600060208201905081810360008301526135698161352d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006135cc602483612ce3565b91506135d782613570565b604082019050919050565b600060208201905081810360008301526135fb816135bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061365e603583612ce3565b915061366982613602565b604082019050919050565b6000602082019050818103600083015261368d81613651565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006136f0603483612ce3565b91506136fb82613694565b604082019050919050565b6000602082019050818103600083015261371f816136e3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613782602683612ce3565b915061378d82613726565b604082019050919050565b600060208201905081810360008301526137b181613775565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ee602083612ce3565b91506137f9826137b8565b602082019050919050565b6000602082019050818103600083015261381d816137e1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613880602483612ce3565b915061388b82613824565b604082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613912602283612ce3565b915061391d826138b6565b604082019050919050565b6000602082019050818103600083015261394181613905565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061397e601d83612ce3565b915061398982613948565b602082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a10602583612ce3565b9150613a1b826139b4565b604082019050919050565b60006020820190508181036000830152613a3f81613a03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613aa2602383612ce3565b9150613aad82613a46565b604082019050919050565b60006020820190508181036000830152613ad181613a95565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b0e601683612ce3565b9150613b1982613ad8565b602082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613ba0603583612ce3565b9150613bab82613b44565b604082019050919050565b60006020820190508181036000830152613bcf81613b93565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c0c601383612ce3565b9150613c1782613bd6565b602082019050919050565b60006020820190508181036000830152613c3b81613bff565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613c9e603683612ce3565b9150613ca982613c42565b604082019050919050565b60006020820190508181036000830152613ccd81613c91565b9050919050565b6000613cdf82612d8a565b9150613cea83612d8a565b9250828203905081811115613d0257613d01613249565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d64602183612ce3565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613df6602283612ce3565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613e88602683612ce3565b9150613e9382613e2c565b604082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b6000604082019050613ed36000830185612e36565b613ee06020830184612e36565b939250505056fea2646970667358221220c202f7f9fa472dff019681fe9275f83290cf823dbfe65ea84d8ef6ce0071606464736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003b5bb08c0ec0a9b28e01ceeadb1411a7bc2b3cc5
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _taxWallet (address): 0x3B5bb08c0eC0A9b28E01cEeAdb1411A7bc2B3Cc5
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000003b5bb08c0ec0a9b28e01ceeadb1411a7bc2b3cc5
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.