Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 ELY
Holders
200
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 Name:
MyToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract MyToken is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 public tradingStartTimeStamp; uint256 public maxHoldingAmount; uint256 public maxTransactionAmount; uint256 private swapTokensAt; uint256 public buyTax = 5; uint256 public sellTax = 5; address public deployerWallet; address public marketingWallet; address public bankWallet; address public uniswapV2Pair; bool public limited; bool public swapEnabled; bool private swapping; uint256 public transferDelay = 0 seconds; // Added delay for transactions mapping (address => uint256) private lastTransferTimestamp; // Added mapping to keep track of last transfer time per address mapping (address => bool) private _ExcludedFromFees; mapping (address => bool) private _ExcludedFromTransactionAmount; mapping (address => bool) private _blacklisted; error CanOnlySetPairOnce(address); error InvalidPresalePrice(uint256); error ExceedsHoldingAmount(uint256); error ExceedsMaxTransactionAmount(uint256); error TradingHasNotStarted(); error WithdrawFailed(); error TransferTooSoon(); // Added error for transfer delay constructor( uint256 _totalSupply, address _marketingWallet, address _bankWallet ) ERC20("Elysion", "ELY") { _mint(msg.sender, _totalSupply); swapTokensAt = (_totalSupply * 1) / 10000; swapEnabled = true; deployerWallet = msg.sender; marketingWallet = _marketingWallet; bankWallet = _bankWallet; excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(marketingWallet, true); excludeFromFees(bankWallet, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(bankWallet, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); } receive() external payable {} function commenceTrading(address _uniswapV2Pair) external onlyOwner { if (tradingStartTimeStamp != 0) revert CanOnlySetPairOnce(uniswapV2Pair); uniswapV2Pair = _uniswapV2Pair; tradingStartTimeStamp = block.timestamp; } function setLimits( bool _limited, uint256 _maxHoldingAmount, uint256 _maxTransactionAmount ) external onlyOwner { limited = _limited; maxTransactionAmount = _maxTransactionAmount; maxHoldingAmount = _maxHoldingAmount; } function toggleSwapping(bool _bool) external onlyOwner { swapEnabled = _bool; } function excludeFromFees(address _account, bool _excluded) public onlyOwner { _ExcludedFromFees[_account] = _excluded; } function excludeFromMaxTransaction(address _account, bool _excluded) public onlyOwner { _ExcludedFromTransactionAmount[_account] = _excluded; } function withdrawFunds(address payable _address) external onlyOwner { (bool success, ) = _address.call{value: address(this).balance}(""); if (!success) revert WithdrawFailed(); } function withdrawTokens(address payable _address, address _tokenContract) external onlyOwner { uint256 balanceInContract = IERC20(_tokenContract).balanceOf(address(this)); IERC20(_tokenContract).transfer(_address, balanceInContract); } function _getTaxes( uint256 _currentTimestamp ) internal view returns (uint256 _buyTax, uint256 _sellTax, bool _eligibleForTax) { uint256 elapsedTime = _currentTimestamp - tradingStartTimeStamp; bool eligibleForTax = true; if (elapsedTime < 2 minutes) { _buyTax = 30; _sellTax = 30; eligibleForTax = true; } else if (elapsedTime >= 2 minutes && elapsedTime < 5 minutes) { _buyTax = 10; _sellTax = 10; eligibleForTax = true; } else { _buyTax = buyTax; _sellTax = sellTax; } return (_buyTax, _sellTax, eligibleForTax); } function setBuyTax(uint256 _buyTax) external onlyOwner { buyTax = _buyTax; } function setSellTax(uint256 _sellTax) external onlyOwner { sellTax = _sellTax; } function blacklistAddresses(address[] calldata accounts, bool value) external onlyOwner { for (uint i=0; i<accounts.length; i++) { _blacklisted[accounts[i]] = value; } } function isBlacklisted(address account) public view returns(bool) { return _blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(!_blacklisted[from], "Address is blacklisted"); require(!_blacklisted[to], "Address is blacklisted"); if (uniswapV2Pair == address(0) && from != address(0) && from != owner()) revert TradingHasNotStarted(); if( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (limited) { if (from == uniswapV2Pair && !_ExcludedFromTransactionAmount[to]) { if (amount > maxTransactionAmount) revert ExceedsMaxTransactionAmount(amount); if (balanceOf(to) + amount > maxHoldingAmount) revert ExceedsHoldingAmount(amount); } else if (to == uniswapV2Pair && !_ExcludedFromTransactionAmount[from]) { if (amount > maxTransactionAmount) revert ExceedsMaxTransactionAmount(amount); } else if (!_ExcludedFromTransactionAmount[to]) { if (balanceOf(to) + amount > maxHoldingAmount) revert ExceedsHoldingAmount(amount); } } // Added delay check if (from != uniswapV2Pair && to != uniswapV2Pair) { if (block.timestamp - lastTransferTimestamp[from] < transferDelay) revert TransferTooSoon(); lastTransferTimestamp[from] = block.timestamp; } } uint256 contractBalance = balanceOf(address(this)); bool canSwap = contractBalance >= swapTokensAt; if( canSwap && swapEnabled && !swapping && from != uniswapV2Pair && !_ExcludedFromFees[from] && !_ExcludedFromFees[to] ) { swapping = true; _swapBack(contractBalance); swapping = false; } bool takeFee = !swapping; if(_ExcludedFromFees[from] || _ExcludedFromFees[to]) { takeFee = false; } if (takeFee) { (uint256 buyTaxResult, uint256 sellTaxResult, bool eligibleForTax) = _getTaxes(block.timestamp); if (from == uniswapV2Pair && eligibleForTax) { uint256 tax = (amount * buyTaxResult) / 100; super._transfer(from, address(this), tax); amount -= tax; } if (to == uniswapV2Pair && eligibleForTax) { uint256 tax = (amount * sellTaxResult) / 100; super._transfer(from, address(this), tax); amount -= tax; } } super._transfer(from, to, amount); } function _swapBack(uint256 _contractBalance) private { if (_contractBalance == 0) { return; } // Swap tokens for ETH _swapTokensForEth(_contractBalance); uint256 totalEth = address(this).balance; uint256 halfEth = totalEth / 2; // Send 50% of ETH to bank wallet (bool successBank,) = address(bankWallet).call{value: halfEth}(""); require(successBank, "Transfer to bank wallet failed"); // Send 50% of ETH to marketing wallet (bool successMarketing,) = address(marketingWallet).call{value: halfEth}(""); require(successMarketing, "Transfer to marketing wallet failed"); } function _swapTokensForEth(uint256 _tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), _tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _tokenAmount, 0, path, address(this), block.timestamp ); } function setTransferDelay(uint256 newDelay) public onlyOwner { transferDelay = newDelay; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_bankWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"CanOnlySetPairOnce","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExceedsHoldingAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExceedsMaxTransactionAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"InvalidPresalePrice","type":"error"},{"inputs":[],"name":"TradingHasNotStarted","type":"error"},{"inputs":[],"name":"TransferTooSoon","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bankWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"commenceTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"setTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address payable","name":"_address","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"},{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506005600a556005600b5560006010553480156200006757600080fd5b50604051620048943803806200489483398181016040528101906200008d91906200080c565b6040518060400160405280600781526020017f456c7973696f6e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f454c59000000000000000000000000000000000000000000000000000000000081525081600390816200010a919062000ad8565b5080600490816200011c919062000ad8565b5050506200013f620001336200039160201b60201c565b6200039960201b60201c565b6200015133846200045f60201b60201c565b61271060018462000163919062000bee565b6200016f919062000c68565b6009819055506001600f60156101000a81548160ff02191690831515021790555033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000266336001620005cc60201b60201c565b62000279306001620005cc60201b60201c565b620002ae600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005cc60201b60201c565b620002e3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005cc60201b60201c565b62000318600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200063760201b60201c565b6200034d600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200063760201b60201c565b6200036260805160016200063760201b60201c565b620003753360016200063760201b60201c565b620003883060016200063760201b60201c565b50505062000dfe565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c89062000d01565b60405180910390fd5b620004e560008383620006a260201b60201c565b8060026000828254620004f9919062000d23565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005ac919062000d6f565b60405180910390a3620005c860008383620006a760201b60201c565b5050565b620005dc620006ac60201b60201c565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000647620006ac60201b60201c565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b620006bc6200039160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e26200073d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007329062000ddc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b6000819050919050565b62000781816200076c565b81146200078d57600080fd5b50565b600081519050620007a18162000776565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007d482620007a7565b9050919050565b620007e681620007c7565b8114620007f257600080fd5b50565b6000815190506200080681620007db565b92915050565b60008060006060848603121562000828576200082762000767565b5b6000620008388682870162000790565b93505060206200084b86828701620007f5565b92505060406200085e86828701620007f5565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ea57607f821691505b6020821081036200090057620008ff620008a2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200096a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200092b565b6200097686836200092b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009b9620009b3620009ad846200076c565b6200098e565b6200076c565b9050919050565b6000819050919050565b620009d58362000998565b620009ed620009e482620009c0565b84845462000938565b825550505050565b600090565b62000a04620009f5565b62000a11818484620009ca565b505050565b5b8181101562000a395762000a2d600082620009fa565b60018101905062000a17565b5050565b601f82111562000a885762000a528162000906565b62000a5d846200091b565b8101602085101562000a6d578190505b62000a8562000a7c856200091b565b83018262000a16565b50505b505050565b600082821c905092915050565b600062000aad6000198460080262000a8d565b1980831691505092915050565b600062000ac8838362000a9a565b9150826002028217905092915050565b62000ae38262000868565b67ffffffffffffffff81111562000aff5762000afe62000873565b5b62000b0b8254620008d1565b62000b1882828562000a3d565b600060209050601f83116001811462000b50576000841562000b3b578287015190505b62000b47858262000aba565b86555062000bb7565b601f19841662000b608662000906565b60005b8281101562000b8a5784890151825560018201915060208501945060208101905062000b63565b8683101562000baa578489015162000ba6601f89168262000a9a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bfb826200076c565b915062000c08836200076c565b925082820262000c18816200076c565b9150828204841483151762000c325762000c3162000bbf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c75826200076c565b915062000c82836200076c565b92508262000c955762000c9462000c39565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ce9601f8362000ca0565b915062000cf68262000cb1565b602082019050919050565b6000602082019050818103600083015262000d1c8162000cda565b9050919050565b600062000d30826200076c565b915062000d3d836200076c565b925082820190508082111562000d585762000d5762000bbf565b5b92915050565b62000d69816200076c565b82525050565b600060208201905062000d86600083018462000d5e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dc460208362000ca0565b915062000dd18262000d8c565b602082019050919050565b6000602082019050818103600083015262000df78162000db5565b9050919050565b608051613a6562000e2f600039600081816109ee0152818161274b0152818161282c01526128530152613a656000f3fe6080604052600436106102345760003560e01c80637571336a1161012e578063a522ad25116100ab578063d631069c1161006f578063d631069c1461083a578063dc1052e214610865578063dd62ed3e1461088e578063f2fde38b146108cb578063fe575a87146108f45761023b565b8063a522ad2514610755578063a9059cbb1461077e578063c0246668146107bb578063c8c8ebe4146107e4578063cc1776d31461080f5761023b565b80638cd09d50116100f25780638cd09d50146106705780638da5cb5b1461069957806391221716146106c457806395d89b41146106ed578063a457c2d7146107185761023b565b80637571336a1461059d57806375f0a874146105c6578063829118e2146105f1578063860a32ec1461061a57806389f9a1d3146106455761023b565b8063391dbe5f116101bc57806368742da61161018057806368742da6146104cc5780636ddd1713146104f557806370a0823114610520578063715018a61461055d578063756ba9d8146105745761023b565b8063391dbe5f146103e3578063395093511461040e57806349bd5a5e1461044b5780634f7041a5146104765780635d60c7be146104a15761023b565b806318160ddd1161020357806318160ddd146102fe578063239be29a1461032957806323b872dd14610352578063313ce5671461038f57806336e8c9b3146103ba5761023b565b806306fdde0314610240578063095ea7b31461026b5780630a702e8d146102a85780631694505e146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610931565b6040516102629190612983565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612a43565b6109c3565b60405161029f9190612a9e565b60405180910390f35b3480156102b457600080fd5b506102bd6109e6565b6040516102ca9190612ac8565b60405180910390f35b3480156102df57600080fd5b506102e86109ec565b6040516102f59190612b42565b60405180910390f35b34801561030a57600080fd5b50610313610a10565b6040516103209190612ac8565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612b89565b610a1a565b005b34801561035e57600080fd5b5061037960048036038101906103749190612bb6565b610a3f565b6040516103869190612a9e565b60405180910390f35b34801561039b57600080fd5b506103a4610a6e565b6040516103b19190612c25565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612c40565b610a77565b005b3480156103ef57600080fd5b506103f8610a89565b6040516104059190612c7c565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612a43565b610aaf565b6040516104429190612a9e565b60405180910390f35b34801561045757600080fd5b50610460610ae6565b60405161046d9190612c7c565b60405180910390f35b34801561048257600080fd5b5061048b610b0c565b6040516104989190612ac8565b60405180910390f35b3480156104ad57600080fd5b506104b6610b12565b6040516104c39190612c7c565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612cd5565b610b38565b005b34801561050157600080fd5b5061050a610be7565b6040516105179190612a9e565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612d02565b610bfa565b6040516105549190612ac8565b60405180910390f35b34801561056957600080fd5b50610572610c42565b005b34801561058057600080fd5b5061059b60048036038101906105969190612d2f565b610c56565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612d82565b610c8b565b005b3480156105d257600080fd5b506105db610cee565b6040516105e89190612c7c565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612e27565b610d14565b005b34801561062657600080fd5b5061062f610dc1565b60405161063c9190612a9e565b60405180910390f35b34801561065157600080fd5b5061065a610dd4565b6040516106679190612ac8565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612c40565b610dda565b005b3480156106a557600080fd5b506106ae610dec565b6040516106bb9190612c7c565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612d02565b610e16565b005b3480156106f957600080fd5b50610702610ed2565b60405161070f9190612983565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612a43565b610f64565b60405161074c9190612a9e565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190612e87565b610fdb565b005b34801561078a57600080fd5b506107a560048036038101906107a09190612a43565b6110e5565b6040516107b29190612a9e565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190612d82565b611108565b005b3480156107f057600080fd5b506107f961116b565b6040516108069190612ac8565b60405180910390f35b34801561081b57600080fd5b50610824611171565b6040516108319190612ac8565b60405180910390f35b34801561084657600080fd5b5061084f611177565b60405161085c9190612ac8565b60405180910390f35b34801561087157600080fd5b5061088c60048036038101906108879190612c40565b61117d565b005b34801561089a57600080fd5b506108b560048036038101906108b09190612ec7565b61118f565b6040516108c29190612ac8565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed9190612d02565b611216565b005b34801561090057600080fd5b5061091b60048036038101906109169190612d02565b611299565b6040516109289190612a9e565b60405180910390f35b60606003805461094090612f36565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90612f36565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b6000806109ce6112ef565b90506109db8185856112f7565b600191505092915050565b60105481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610a226114c0565b80600f60156101000a81548160ff02191690831515021790555050565b600080610a4a6112ef565b9050610a5785828561153e565b610a628585856115ca565b60019150509392505050565b60006012905090565b610a7f6114c0565b8060108190555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610aba6112ef565b9050610adb818585610acc858961118f565b610ad69190612f96565b6112f7565b600191505092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b406114c0565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610b6690612ffb565b60006040518083038185875af1925050503d8060008114610ba3576040519150601f19603f3d011682016040523d82523d6000602084013e610ba8565b606091505b5050905080610be3576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b600f60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4a6114c0565b610c546000612128565b565b610c5e6114c0565b82600f60146101000a81548160ff0219169083151502179055508060088190555081600781905550505050565b610c936114c0565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d1c6114c0565b60005b83839050811015610dbb578160146000868685818110610d4257610d41613010565b5b9050602002016020810190610d579190612d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610db39061303f565b915050610d1f565b50505050565b600f60149054906101000a900460ff1681565b60075481565b610de26114c0565b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e1e6114c0565b600060065414610e8757600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040517f6916e2b1000000000000000000000000000000000000000000000000000000008152600401610e7e9190612c7c565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260068190555050565b606060048054610ee190612f36565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d90612f36565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b600080610f6f6112ef565b90506000610f7d828661118f565b905083811015610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb9906130f9565b60405180910390fd5b610fcf82868684036112f7565b60019250505092915050565b610fe36114c0565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161101e9190612c7c565b602060405180830381865afa15801561103b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105f919061312e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161109c92919061317c565b6020604051808303816000875af11580156110bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110df91906131ba565b50505050565b6000806110f06112ef565b90506110fd8185856115ca565b600191505092915050565b6111106114c0565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b600b5481565b60065481565b6111856114c0565b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61121e6114c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613259565b60405180910390fd5b61129681612128565b50565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d906132eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061337d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114b39190612ac8565b60405180910390a3505050565b6114c86112ef565b73ffffffffffffffffffffffffffffffffffffffff166114e6610dec565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906133e9565b60405180910390fd5b565b600061154a848461118f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115c457818110156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613455565b60405180910390fd5b6115c384848484036112f7565b5b50505050565b601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906134c1565b60405180910390fd5b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db906134c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561176f5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156117ae575061177e610dec565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156117e5576040517f66eb772300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117ed610dec565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561185b575061182b610dec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118945750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118ce575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118e75750600f60169054906101000a900460ff16155b15611d7757600f60149054906101000a900460ff1615611bfa57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156119a85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a53576008548111156119f457806040517fda27c9500000000000000000000000000000000000000000000000000000000081526004016119eb9190612ac8565b60405180910390fd5b60075481611a0184610bfa565b611a0b9190612f96565b1115611a4e57806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611a459190612ac8565b60405180910390fd5b611bf9565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611afa5750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b4b57600854811115611b4657806040517fda27c950000000000000000000000000000000000000000000000000000000008152600401611b3d9190612ac8565b60405180910390fd5b611bf8565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bf75760075481611ba984610bfa565b611bb39190612f96565b1115611bf657806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611bed9190612ac8565b60405180910390fd5b5b5b5b5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ca65750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611d7657601054601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611cf991906134e1565b1015611d31576040517ff36f0e0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b42601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6000611d8230610bfa565b905060006009548210159050808015611da75750600f60159054906101000a900460ff165b8015611dc05750600f60169054906101000a900460ff16155b8015611e1a5750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611e705750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ec65750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f0b576001600f60166101000a81548160ff021916908315150217905550611eef826121ee565b6000600f60166101000a81548160ff0219169083151502179055505b6000600f60169054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fc15750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611fcb57600090505b8015612115576000806000611fdf426123ba565b925092509250600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561203f5750805b1561207b576000606484896120549190613515565b61205e9190613586565b905061206b8a3083612436565b808861207791906134e1565b9750505b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156120d55750805b15612111576000606483896120ea9190613515565b6120f49190613586565b90506121018a3083612436565b808861210d91906134e1565b9750505b5050505b612120868686612436565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008103156123b757612200816126ac565b600047905060006002826122149190613586565b90506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161225e90612ffb565b60006040518083038185875af1925050503d806000811461229b576040519150601f19603f3d011682016040523d82523d6000602084013e6122a0565b606091505b50509050806122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90613603565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161232c90612ffb565b60006040518083038185875af1925050503d8060008114612369576040519150601f19603f3d011682016040523d82523d6000602084013e61236e565b606091505b50509050806123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990613695565b60405180910390fd5b505050505b50565b600080600080600654856123ce91906134e1565b905060006001905060788210156123f057601e9450601e935060019050612424565b60788210158015612402575061012c82105b1561241857600a9450600a935060019050612423565b600a549450600b5493505b5b84848294509450945050509193909250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249c90613727565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b906137b9565b60405180910390fd5b61251f8383836128e9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061384b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126939190612ac8565b60405180910390a36126a68484846128ee565b50505050565b6000600267ffffffffffffffff8111156126c9576126c861386b565b5b6040519080825280602002602001820160405280156126f75781602001602082028036833780820191505090505b509050308160008151811061270f5761270e613010565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d891906138af565b816001815181106127ec576127eb613010565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612851307f0000000000000000000000000000000000000000000000000000000000000000846112f7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016128b39594939291906139d5565b600060405180830381600087803b1580156128cd57600080fd5b505af11580156128e1573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561292d578082015181840152602081019050612912565b60008484015250505050565b6000601f19601f8301169050919050565b6000612955826128f3565b61295f81856128fe565b935061296f81856020860161290f565b61297881612939565b840191505092915050565b6000602082019050818103600083015261299d818461294a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129da826129af565b9050919050565b6129ea816129cf565b81146129f557600080fd5b50565b600081359050612a07816129e1565b92915050565b6000819050919050565b612a2081612a0d565b8114612a2b57600080fd5b50565b600081359050612a3d81612a17565b92915050565b60008060408385031215612a5a57612a596129a5565b5b6000612a68858286016129f8565b9250506020612a7985828601612a2e565b9150509250929050565b60008115159050919050565b612a9881612a83565b82525050565b6000602082019050612ab36000830184612a8f565b92915050565b612ac281612a0d565b82525050565b6000602082019050612add6000830184612ab9565b92915050565b6000819050919050565b6000612b08612b03612afe846129af565b612ae3565b6129af565b9050919050565b6000612b1a82612aed565b9050919050565b6000612b2c82612b0f565b9050919050565b612b3c81612b21565b82525050565b6000602082019050612b576000830184612b33565b92915050565b612b6681612a83565b8114612b7157600080fd5b50565b600081359050612b8381612b5d565b92915050565b600060208284031215612b9f57612b9e6129a5565b5b6000612bad84828501612b74565b91505092915050565b600080600060608486031215612bcf57612bce6129a5565b5b6000612bdd868287016129f8565b9350506020612bee868287016129f8565b9250506040612bff86828701612a2e565b9150509250925092565b600060ff82169050919050565b612c1f81612c09565b82525050565b6000602082019050612c3a6000830184612c16565b92915050565b600060208284031215612c5657612c556129a5565b5b6000612c6484828501612a2e565b91505092915050565b612c76816129cf565b82525050565b6000602082019050612c916000830184612c6d565b92915050565b6000612ca2826129af565b9050919050565b612cb281612c97565b8114612cbd57600080fd5b50565b600081359050612ccf81612ca9565b92915050565b600060208284031215612ceb57612cea6129a5565b5b6000612cf984828501612cc0565b91505092915050565b600060208284031215612d1857612d176129a5565b5b6000612d26848285016129f8565b91505092915050565b600080600060608486031215612d4857612d476129a5565b5b6000612d5686828701612b74565b9350506020612d6786828701612a2e565b9250506040612d7886828701612a2e565b9150509250925092565b60008060408385031215612d9957612d986129a5565b5b6000612da7858286016129f8565b9250506020612db885828601612b74565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612de757612de6612dc2565b5b8235905067ffffffffffffffff811115612e0457612e03612dc7565b5b602083019150836020820283011115612e2057612e1f612dcc565b5b9250929050565b600080600060408486031215612e4057612e3f6129a5565b5b600084013567ffffffffffffffff811115612e5e57612e5d6129aa565b5b612e6a86828701612dd1565b93509350506020612e7d86828701612b74565b9150509250925092565b60008060408385031215612e9e57612e9d6129a5565b5b6000612eac85828601612cc0565b9250506020612ebd858286016129f8565b9150509250929050565b60008060408385031215612ede57612edd6129a5565b5b6000612eec858286016129f8565b9250506020612efd858286016129f8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f4e57607f821691505b602082108103612f6157612f60612f07565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fa182612a0d565b9150612fac83612a0d565b9250828201905080821115612fc457612fc3612f67565b5b92915050565b600081905092915050565b50565b6000612fe5600083612fca565b9150612ff082612fd5565b600082019050919050565b600061300682612fd8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061304a82612a0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361307c5761307b612f67565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006130e36025836128fe565b91506130ee82613087565b604082019050919050565b60006020820190508181036000830152613112816130d6565b9050919050565b60008151905061312881612a17565b92915050565b600060208284031215613144576131436129a5565b5b600061315284828501613119565b91505092915050565b600061316682612b0f565b9050919050565b6131768161315b565b82525050565b6000604082019050613191600083018561316d565b61319e6020830184612ab9565b9392505050565b6000815190506131b481612b5d565b92915050565b6000602082840312156131d0576131cf6129a5565b5b60006131de848285016131a5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132436026836128fe565b915061324e826131e7565b604082019050919050565b6000602082019050818103600083015261327281613236565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132d56024836128fe565b91506132e082613279565b604082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133676022836128fe565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133d36020836128fe565b91506133de8261339d565b602082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061343f601d836128fe565b915061344a82613409565b602082019050919050565b6000602082019050818103600083015261346e81613432565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b60006134ab6016836128fe565b91506134b682613475565b602082019050919050565b600060208201905081810360008301526134da8161349e565b9050919050565b60006134ec82612a0d565b91506134f783612a0d565b925082820390508181111561350f5761350e612f67565b5b92915050565b600061352082612a0d565b915061352b83612a0d565b925082820261353981612a0d565b915082820484148315176135505761354f612f67565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061359182612a0d565b915061359c83612a0d565b9250826135ac576135ab613557565b5b828204905092915050565b7f5472616e7366657220746f2062616e6b2077616c6c6574206661696c65640000600082015250565b60006135ed601e836128fe565b91506135f8826135b7565b602082019050919050565b6000602082019050818103600083015261361c816135e0565b9050919050565b7f5472616e7366657220746f206d61726b6574696e672077616c6c65742066616960008201527f6c65640000000000000000000000000000000000000000000000000000000000602082015250565b600061367f6023836128fe565b915061368a82613623565b604082019050919050565b600060208201905081810360008301526136ae81613672565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137116025836128fe565b915061371c826136b5565b604082019050919050565b6000602082019050818103600083015261374081613704565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137a36023836128fe565b91506137ae82613747565b604082019050919050565b600060208201905081810360008301526137d281613796565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138356026836128fe565b9150613840826137d9565b604082019050919050565b6000602082019050818103600083015261386481613828565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506138a9816129e1565b92915050565b6000602082840312156138c5576138c46129a5565b5b60006138d38482850161389a565b91505092915050565b6000819050919050565b60006139016138fc6138f7846138dc565b612ae3565b612a0d565b9050919050565b613911816138e6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61394c816129cf565b82525050565b600061395e8383613943565b60208301905092915050565b6000602082019050919050565b600061398282613917565b61398c8185613922565b935061399783613933565b8060005b838110156139c85781516139af8882613952565b97506139ba8361396a565b92505060018101905061399b565b5085935050505092915050565b600060a0820190506139ea6000830188612ab9565b6139f76020830187613908565b8181036040830152613a098186613977565b9050613a186060830185612c6d565b613a256080830184612ab9565b969550505050505056fea26469706673582212207b175be5bdfc1cc915b258b57f34ad7ac0443b5045ff7643bbda6579e3b9a3ee64736f6c6343000813003300000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000a53e1d38e47b16b391ca9d2e67bc9320228451880000000000000000000000003bfc1a75c318bbfc948690d9c372b4c1bc9fcd0c
Deployed Bytecode
0x6080604052600436106102345760003560e01c80637571336a1161012e578063a522ad25116100ab578063d631069c1161006f578063d631069c1461083a578063dc1052e214610865578063dd62ed3e1461088e578063f2fde38b146108cb578063fe575a87146108f45761023b565b8063a522ad2514610755578063a9059cbb1461077e578063c0246668146107bb578063c8c8ebe4146107e4578063cc1776d31461080f5761023b565b80638cd09d50116100f25780638cd09d50146106705780638da5cb5b1461069957806391221716146106c457806395d89b41146106ed578063a457c2d7146107185761023b565b80637571336a1461059d57806375f0a874146105c6578063829118e2146105f1578063860a32ec1461061a57806389f9a1d3146106455761023b565b8063391dbe5f116101bc57806368742da61161018057806368742da6146104cc5780636ddd1713146104f557806370a0823114610520578063715018a61461055d578063756ba9d8146105745761023b565b8063391dbe5f146103e3578063395093511461040e57806349bd5a5e1461044b5780634f7041a5146104765780635d60c7be146104a15761023b565b806318160ddd1161020357806318160ddd146102fe578063239be29a1461032957806323b872dd14610352578063313ce5671461038f57806336e8c9b3146103ba5761023b565b806306fdde0314610240578063095ea7b31461026b5780630a702e8d146102a85780631694505e146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610931565b6040516102629190612983565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612a43565b6109c3565b60405161029f9190612a9e565b60405180910390f35b3480156102b457600080fd5b506102bd6109e6565b6040516102ca9190612ac8565b60405180910390f35b3480156102df57600080fd5b506102e86109ec565b6040516102f59190612b42565b60405180910390f35b34801561030a57600080fd5b50610313610a10565b6040516103209190612ac8565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612b89565b610a1a565b005b34801561035e57600080fd5b5061037960048036038101906103749190612bb6565b610a3f565b6040516103869190612a9e565b60405180910390f35b34801561039b57600080fd5b506103a4610a6e565b6040516103b19190612c25565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612c40565b610a77565b005b3480156103ef57600080fd5b506103f8610a89565b6040516104059190612c7c565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612a43565b610aaf565b6040516104429190612a9e565b60405180910390f35b34801561045757600080fd5b50610460610ae6565b60405161046d9190612c7c565b60405180910390f35b34801561048257600080fd5b5061048b610b0c565b6040516104989190612ac8565b60405180910390f35b3480156104ad57600080fd5b506104b6610b12565b6040516104c39190612c7c565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612cd5565b610b38565b005b34801561050157600080fd5b5061050a610be7565b6040516105179190612a9e565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612d02565b610bfa565b6040516105549190612ac8565b60405180910390f35b34801561056957600080fd5b50610572610c42565b005b34801561058057600080fd5b5061059b60048036038101906105969190612d2f565b610c56565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612d82565b610c8b565b005b3480156105d257600080fd5b506105db610cee565b6040516105e89190612c7c565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612e27565b610d14565b005b34801561062657600080fd5b5061062f610dc1565b60405161063c9190612a9e565b60405180910390f35b34801561065157600080fd5b5061065a610dd4565b6040516106679190612ac8565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612c40565b610dda565b005b3480156106a557600080fd5b506106ae610dec565b6040516106bb9190612c7c565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612d02565b610e16565b005b3480156106f957600080fd5b50610702610ed2565b60405161070f9190612983565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612a43565b610f64565b60405161074c9190612a9e565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190612e87565b610fdb565b005b34801561078a57600080fd5b506107a560048036038101906107a09190612a43565b6110e5565b6040516107b29190612a9e565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190612d82565b611108565b005b3480156107f057600080fd5b506107f961116b565b6040516108069190612ac8565b60405180910390f35b34801561081b57600080fd5b50610824611171565b6040516108319190612ac8565b60405180910390f35b34801561084657600080fd5b5061084f611177565b60405161085c9190612ac8565b60405180910390f35b34801561087157600080fd5b5061088c60048036038101906108879190612c40565b61117d565b005b34801561089a57600080fd5b506108b560048036038101906108b09190612ec7565b61118f565b6040516108c29190612ac8565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed9190612d02565b611216565b005b34801561090057600080fd5b5061091b60048036038101906109169190612d02565b611299565b6040516109289190612a9e565b60405180910390f35b60606003805461094090612f36565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90612f36565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b6000806109ce6112ef565b90506109db8185856112f7565b600191505092915050565b60105481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610a226114c0565b80600f60156101000a81548160ff02191690831515021790555050565b600080610a4a6112ef565b9050610a5785828561153e565b610a628585856115ca565b60019150509392505050565b60006012905090565b610a7f6114c0565b8060108190555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610aba6112ef565b9050610adb818585610acc858961118f565b610ad69190612f96565b6112f7565b600191505092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b406114c0565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610b6690612ffb565b60006040518083038185875af1925050503d8060008114610ba3576040519150601f19603f3d011682016040523d82523d6000602084013e610ba8565b606091505b5050905080610be3576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b600f60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4a6114c0565b610c546000612128565b565b610c5e6114c0565b82600f60146101000a81548160ff0219169083151502179055508060088190555081600781905550505050565b610c936114c0565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d1c6114c0565b60005b83839050811015610dbb578160146000868685818110610d4257610d41613010565b5b9050602002016020810190610d579190612d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610db39061303f565b915050610d1f565b50505050565b600f60149054906101000a900460ff1681565b60075481565b610de26114c0565b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e1e6114c0565b600060065414610e8757600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040517f6916e2b1000000000000000000000000000000000000000000000000000000008152600401610e7e9190612c7c565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260068190555050565b606060048054610ee190612f36565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d90612f36565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b600080610f6f6112ef565b90506000610f7d828661118f565b905083811015610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb9906130f9565b60405180910390fd5b610fcf82868684036112f7565b60019250505092915050565b610fe36114c0565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161101e9190612c7c565b602060405180830381865afa15801561103b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105f919061312e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161109c92919061317c565b6020604051808303816000875af11580156110bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110df91906131ba565b50505050565b6000806110f06112ef565b90506110fd8185856115ca565b600191505092915050565b6111106114c0565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b600b5481565b60065481565b6111856114c0565b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61121e6114c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613259565b60405180910390fd5b61129681612128565b50565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d906132eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061337d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114b39190612ac8565b60405180910390a3505050565b6114c86112ef565b73ffffffffffffffffffffffffffffffffffffffff166114e6610dec565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906133e9565b60405180910390fd5b565b600061154a848461118f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115c457818110156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613455565b60405180910390fd5b6115c384848484036112f7565b5b50505050565b601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906134c1565b60405180910390fd5b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db906134c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561176f5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156117ae575061177e610dec565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156117e5576040517f66eb772300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117ed610dec565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561185b575061182b610dec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118945750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118ce575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118e75750600f60169054906101000a900460ff16155b15611d7757600f60149054906101000a900460ff1615611bfa57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156119a85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a53576008548111156119f457806040517fda27c9500000000000000000000000000000000000000000000000000000000081526004016119eb9190612ac8565b60405180910390fd5b60075481611a0184610bfa565b611a0b9190612f96565b1115611a4e57806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611a459190612ac8565b60405180910390fd5b611bf9565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611afa5750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b4b57600854811115611b4657806040517fda27c950000000000000000000000000000000000000000000000000000000008152600401611b3d9190612ac8565b60405180910390fd5b611bf8565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bf75760075481611ba984610bfa565b611bb39190612f96565b1115611bf657806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611bed9190612ac8565b60405180910390fd5b5b5b5b5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ca65750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611d7657601054601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611cf991906134e1565b1015611d31576040517ff36f0e0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b42601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6000611d8230610bfa565b905060006009548210159050808015611da75750600f60159054906101000a900460ff165b8015611dc05750600f60169054906101000a900460ff16155b8015611e1a5750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611e705750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ec65750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f0b576001600f60166101000a81548160ff021916908315150217905550611eef826121ee565b6000600f60166101000a81548160ff0219169083151502179055505b6000600f60169054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fc15750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611fcb57600090505b8015612115576000806000611fdf426123ba565b925092509250600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561203f5750805b1561207b576000606484896120549190613515565b61205e9190613586565b905061206b8a3083612436565b808861207791906134e1565b9750505b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156120d55750805b15612111576000606483896120ea9190613515565b6120f49190613586565b90506121018a3083612436565b808861210d91906134e1565b9750505b5050505b612120868686612436565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008103156123b757612200816126ac565b600047905060006002826122149190613586565b90506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161225e90612ffb565b60006040518083038185875af1925050503d806000811461229b576040519150601f19603f3d011682016040523d82523d6000602084013e6122a0565b606091505b50509050806122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90613603565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161232c90612ffb565b60006040518083038185875af1925050503d8060008114612369576040519150601f19603f3d011682016040523d82523d6000602084013e61236e565b606091505b50509050806123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990613695565b60405180910390fd5b505050505b50565b600080600080600654856123ce91906134e1565b905060006001905060788210156123f057601e9450601e935060019050612424565b60788210158015612402575061012c82105b1561241857600a9450600a935060019050612423565b600a549450600b5493505b5b84848294509450945050509193909250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249c90613727565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b906137b9565b60405180910390fd5b61251f8383836128e9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061384b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126939190612ac8565b60405180910390a36126a68484846128ee565b50505050565b6000600267ffffffffffffffff8111156126c9576126c861386b565b5b6040519080825280602002602001820160405280156126f75781602001602082028036833780820191505090505b509050308160008151811061270f5761270e613010565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d891906138af565b816001815181106127ec576127eb613010565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612851307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112f7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016128b39594939291906139d5565b600060405180830381600087803b1580156128cd57600080fd5b505af11580156128e1573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561292d578082015181840152602081019050612912565b60008484015250505050565b6000601f19601f8301169050919050565b6000612955826128f3565b61295f81856128fe565b935061296f81856020860161290f565b61297881612939565b840191505092915050565b6000602082019050818103600083015261299d818461294a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129da826129af565b9050919050565b6129ea816129cf565b81146129f557600080fd5b50565b600081359050612a07816129e1565b92915050565b6000819050919050565b612a2081612a0d565b8114612a2b57600080fd5b50565b600081359050612a3d81612a17565b92915050565b60008060408385031215612a5a57612a596129a5565b5b6000612a68858286016129f8565b9250506020612a7985828601612a2e565b9150509250929050565b60008115159050919050565b612a9881612a83565b82525050565b6000602082019050612ab36000830184612a8f565b92915050565b612ac281612a0d565b82525050565b6000602082019050612add6000830184612ab9565b92915050565b6000819050919050565b6000612b08612b03612afe846129af565b612ae3565b6129af565b9050919050565b6000612b1a82612aed565b9050919050565b6000612b2c82612b0f565b9050919050565b612b3c81612b21565b82525050565b6000602082019050612b576000830184612b33565b92915050565b612b6681612a83565b8114612b7157600080fd5b50565b600081359050612b8381612b5d565b92915050565b600060208284031215612b9f57612b9e6129a5565b5b6000612bad84828501612b74565b91505092915050565b600080600060608486031215612bcf57612bce6129a5565b5b6000612bdd868287016129f8565b9350506020612bee868287016129f8565b9250506040612bff86828701612a2e565b9150509250925092565b600060ff82169050919050565b612c1f81612c09565b82525050565b6000602082019050612c3a6000830184612c16565b92915050565b600060208284031215612c5657612c556129a5565b5b6000612c6484828501612a2e565b91505092915050565b612c76816129cf565b82525050565b6000602082019050612c916000830184612c6d565b92915050565b6000612ca2826129af565b9050919050565b612cb281612c97565b8114612cbd57600080fd5b50565b600081359050612ccf81612ca9565b92915050565b600060208284031215612ceb57612cea6129a5565b5b6000612cf984828501612cc0565b91505092915050565b600060208284031215612d1857612d176129a5565b5b6000612d26848285016129f8565b91505092915050565b600080600060608486031215612d4857612d476129a5565b5b6000612d5686828701612b74565b9350506020612d6786828701612a2e565b9250506040612d7886828701612a2e565b9150509250925092565b60008060408385031215612d9957612d986129a5565b5b6000612da7858286016129f8565b9250506020612db885828601612b74565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612de757612de6612dc2565b5b8235905067ffffffffffffffff811115612e0457612e03612dc7565b5b602083019150836020820283011115612e2057612e1f612dcc565b5b9250929050565b600080600060408486031215612e4057612e3f6129a5565b5b600084013567ffffffffffffffff811115612e5e57612e5d6129aa565b5b612e6a86828701612dd1565b93509350506020612e7d86828701612b74565b9150509250925092565b60008060408385031215612e9e57612e9d6129a5565b5b6000612eac85828601612cc0565b9250506020612ebd858286016129f8565b9150509250929050565b60008060408385031215612ede57612edd6129a5565b5b6000612eec858286016129f8565b9250506020612efd858286016129f8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f4e57607f821691505b602082108103612f6157612f60612f07565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fa182612a0d565b9150612fac83612a0d565b9250828201905080821115612fc457612fc3612f67565b5b92915050565b600081905092915050565b50565b6000612fe5600083612fca565b9150612ff082612fd5565b600082019050919050565b600061300682612fd8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061304a82612a0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361307c5761307b612f67565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006130e36025836128fe565b91506130ee82613087565b604082019050919050565b60006020820190508181036000830152613112816130d6565b9050919050565b60008151905061312881612a17565b92915050565b600060208284031215613144576131436129a5565b5b600061315284828501613119565b91505092915050565b600061316682612b0f565b9050919050565b6131768161315b565b82525050565b6000604082019050613191600083018561316d565b61319e6020830184612ab9565b9392505050565b6000815190506131b481612b5d565b92915050565b6000602082840312156131d0576131cf6129a5565b5b60006131de848285016131a5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132436026836128fe565b915061324e826131e7565b604082019050919050565b6000602082019050818103600083015261327281613236565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132d56024836128fe565b91506132e082613279565b604082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133676022836128fe565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133d36020836128fe565b91506133de8261339d565b602082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061343f601d836128fe565b915061344a82613409565b602082019050919050565b6000602082019050818103600083015261346e81613432565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b60006134ab6016836128fe565b91506134b682613475565b602082019050919050565b600060208201905081810360008301526134da8161349e565b9050919050565b60006134ec82612a0d565b91506134f783612a0d565b925082820390508181111561350f5761350e612f67565b5b92915050565b600061352082612a0d565b915061352b83612a0d565b925082820261353981612a0d565b915082820484148315176135505761354f612f67565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061359182612a0d565b915061359c83612a0d565b9250826135ac576135ab613557565b5b828204905092915050565b7f5472616e7366657220746f2062616e6b2077616c6c6574206661696c65640000600082015250565b60006135ed601e836128fe565b91506135f8826135b7565b602082019050919050565b6000602082019050818103600083015261361c816135e0565b9050919050565b7f5472616e7366657220746f206d61726b6574696e672077616c6c65742066616960008201527f6c65640000000000000000000000000000000000000000000000000000000000602082015250565b600061367f6023836128fe565b915061368a82613623565b604082019050919050565b600060208201905081810360008301526136ae81613672565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137116025836128fe565b915061371c826136b5565b604082019050919050565b6000602082019050818103600083015261374081613704565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137a36023836128fe565b91506137ae82613747565b604082019050919050565b600060208201905081810360008301526137d281613796565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138356026836128fe565b9150613840826137d9565b604082019050919050565b6000602082019050818103600083015261386481613828565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506138a9816129e1565b92915050565b6000602082840312156138c5576138c46129a5565b5b60006138d38482850161389a565b91505092915050565b6000819050919050565b60006139016138fc6138f7846138dc565b612ae3565b612a0d565b9050919050565b613911816138e6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61394c816129cf565b82525050565b600061395e8383613943565b60208301905092915050565b6000602082019050919050565b600061398282613917565b61398c8185613922565b935061399783613933565b8060005b838110156139c85781516139af8882613952565b97506139ba8361396a565b92505060018101905061399b565b5085935050505092915050565b600060a0820190506139ea6000830188612ab9565b6139f76020830187613908565b8181036040830152613a098186613977565b9050613a186060830185612c6d565b613a256080830184612ab9565b969550505050505056fea26469706673582212207b175be5bdfc1cc915b258b57f34ad7ac0443b5045ff7643bbda6579e3b9a3ee64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000a53e1d38e47b16b391ca9d2e67bc9320228451880000000000000000000000003bfc1a75c318bbfc948690d9c372b4c1bc9fcd0c
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000
Arg [1] : _marketingWallet (address): 0xa53E1D38e47b16B391Ca9d2e67BC932022845188
Arg [2] : _bankWallet (address): 0x3bFC1A75c318bBFC948690d9C372b4C1BC9fCd0C
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [1] : 000000000000000000000000a53e1d38e47b16b391ca9d2e67bc932022845188
Arg [2] : 0000000000000000000000003bfc1a75c318bbfc948690d9c372b4c1bc9fcd0c
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.