Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 LARPAI
Holders
73
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
50,706,133.470032570687202123 LARPAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DevBotTokenLaunch
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: DevBotTokenLaunch.sol pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract DevBotTokenLaunch is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public rewardsWallet; address public marketingWallet = address(0x8E61717eb9f2C81b072D12FCB4eD1B4f6328C251); address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyRewardsFee; uint256 public buyMarketingFee = 5; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellRewardsFee; uint256 public sellMarketingFee = 5; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public marketingFeeDivisor = 10; uint256 public tokensForRewards; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor( string memory _name, string memory _symbol, uint256 _buyFee, uint256 _buyLiquidityFee, uint256 _sellFee, uint256 _sellLiquidityFee, uint256 _totalSupply, uint256 _maxTransactionAmount, uint256 _maxWallet, address _taxWallet, address _routerAddress ) ERC20(_name, _symbol) { excludeFromMaxTransaction(address(IUniswapV2Router02(_routerAddress)), true); uniswapV2Router = IUniswapV2Router02(_routerAddress); uniswapV2Pair = IUniswapV2Factory(IUniswapV2Router02(_routerAddress).factory()) .createPair(address(this), IUniswapV2Router02(_routerAddress).WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = _totalSupply * 1e18; maxTransactionAmount = _maxTransactionAmount * 10000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = _maxWallet * 10000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet buyRewardsFee = _buyFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyRewardsFee + (buyMarketingFee / marketingFeeDivisor) + buyLiquidityFee + buyDevFee; sellRewardsFee = _sellFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellRewardsFee + (sellMarketingFee / marketingFeeDivisor) + sellLiquidityFee + sellDevFee; rewardsWallet = address(_taxWallet); // set as rewards wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromFees(_taxWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(_taxWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _rewardsFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_rewardsFee + _liquidityFee + _devFee) <= 50, "Max BuyFee 50%"); buyRewardsFee = _rewardsFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyRewardsFee + (buyMarketingFee / marketingFeeDivisor) + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _rewardsFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_rewardsFee + _liquidityFee + _devFee) <= 50, "Max SellFee 50%"); sellRewardsFee = _rewardsFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellRewardsFee + (sellMarketingFee / marketingFeeDivisor) + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForRewards += (fees * sellRewardsFee) / sellTotalFees; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * (sellMarketingFee / marketingFeeDivisor)) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForRewards += (fees * buyRewardsFee) / buyTotalFees; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * (buyMarketingFee / marketingFeeDivisor)) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable rewardsWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForRewards + tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRewards = ethBalance.mul(tokensForRewards).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForRewards - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForRewards = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(rewardsWallet).call{value: address(this).balance}(""); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"address","name":"_routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052738e61717eb9f2c81b072d12fcb4ed1b4f6328c251600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff02191690831515021790555060056011556005601655600a601955348015620000e157600080fd5b506040516200648938038062006489833981810160405281019062000107919062000e56565b8a8a81600390805190602001906200012192919062000b69565b5080600490805190602001906200013a92919062000b69565b5050506200015d620001516200062960201b60201c565b6200063160201b60201c565b62000170816001620006f760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000fa1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a4919062000fa1565b6040518363ffffffff1660e01b8152600401620002c392919062000fe4565b6020604051808303816000875af1158015620002e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000309919062000fa1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035160a0516001620006f760201b60201c565b6200036660a0516001620007e160201b60201c565b6000670de0b6b3a7640000866200037e919062001040565b9050670de0b6b3a76400006127108662000399919062001040565b620003a5919062001040565b600981905550670de0b6b3a764000061271085620003c4919062001040565b620003d0919062001040565b600b81905550612710602882620003e8919062001040565b620003f49190620010d0565b600a819055508960108190555088601281905550601354601254601954601154620004209190620010d0565b6010546200042f919062001108565b6200043b919062001108565b62000447919062001108565b600f819055508760158190555086601781905550601854601754601954601654620004739190620010d0565b60155462000482919062001108565b6200048e919062001108565b6200049a919062001108565b60148190555082600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000503620004f56200088260201b60201c565b6001620008ac60201b60201c565b62000516306001620008ac60201b60201c565b6200052b61dead6001620008ac60201b60201c565b62000560600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008ac60201b60201c565b62000573836001620008ac60201b60201c565b62000595620005876200088260201b60201c565b6001620006f760201b60201c565b620005a8306001620006f760201b60201c565b620005bd61dead6001620006f760201b60201c565b620005f2600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006f760201b60201c565b62000605836001620006f760201b60201c565b620006173382620009e660201b60201c565b50505050505050505050505062001327565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007076200062960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072d6200088260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077d90620011c6565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008bc6200062960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e26200088260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093290620011c6565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009da919062001205565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a509062001272565b60405180910390fd5b62000a6d6000838362000b5f60201b60201c565b806002600082825462000a81919062001108565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad8919062001108565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3f9190620012a5565b60405180910390a362000b5b6000838362000b6460201b60201c565b5050565b505050565b505050565b82805462000b7790620012f1565b90600052602060002090601f01602090048101928262000b9b576000855562000be7565b82601f1062000bb657805160ff191683800117855562000be7565b8280016001018555821562000be7579182015b8281111562000be657825182559160200191906001019062000bc9565b5b50905062000bf6919062000bfa565b5090565b5b8082111562000c1557600081600090555060010162000bfb565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c828262000c37565b810181811067ffffffffffffffff8211171562000ca45762000ca362000c48565b5b80604052505050565b600062000cb962000c19565b905062000cc7828262000c77565b919050565b600067ffffffffffffffff82111562000cea5762000ce962000c48565b5b62000cf58262000c37565b9050602081019050919050565b60005b8381101562000d2257808201518184015260208101905062000d05565b8381111562000d32576000848401525b50505050565b600062000d4f62000d498462000ccc565b62000cad565b90508281526020810184848401111562000d6e5762000d6d62000c32565b5b62000d7b84828562000d02565b509392505050565b600082601f83011262000d9b5762000d9a62000c2d565b5b815162000dad84826020860162000d38565b91505092915050565b6000819050919050565b62000dcb8162000db6565b811462000dd757600080fd5b50565b60008151905062000deb8162000dc0565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e1e8262000df1565b9050919050565b62000e308162000e11565b811462000e3c57600080fd5b50565b60008151905062000e508162000e25565b92915050565b60008060008060008060008060008060006101608c8e03121562000e7f5762000e7e62000c23565b5b60008c015167ffffffffffffffff81111562000ea05762000e9f62000c28565b5b62000eae8e828f0162000d83565b9b505060208c015167ffffffffffffffff81111562000ed25762000ed162000c28565b5b62000ee08e828f0162000d83565b9a5050604062000ef38e828f0162000dda565b995050606062000f068e828f0162000dda565b985050608062000f198e828f0162000dda565b97505060a062000f2c8e828f0162000dda565b96505060c062000f3f8e828f0162000dda565b95505060e062000f528e828f0162000dda565b94505061010062000f668e828f0162000dda565b93505061012062000f7a8e828f0162000e3f565b92505061014062000f8e8e828f0162000e3f565b9150509295989b509295989b9093969950565b60006020828403121562000fba5762000fb962000c23565b5b600062000fca8482850162000e3f565b91505092915050565b62000fde8162000e11565b82525050565b600060408201905062000ffb600083018562000fd3565b6200100a602083018462000fd3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200104d8262000db6565b91506200105a8362000db6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001096576200109562001011565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010dd8262000db6565b9150620010ea8362000db6565b925082620010fd57620010fc620010a1565b5b828204905092915050565b6000620011158262000db6565b9150620011228362000db6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200115a576200115962001011565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011ae60208362001165565b9150620011bb8262001176565b602082019050919050565b60006020820190508181036000830152620011e1816200119f565b9050919050565b60008115159050919050565b620011ff81620011e8565b82525050565b60006020820190506200121c6000830184620011f4565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200125a601f8362001165565b9150620012678262001222565b602082019050919050565b600060208201905081810360008301526200128d816200124b565b9050919050565b6200129f8162000db6565b82525050565b6000602082019050620012bc600083018462001294565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200130a57607f821691505b60208210811415620013215762001320620012c2565b5b50919050565b60805160a0516151046200138560003960008181611173015281816118960152612727015260008181610e77015281816126cf0152818161391d015281816139fe01528181613a2501528181613ac10152613ae801526151046000f3fe60806040526004361061037a5760003560e01c80638ea5220f116101d1578063c17b5b8c11610102578063e2b511bb116100a0578063f2fde38b1161006f578063f2fde38b14610cfb578063f54afa7814610d24578063f637434214610d4f578063f8b45b0514610d7a57610381565b8063e2b511bb14610c4f578063e2f4560514610c7a578063e884f26014610ca5578063f11a24d314610cd057610381565b8063c8c8ebe4116100dc578063c8c8ebe414610b7f578063d257b34f14610baa578063d85ba06314610be7578063dd62ed3e14610c1257610381565b8063c17b5b8c14610b02578063c18bc19514610b2b578063c876d0b914610b5457610381565b8063a0d82dc51161016f578063b62496f511610149578063b62496f514610a46578063bb8d513114610a83578063bbc0c74214610aae578063c024666814610ad957610381565b8063a0d82dc5146109a1578063a457c2d7146109cc578063a9059cbb14610a0957610381565b806395d89b41116101ab57806395d89b41146108f75780639a7a23d6146109225780639c3b4fdc1461094b5780639fccce321461097657610381565b80638ea5220f1461087857806392136913146108a3578063924de9b7146108ce57610381565b80634fbee193116102ab5780637571336a116102495780637bce5a04116102235780637bce5a04146107e25780638095d5641461080d5780638a8c523c146108365780638da5cb5b1461084d57610381565b80637571336a1461076357806375f0a8741461078c57806377a3b609146107b757610381565b80636ddd1713116102855780636ddd1713146106b957806370a08231146106e4578063715018a614610721578063751039fc1461073857610381565b80634fbee193146106265780635b35f9c9146106635780636a486a8e1461068e57610381565b8063203e727e11610318578063313ce567116102f2578063313ce56714610568578063395093511461059357806349bd5a5e146105d05780634a62bb65146105fb57610381565b8063203e727e146104d757806323b872dd1461050057806327c8f8351461053d57610381565b80631694505e116103545780631694505e1461042b57806318160ddd146104565780631a8145bb146104815780631f3fed8f146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610da5565b6040516103a89190613c50565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613d0b565b610e37565b6040516103e59190613d66565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613d81565b610e55565b6040516104229190613d66565b60405180910390f35b34801561043757600080fd5b50610440610e75565b60405161044d9190613e0d565b60405180910390f35b34801561046257600080fd5b5061046b610e99565b6040516104789190613e37565b60405180910390f35b34801561048d57600080fd5b50610496610ea3565b6040516104a39190613e37565b60405180910390f35b3480156104b857600080fd5b506104c1610ea9565b6040516104ce9190613e37565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613e52565b610eaf565b005b34801561050c57600080fd5b5061052760048036038101906105229190613e7f565b610fbe565b6040516105349190613d66565b60405180910390f35b34801561054957600080fd5b506105526110b6565b60405161055f9190613ee1565b60405180910390f35b34801561057457600080fd5b5061057d6110bc565b60405161058a9190613f18565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613d0b565b6110c5565b6040516105c79190613d66565b60405180910390f35b3480156105dc57600080fd5b506105e5611171565b6040516105f29190613ee1565b60405180910390f35b34801561060757600080fd5b50610610611195565b60405161061d9190613d66565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613d81565b6111a8565b60405161065a9190613d66565b60405180910390f35b34801561066f57600080fd5b506106786111fe565b6040516106859190613ee1565b60405180910390f35b34801561069a57600080fd5b506106a3611224565b6040516106b09190613e37565b60405180910390f35b3480156106c557600080fd5b506106ce61122a565b6040516106db9190613d66565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613d81565b61123d565b6040516107189190613e37565b60405180910390f35b34801561072d57600080fd5b50610736611285565b005b34801561074457600080fd5b5061074d61130d565b60405161075a9190613d66565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613f5f565b6113ad565b005b34801561079857600080fd5b506107a1611484565b6040516107ae9190613ee1565b60405180910390f35b3480156107c357600080fd5b506107cc6114aa565b6040516107d99190613e37565b60405180910390f35b3480156107ee57600080fd5b506107f76114b0565b6040516108049190613e37565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613f9f565b6114b6565b005b34801561084257600080fd5b5061084b6115e3565b005b34801561085957600080fd5b50610862611697565b60405161086f9190613ee1565b60405180910390f35b34801561088457600080fd5b5061088d6116c1565b60405161089a9190613ee1565b60405180910390f35b3480156108af57600080fd5b506108b86116e7565b6040516108c59190613e37565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f09190613ff2565b6116ed565b005b34801561090357600080fd5b5061090c611786565b6040516109199190613c50565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190613f5f565b611818565b005b34801561095757600080fd5b50610960611931565b60405161096d9190613e37565b60405180910390f35b34801561098257600080fd5b5061098b611937565b6040516109989190613e37565b60405180910390f35b3480156109ad57600080fd5b506109b661193d565b6040516109c39190613e37565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee9190613d0b565b611943565b604051610a009190613d66565b60405180910390f35b348015610a1557600080fd5b50610a306004803603810190610a2b9190613d0b565b611a2e565b604051610a3d9190613d66565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613d81565b611a4c565b604051610a7a9190613d66565b60405180910390f35b348015610a8f57600080fd5b50610a98611a6b565b604051610aa59190613e37565b60405180910390f35b348015610aba57600080fd5b50610ac3611a71565b604051610ad09190613d66565b60405180910390f35b348015610ae557600080fd5b50610b006004803603810190610afb9190613f5f565b611a84565b005b348015610b0e57600080fd5b50610b296004803603810190610b249190613f9f565b611ba9565b005b348015610b3757600080fd5b50610b526004803603810190610b4d9190613e52565b611cd6565b005b348015610b6057600080fd5b50610b69611de5565b604051610b769190613d66565b60405180910390f35b348015610b8b57600080fd5b50610b94611df8565b604051610ba19190613e37565b60405180910390f35b348015610bb657600080fd5b50610bd16004803603810190610bcc9190613e52565b611dfe565b604051610bde9190613d66565b60405180910390f35b348015610bf357600080fd5b50610bfc611f53565b604051610c099190613e37565b60405180910390f35b348015610c1e57600080fd5b50610c396004803603810190610c34919061401f565b611f59565b604051610c469190613e37565b60405180910390f35b348015610c5b57600080fd5b50610c64611fe0565b604051610c719190613e37565b60405180910390f35b348015610c8657600080fd5b50610c8f611fe6565b604051610c9c9190613e37565b60405180910390f35b348015610cb157600080fd5b50610cba611fec565b604051610cc79190613d66565b60405180910390f35b348015610cdc57600080fd5b50610ce561208c565b604051610cf29190613e37565b60405180910390f35b348015610d0757600080fd5b50610d226004803603810190610d1d9190613d81565b612092565b005b348015610d3057600080fd5b50610d3961218a565b604051610d469190613e37565b60405180910390f35b348015610d5b57600080fd5b50610d64612190565b604051610d719190613e37565b60405180910390f35b348015610d8657600080fd5b50610d8f612196565b604051610d9c9190613e37565b60405180910390f35b606060038054610db49061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054610de09061408e565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b5050505050905090565b6000610e4b610e4461219c565b84846121a4565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601c5481565b601b5481565b610eb761219c565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611697565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f229061410c565b60405180910390fd5b670de0b6b3a76400006103e86005610f41610e99565b610f4b919061415b565b610f5591906141e4565b610f5f91906141e4565b811015610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890614287565b60405180910390fd5b670de0b6b3a764000081610fb5919061415b565b60098190555050565b6000610fcb84848461236f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101661219c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90614319565b60405180910390fd5b6110aa856110a261219c565b8584036121a4565b60019150509392505050565b61dead81565b60006012905090565b60006111676110d261219c565b8484600160006110e061219c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111629190614339565b6121a4565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128d61219c565b73ffffffffffffffffffffffffffffffffffffffff166112ab611697565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061410c565b60405180910390fd5b61130b6000613089565b565b600061131761219c565b73ffffffffffffffffffffffffffffffffffffffff16611335611697565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113829061410c565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6113b561219c565b73ffffffffffffffffffffffffffffffffffffffff166113d3611697565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061410c565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60115481565b6114be61219c565b73ffffffffffffffffffffffffffffffffffffffff166114dc611697565b73ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115299061410c565b60405180910390fd5b60328183856115419190614339565b61154b9190614339565b111561158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906143db565b60405180910390fd5b8260108190555081601281905550806013819055506013546012546019546011546115b791906141e4565b6010546115c49190614339565b6115ce9190614339565b6115d89190614339565b600f81905550505050565b6115eb61219c565b73ffffffffffffffffffffffffffffffffffffffff16611609611697565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061410c565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116f561219c565b73ffffffffffffffffffffffffffffffffffffffff16611713611697565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061410c565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546117959061408e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c19061408e565b801561180e5780601f106117e35761010080835404028352916020019161180e565b820191906000526020600020905b8154815290600101906020018083116117f157829003601f168201915b5050505050905090565b61182061219c565b73ffffffffffffffffffffffffffffffffffffffff1661183e611697565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061410c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a9061446d565b60405180910390fd5b61192d828261314f565b5050565b60135481565b601d5481565b60185481565b6000806001600061195261219c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a06906144ff565b60405180910390fd5b611a23611a1a61219c565b858584036121a4565b600191505092915050565b6000611a42611a3b61219c565b848461236f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b60155481565b600c60019054906101000a900460ff1681565b611a8c61219c565b73ffffffffffffffffffffffffffffffffffffffff16611aaa611697565b73ffffffffffffffffffffffffffffffffffffffff1614611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af79061410c565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b9d9190613d66565b60405180910390a25050565b611bb161219c565b73ffffffffffffffffffffffffffffffffffffffff16611bcf611697565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c9061410c565b60405180910390fd5b6032818385611c349190614339565b611c3e9190614339565b1115611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c769061456b565b60405180910390fd5b826015819055508160178190555080601881905550601854601754601954601654611caa91906141e4565b601554611cb79190614339565b611cc19190614339565b611ccb9190614339565b601481905550505050565b611cde61219c565b73ffffffffffffffffffffffffffffffffffffffff16611cfc611697565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061410c565b60405180910390fd5b670de0b6b3a76400006103e86005611d68610e99565b611d72919061415b565b611d7c91906141e4565b611d8691906141e4565b811015611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf906145fd565b60405180910390fd5b670de0b6b3a764000081611ddc919061415b565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611e0861219c565b73ffffffffffffffffffffffffffffffffffffffff16611e26611697565b73ffffffffffffffffffffffffffffffffffffffff1614611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061410c565b60405180910390fd5b620186a06001611e8a610e99565b611e94919061415b565b611e9e91906141e4565b821015611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed79061468f565b60405180910390fd5b6103e86005611eed610e99565b611ef7919061415b565b611f0191906141e4565b821115611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a90614721565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60195481565b600a5481565b6000611ff661219c565b73ffffffffffffffffffffffffffffffffffffffff16612014611697565b73ffffffffffffffffffffffffffffffffffffffff161461206a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120619061410c565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61209a61219c565b73ffffffffffffffffffffffffffffffffffffffff166120b8611697565b73ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121059061410c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612175906147b3565b60405180910390fd5b61218781613089565b50565b601a5481565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614845565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b906148d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123629190613e37565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d690614969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612446906149fb565b60405180910390fd5b600081141561246957612464838360006131f0565b613084565b600c60009054906101000a900460ff1615612b2c57612486611697565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124f457506124c4611697565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612567575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125805750600560149054906101000a900460ff16155b15612b2b57600c60019054906101000a900460ff1661267a57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061263a5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614a67565b60405180910390fd5b5b600e60009054906101000a900460ff161561284257612697611697565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561271e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561277657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128415743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614b1f565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128e55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298c5760095481111561292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690614bb1565b60405180910390fd5b600b5461293b8361123d565b826129469190614339565b1115612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e90614c1d565b60405180910390fd5b612b2a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a2f5750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a7e57600954811115612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090614caf565b60405180910390fd5b612b29565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b2857600b54612adb8361123d565b82612ae69190614339565b1115612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90614c1d565b60405180910390fd5b5b5b5b5b5b6000612b373061123d565b90506000600a548210159050808015612b5c5750600c60029054906101000a900460ff165b8015612b755750600560149054906101000a900460ff16155b8015612bcb5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c215750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c775750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cbb576001600560146101000a81548160ff021916908315150217905550612c9f613471565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d715750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d7b57600090505b6000811561307457602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dde57506000601454115b15612eeb57612e0b6064612dfd6014548861383290919063ffffffff16565b61384890919063ffffffff16565b905060145460155482612e1e919061415b565b612e2891906141e4565b601a6000828254612e399190614339565b9250508190555060145460175482612e51919061415b565b612e5b91906141e4565b601c6000828254612e6c9190614339565b9250508190555060145460185482612e84919061415b565b612e8e91906141e4565b601d6000828254612e9f9190614339565b92505081905550601454601954601654612eb991906141e4565b82612ec4919061415b565b612ece91906141e4565b601b6000828254612edf9190614339565b92505081905550613050565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f4657506000600f54115b1561304f57612f736064612f65600f548861383290919063ffffffff16565b61384890919063ffffffff16565b9050600f5460105482612f86919061415b565b612f9091906141e4565b601a6000828254612fa19190614339565b92505081905550600f5460125482612fb9919061415b565b612fc391906141e4565b601c6000828254612fd49190614339565b92505081905550600f5460135482612fec919061415b565b612ff691906141e4565b601d60008282546130079190614339565b92505081905550600f5460195460115461302191906141e4565b8261302c919061415b565b61303691906141e4565b601b60008282546130479190614339565b925050819055505b5b6000811115613065576130648730836131f0565b5b80856130719190614ccf565b94505b61307f8787876131f0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325790614969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c7906149fb565b60405180910390fd5b6132db83838361385e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335890614d75565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f49190614339565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134589190613e37565b60405180910390a361346b848484613863565b50505050565b600061347c3061123d565b90506000601d54601b54601c54601a546134969190614339565b6134a09190614339565b6134aa9190614339565b90506000808314806134bc5750600082145b156134c957505050613830565b6014600a546134d8919061415b565b8311156134f1576014600a546134ee919061415b565b92505b6000600283601c5486613504919061415b565b61350e91906141e4565b61351891906141e4565b9050600061352f828661386890919063ffffffff16565b9050600047905061353f8261387e565b6000613554824761386890919063ffffffff16565b9050600061357f87613571601a548561383290919063ffffffff16565b61384890919063ffffffff16565b905060006135aa8861359c601b548661383290919063ffffffff16565b61384890919063ffffffff16565b905060006135d5896135c7601d548761383290919063ffffffff16565b61384890919063ffffffff16565b90506000818385876135e79190614ccf565b6135f19190614ccf565b6135fb9190614ccf565b90506000601c819055506000601a819055506000601b819055506000601d81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161366390614dc6565b60006040518083038185875af1925050503d80600081146136a0576040519150601f19603f3d011682016040523d82523d6000602084013e6136a5565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136f190614dc6565b60006040518083038185875af1925050503d806000811461372e576040519150601f19603f3d011682016040523d82523d6000602084013e613733565b606091505b5050809950506000881180156137495750600081115b15613796576137588882613abb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c5460405161378d93929190614ddb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137dc90614dc6565b60006040518083038185875af1925050503d8060008114613819576040519150601f19603f3d011682016040523d82523d6000602084013e61381e565b606091505b50508099505050505050505050505050505b565b60008183613840919061415b565b905092915050565b6000818361385691906141e4565b905092915050565b505050565b505050565b600081836138769190614ccf565b905092915050565b6000600267ffffffffffffffff81111561389b5761389a614e12565b5b6040519080825280602002602001820160405280156138c95781602001602082028036833780820191505090505b50905030816000815181106138e1576138e0614e41565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139aa9190614e85565b816001815181106139be576139bd614e41565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a23307f0000000000000000000000000000000000000000000000000000000000000000846121a4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a85959493929190614fab565b600060405180830381600087803b158015613a9f57600080fd5b505af1158015613ab3573d6000803e3d6000fd5b505050505050565b613ae6307f0000000000000000000000000000000000000000000000000000000000000000846121a4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b6d96959493929190615005565b60606040518083038185885af1158015613b8b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613bb0919061507b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bf1578082015181840152602081019050613bd6565b83811115613c00576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c2282613bb7565b613c2c8185613bc2565b9350613c3c818560208601613bd3565b613c4581613c06565b840191505092915050565b60006020820190508181036000830152613c6a8184613c17565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ca282613c77565b9050919050565b613cb281613c97565b8114613cbd57600080fd5b50565b600081359050613ccf81613ca9565b92915050565b6000819050919050565b613ce881613cd5565b8114613cf357600080fd5b50565b600081359050613d0581613cdf565b92915050565b60008060408385031215613d2257613d21613c72565b5b6000613d3085828601613cc0565b9250506020613d4185828601613cf6565b9150509250929050565b60008115159050919050565b613d6081613d4b565b82525050565b6000602082019050613d7b6000830184613d57565b92915050565b600060208284031215613d9757613d96613c72565b5b6000613da584828501613cc0565b91505092915050565b6000819050919050565b6000613dd3613dce613dc984613c77565b613dae565b613c77565b9050919050565b6000613de582613db8565b9050919050565b6000613df782613dda565b9050919050565b613e0781613dec565b82525050565b6000602082019050613e226000830184613dfe565b92915050565b613e3181613cd5565b82525050565b6000602082019050613e4c6000830184613e28565b92915050565b600060208284031215613e6857613e67613c72565b5b6000613e7684828501613cf6565b91505092915050565b600080600060608486031215613e9857613e97613c72565b5b6000613ea686828701613cc0565b9350506020613eb786828701613cc0565b9250506040613ec886828701613cf6565b9150509250925092565b613edb81613c97565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060ff82169050919050565b613f1281613efc565b82525050565b6000602082019050613f2d6000830184613f09565b92915050565b613f3c81613d4b565b8114613f4757600080fd5b50565b600081359050613f5981613f33565b92915050565b60008060408385031215613f7657613f75613c72565b5b6000613f8485828601613cc0565b9250506020613f9585828601613f4a565b9150509250929050565b600080600060608486031215613fb857613fb7613c72565b5b6000613fc686828701613cf6565b9350506020613fd786828701613cf6565b9250506040613fe886828701613cf6565b9150509250925092565b60006020828403121561400857614007613c72565b5b600061401684828501613f4a565b91505092915050565b6000806040838503121561403657614035613c72565b5b600061404485828601613cc0565b925050602061405585828601613cc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a657607f821691505b602082108114156140ba576140b961405f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140f6602083613bc2565b9150614101826140c0565b602082019050919050565b60006020820190508181036000830152614125816140e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061416682613cd5565b915061417183613cd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141aa576141a961412c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ef82613cd5565b91506141fa83613cd5565b92508261420a576142096141b5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614271602f83613bc2565b915061427c82614215565b604082019050919050565b600060208201905081810360008301526142a081614264565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614303602883613bc2565b915061430e826142a7565b604082019050919050565b60006020820190508181036000830152614332816142f6565b9050919050565b600061434482613cd5565b915061434f83613cd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143845761438361412c565b5b828201905092915050565b7f4d61782042757946656520353025000000000000000000000000000000000000600082015250565b60006143c5600e83613bc2565b91506143d08261438f565b602082019050919050565b600060208201905081810360008301526143f4816143b8565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614457603983613bc2565b9150614462826143fb565b604082019050919050565b600060208201905081810360008301526144868161444a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144e9602583613bc2565b91506144f48261448d565b604082019050919050565b60006020820190508181036000830152614518816144dc565b9050919050565b7f4d61782053656c6c466565203530250000000000000000000000000000000000600082015250565b6000614555600f83613bc2565b91506145608261451f565b602082019050919050565b6000602082019050818103600083015261458481614548565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006145e7602483613bc2565b91506145f28261458b565b604082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614679603583613bc2565b91506146848261461d565b604082019050919050565b600060208201905081810360008301526146a88161466c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061470b603483613bc2565b9150614716826146af565b604082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061479d602683613bc2565b91506147a882614741565b604082019050919050565b600060208201905081810360008301526147cc81614790565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061482f602483613bc2565b915061483a826147d3565b604082019050919050565b6000602082019050818103600083015261485e81614822565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148c1602283613bc2565b91506148cc82614865565b604082019050919050565b600060208201905081810360008301526148f0816148b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614953602583613bc2565b915061495e826148f7565b604082019050919050565b6000602082019050818103600083015261498281614946565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149e5602383613bc2565b91506149f082614989565b604082019050919050565b60006020820190508181036000830152614a14816149d8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a51601683613bc2565b9150614a5c82614a1b565b602082019050919050565b60006020820190508181036000830152614a8081614a44565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614b09604983613bc2565b9150614b1482614a87565b606082019050919050565b60006020820190508181036000830152614b3881614afc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b9b603583613bc2565b9150614ba682614b3f565b604082019050919050565b60006020820190508181036000830152614bca81614b8e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c07601383613bc2565b9150614c1282614bd1565b602082019050919050565b60006020820190508181036000830152614c3681614bfa565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c99603683613bc2565b9150614ca482614c3d565b604082019050919050565b60006020820190508181036000830152614cc881614c8c565b9050919050565b6000614cda82613cd5565b9150614ce583613cd5565b925082821015614cf857614cf761412c565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d5f602683613bc2565b9150614d6a82614d03565b604082019050919050565b60006020820190508181036000830152614d8e81614d52565b9050919050565b600081905092915050565b50565b6000614db0600083614d95565b9150614dbb82614da0565b600082019050919050565b6000614dd182614da3565b9150819050919050565b6000606082019050614df06000830186613e28565b614dfd6020830185613e28565b614e0a6040830184613e28565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e7f81613ca9565b92915050565b600060208284031215614e9b57614e9a613c72565b5b6000614ea984828501614e70565b91505092915050565b6000819050919050565b6000614ed7614ed2614ecd84614eb2565b613dae565b613cd5565b9050919050565b614ee781614ebc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f2281613c97565b82525050565b6000614f348383614f19565b60208301905092915050565b6000602082019050919050565b6000614f5882614eed565b614f628185614ef8565b9350614f6d83614f09565b8060005b83811015614f9e578151614f858882614f28565b9750614f9083614f40565b925050600181019050614f71565b5085935050505092915050565b600060a082019050614fc06000830188613e28565b614fcd6020830187614ede565b8181036040830152614fdf8186614f4d565b9050614fee6060830185613ed2565b614ffb6080830184613e28565b9695505050505050565b600060c08201905061501a6000830189613ed2565b6150276020830188613e28565b6150346040830187614ede565b6150416060830186614ede565b61504e6080830185613ed2565b61505b60a0830184613e28565b979650505050505050565b60008151905061507581613cdf565b92915050565b60008060006060848603121561509457615093613c72565b5b60006150a286828701615066565b93505060206150b386828701615066565b92505060406150c486828701615066565b915050925092509256fea2646970667358221220980a8cee63d8eb5a21cdaed05e8614aca422bb2c8d18c0c0a32f8091d8d24ae864736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a4c0535fbee28605d9ddfa2e26e3e23a9b3389570000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000001b4c69666527732061205265616c205061696e2041696e2774204974000000000000000000000000000000000000000000000000000000000000000000000000064c41525041490000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061037a5760003560e01c80638ea5220f116101d1578063c17b5b8c11610102578063e2b511bb116100a0578063f2fde38b1161006f578063f2fde38b14610cfb578063f54afa7814610d24578063f637434214610d4f578063f8b45b0514610d7a57610381565b8063e2b511bb14610c4f578063e2f4560514610c7a578063e884f26014610ca5578063f11a24d314610cd057610381565b8063c8c8ebe4116100dc578063c8c8ebe414610b7f578063d257b34f14610baa578063d85ba06314610be7578063dd62ed3e14610c1257610381565b8063c17b5b8c14610b02578063c18bc19514610b2b578063c876d0b914610b5457610381565b8063a0d82dc51161016f578063b62496f511610149578063b62496f514610a46578063bb8d513114610a83578063bbc0c74214610aae578063c024666814610ad957610381565b8063a0d82dc5146109a1578063a457c2d7146109cc578063a9059cbb14610a0957610381565b806395d89b41116101ab57806395d89b41146108f75780639a7a23d6146109225780639c3b4fdc1461094b5780639fccce321461097657610381565b80638ea5220f1461087857806392136913146108a3578063924de9b7146108ce57610381565b80634fbee193116102ab5780637571336a116102495780637bce5a04116102235780637bce5a04146107e25780638095d5641461080d5780638a8c523c146108365780638da5cb5b1461084d57610381565b80637571336a1461076357806375f0a8741461078c57806377a3b609146107b757610381565b80636ddd1713116102855780636ddd1713146106b957806370a08231146106e4578063715018a614610721578063751039fc1461073857610381565b80634fbee193146106265780635b35f9c9146106635780636a486a8e1461068e57610381565b8063203e727e11610318578063313ce567116102f2578063313ce56714610568578063395093511461059357806349bd5a5e146105d05780634a62bb65146105fb57610381565b8063203e727e146104d757806323b872dd1461050057806327c8f8351461053d57610381565b80631694505e116103545780631694505e1461042b57806318160ddd146104565780631a8145bb146104815780631f3fed8f146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610da5565b6040516103a89190613c50565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613d0b565b610e37565b6040516103e59190613d66565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613d81565b610e55565b6040516104229190613d66565b60405180910390f35b34801561043757600080fd5b50610440610e75565b60405161044d9190613e0d565b60405180910390f35b34801561046257600080fd5b5061046b610e99565b6040516104789190613e37565b60405180910390f35b34801561048d57600080fd5b50610496610ea3565b6040516104a39190613e37565b60405180910390f35b3480156104b857600080fd5b506104c1610ea9565b6040516104ce9190613e37565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613e52565b610eaf565b005b34801561050c57600080fd5b5061052760048036038101906105229190613e7f565b610fbe565b6040516105349190613d66565b60405180910390f35b34801561054957600080fd5b506105526110b6565b60405161055f9190613ee1565b60405180910390f35b34801561057457600080fd5b5061057d6110bc565b60405161058a9190613f18565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613d0b565b6110c5565b6040516105c79190613d66565b60405180910390f35b3480156105dc57600080fd5b506105e5611171565b6040516105f29190613ee1565b60405180910390f35b34801561060757600080fd5b50610610611195565b60405161061d9190613d66565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613d81565b6111a8565b60405161065a9190613d66565b60405180910390f35b34801561066f57600080fd5b506106786111fe565b6040516106859190613ee1565b60405180910390f35b34801561069a57600080fd5b506106a3611224565b6040516106b09190613e37565b60405180910390f35b3480156106c557600080fd5b506106ce61122a565b6040516106db9190613d66565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613d81565b61123d565b6040516107189190613e37565b60405180910390f35b34801561072d57600080fd5b50610736611285565b005b34801561074457600080fd5b5061074d61130d565b60405161075a9190613d66565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613f5f565b6113ad565b005b34801561079857600080fd5b506107a1611484565b6040516107ae9190613ee1565b60405180910390f35b3480156107c357600080fd5b506107cc6114aa565b6040516107d99190613e37565b60405180910390f35b3480156107ee57600080fd5b506107f76114b0565b6040516108049190613e37565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613f9f565b6114b6565b005b34801561084257600080fd5b5061084b6115e3565b005b34801561085957600080fd5b50610862611697565b60405161086f9190613ee1565b60405180910390f35b34801561088457600080fd5b5061088d6116c1565b60405161089a9190613ee1565b60405180910390f35b3480156108af57600080fd5b506108b86116e7565b6040516108c59190613e37565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f09190613ff2565b6116ed565b005b34801561090357600080fd5b5061090c611786565b6040516109199190613c50565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190613f5f565b611818565b005b34801561095757600080fd5b50610960611931565b60405161096d9190613e37565b60405180910390f35b34801561098257600080fd5b5061098b611937565b6040516109989190613e37565b60405180910390f35b3480156109ad57600080fd5b506109b661193d565b6040516109c39190613e37565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee9190613d0b565b611943565b604051610a009190613d66565b60405180910390f35b348015610a1557600080fd5b50610a306004803603810190610a2b9190613d0b565b611a2e565b604051610a3d9190613d66565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613d81565b611a4c565b604051610a7a9190613d66565b60405180910390f35b348015610a8f57600080fd5b50610a98611a6b565b604051610aa59190613e37565b60405180910390f35b348015610aba57600080fd5b50610ac3611a71565b604051610ad09190613d66565b60405180910390f35b348015610ae557600080fd5b50610b006004803603810190610afb9190613f5f565b611a84565b005b348015610b0e57600080fd5b50610b296004803603810190610b249190613f9f565b611ba9565b005b348015610b3757600080fd5b50610b526004803603810190610b4d9190613e52565b611cd6565b005b348015610b6057600080fd5b50610b69611de5565b604051610b769190613d66565b60405180910390f35b348015610b8b57600080fd5b50610b94611df8565b604051610ba19190613e37565b60405180910390f35b348015610bb657600080fd5b50610bd16004803603810190610bcc9190613e52565b611dfe565b604051610bde9190613d66565b60405180910390f35b348015610bf357600080fd5b50610bfc611f53565b604051610c099190613e37565b60405180910390f35b348015610c1e57600080fd5b50610c396004803603810190610c34919061401f565b611f59565b604051610c469190613e37565b60405180910390f35b348015610c5b57600080fd5b50610c64611fe0565b604051610c719190613e37565b60405180910390f35b348015610c8657600080fd5b50610c8f611fe6565b604051610c9c9190613e37565b60405180910390f35b348015610cb157600080fd5b50610cba611fec565b604051610cc79190613d66565b60405180910390f35b348015610cdc57600080fd5b50610ce561208c565b604051610cf29190613e37565b60405180910390f35b348015610d0757600080fd5b50610d226004803603810190610d1d9190613d81565b612092565b005b348015610d3057600080fd5b50610d3961218a565b604051610d469190613e37565b60405180910390f35b348015610d5b57600080fd5b50610d64612190565b604051610d719190613e37565b60405180910390f35b348015610d8657600080fd5b50610d8f612196565b604051610d9c9190613e37565b60405180910390f35b606060038054610db49061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054610de09061408e565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b5050505050905090565b6000610e4b610e4461219c565b84846121a4565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601c5481565b601b5481565b610eb761219c565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611697565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f229061410c565b60405180910390fd5b670de0b6b3a76400006103e86005610f41610e99565b610f4b919061415b565b610f5591906141e4565b610f5f91906141e4565b811015610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890614287565b60405180910390fd5b670de0b6b3a764000081610fb5919061415b565b60098190555050565b6000610fcb84848461236f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101661219c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90614319565b60405180910390fd5b6110aa856110a261219c565b8584036121a4565b60019150509392505050565b61dead81565b60006012905090565b60006111676110d261219c565b8484600160006110e061219c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111629190614339565b6121a4565b6001905092915050565b7f000000000000000000000000d61bcf874f4e690c6a42df3299af766ca472b07581565b600c60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128d61219c565b73ffffffffffffffffffffffffffffffffffffffff166112ab611697565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061410c565b60405180910390fd5b61130b6000613089565b565b600061131761219c565b73ffffffffffffffffffffffffffffffffffffffff16611335611697565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113829061410c565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6113b561219c565b73ffffffffffffffffffffffffffffffffffffffff166113d3611697565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061410c565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60115481565b6114be61219c565b73ffffffffffffffffffffffffffffffffffffffff166114dc611697565b73ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115299061410c565b60405180910390fd5b60328183856115419190614339565b61154b9190614339565b111561158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906143db565b60405180910390fd5b8260108190555081601281905550806013819055506013546012546019546011546115b791906141e4565b6010546115c49190614339565b6115ce9190614339565b6115d89190614339565b600f81905550505050565b6115eb61219c565b73ffffffffffffffffffffffffffffffffffffffff16611609611697565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061410c565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116f561219c565b73ffffffffffffffffffffffffffffffffffffffff16611713611697565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061410c565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546117959061408e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c19061408e565b801561180e5780601f106117e35761010080835404028352916020019161180e565b820191906000526020600020905b8154815290600101906020018083116117f157829003601f168201915b5050505050905090565b61182061219c565b73ffffffffffffffffffffffffffffffffffffffff1661183e611697565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061410c565b60405180910390fd5b7f000000000000000000000000d61bcf874f4e690c6a42df3299af766ca472b07573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a9061446d565b60405180910390fd5b61192d828261314f565b5050565b60135481565b601d5481565b60185481565b6000806001600061195261219c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a06906144ff565b60405180910390fd5b611a23611a1a61219c565b858584036121a4565b600191505092915050565b6000611a42611a3b61219c565b848461236f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b60155481565b600c60019054906101000a900460ff1681565b611a8c61219c565b73ffffffffffffffffffffffffffffffffffffffff16611aaa611697565b73ffffffffffffffffffffffffffffffffffffffff1614611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af79061410c565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b9d9190613d66565b60405180910390a25050565b611bb161219c565b73ffffffffffffffffffffffffffffffffffffffff16611bcf611697565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c9061410c565b60405180910390fd5b6032818385611c349190614339565b611c3e9190614339565b1115611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c769061456b565b60405180910390fd5b826015819055508160178190555080601881905550601854601754601954601654611caa91906141e4565b601554611cb79190614339565b611cc19190614339565b611ccb9190614339565b601481905550505050565b611cde61219c565b73ffffffffffffffffffffffffffffffffffffffff16611cfc611697565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061410c565b60405180910390fd5b670de0b6b3a76400006103e86005611d68610e99565b611d72919061415b565b611d7c91906141e4565b611d8691906141e4565b811015611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf906145fd565b60405180910390fd5b670de0b6b3a764000081611ddc919061415b565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611e0861219c565b73ffffffffffffffffffffffffffffffffffffffff16611e26611697565b73ffffffffffffffffffffffffffffffffffffffff1614611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061410c565b60405180910390fd5b620186a06001611e8a610e99565b611e94919061415b565b611e9e91906141e4565b821015611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed79061468f565b60405180910390fd5b6103e86005611eed610e99565b611ef7919061415b565b611f0191906141e4565b821115611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a90614721565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60195481565b600a5481565b6000611ff661219c565b73ffffffffffffffffffffffffffffffffffffffff16612014611697565b73ffffffffffffffffffffffffffffffffffffffff161461206a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120619061410c565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61209a61219c565b73ffffffffffffffffffffffffffffffffffffffff166120b8611697565b73ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121059061410c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612175906147b3565b60405180910390fd5b61218781613089565b50565b601a5481565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614845565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b906148d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123629190613e37565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d690614969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612446906149fb565b60405180910390fd5b600081141561246957612464838360006131f0565b613084565b600c60009054906101000a900460ff1615612b2c57612486611697565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124f457506124c4611697565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612567575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125805750600560149054906101000a900460ff16155b15612b2b57600c60019054906101000a900460ff1661267a57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061263a5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614a67565b60405180910390fd5b5b600e60009054906101000a900460ff161561284257612697611697565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561271e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561277657507f000000000000000000000000d61bcf874f4e690c6a42df3299af766ca472b07573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128415743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614b1f565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128e55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298c5760095481111561292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690614bb1565b60405180910390fd5b600b5461293b8361123d565b826129469190614339565b1115612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e90614c1d565b60405180910390fd5b612b2a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a2f5750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a7e57600954811115612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090614caf565b60405180910390fd5b612b29565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b2857600b54612adb8361123d565b82612ae69190614339565b1115612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90614c1d565b60405180910390fd5b5b5b5b5b5b6000612b373061123d565b90506000600a548210159050808015612b5c5750600c60029054906101000a900460ff165b8015612b755750600560149054906101000a900460ff16155b8015612bcb5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c215750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c775750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cbb576001600560146101000a81548160ff021916908315150217905550612c9f613471565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d715750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d7b57600090505b6000811561307457602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dde57506000601454115b15612eeb57612e0b6064612dfd6014548861383290919063ffffffff16565b61384890919063ffffffff16565b905060145460155482612e1e919061415b565b612e2891906141e4565b601a6000828254612e399190614339565b9250508190555060145460175482612e51919061415b565b612e5b91906141e4565b601c6000828254612e6c9190614339565b9250508190555060145460185482612e84919061415b565b612e8e91906141e4565b601d6000828254612e9f9190614339565b92505081905550601454601954601654612eb991906141e4565b82612ec4919061415b565b612ece91906141e4565b601b6000828254612edf9190614339565b92505081905550613050565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f4657506000600f54115b1561304f57612f736064612f65600f548861383290919063ffffffff16565b61384890919063ffffffff16565b9050600f5460105482612f86919061415b565b612f9091906141e4565b601a6000828254612fa19190614339565b92505081905550600f5460125482612fb9919061415b565b612fc391906141e4565b601c6000828254612fd49190614339565b92505081905550600f5460135482612fec919061415b565b612ff691906141e4565b601d60008282546130079190614339565b92505081905550600f5460195460115461302191906141e4565b8261302c919061415b565b61303691906141e4565b601b60008282546130479190614339565b925050819055505b5b6000811115613065576130648730836131f0565b5b80856130719190614ccf565b94505b61307f8787876131f0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325790614969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c7906149fb565b60405180910390fd5b6132db83838361385e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335890614d75565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f49190614339565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134589190613e37565b60405180910390a361346b848484613863565b50505050565b600061347c3061123d565b90506000601d54601b54601c54601a546134969190614339565b6134a09190614339565b6134aa9190614339565b90506000808314806134bc5750600082145b156134c957505050613830565b6014600a546134d8919061415b565b8311156134f1576014600a546134ee919061415b565b92505b6000600283601c5486613504919061415b565b61350e91906141e4565b61351891906141e4565b9050600061352f828661386890919063ffffffff16565b9050600047905061353f8261387e565b6000613554824761386890919063ffffffff16565b9050600061357f87613571601a548561383290919063ffffffff16565b61384890919063ffffffff16565b905060006135aa8861359c601b548661383290919063ffffffff16565b61384890919063ffffffff16565b905060006135d5896135c7601d548761383290919063ffffffff16565b61384890919063ffffffff16565b90506000818385876135e79190614ccf565b6135f19190614ccf565b6135fb9190614ccf565b90506000601c819055506000601a819055506000601b819055506000601d81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161366390614dc6565b60006040518083038185875af1925050503d80600081146136a0576040519150601f19603f3d011682016040523d82523d6000602084013e6136a5565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136f190614dc6565b60006040518083038185875af1925050503d806000811461372e576040519150601f19603f3d011682016040523d82523d6000602084013e613733565b606091505b5050809950506000881180156137495750600081115b15613796576137588882613abb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c5460405161378d93929190614ddb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137dc90614dc6565b60006040518083038185875af1925050503d8060008114613819576040519150601f19603f3d011682016040523d82523d6000602084013e61381e565b606091505b50508099505050505050505050505050505b565b60008183613840919061415b565b905092915050565b6000818361385691906141e4565b905092915050565b505050565b505050565b600081836138769190614ccf565b905092915050565b6000600267ffffffffffffffff81111561389b5761389a614e12565b5b6040519080825280602002602001820160405280156138c95781602001602082028036833780820191505090505b50905030816000815181106138e1576138e0614e41565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139aa9190614e85565b816001815181106139be576139bd614e41565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a23307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121a4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a85959493929190614fab565b600060405180830381600087803b158015613a9f57600080fd5b505af1158015613ab3573d6000803e3d6000fd5b505050505050565b613ae6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121a4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b6d96959493929190615005565b60606040518083038185885af1158015613b8b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613bb0919061507b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bf1578082015181840152602081019050613bd6565b83811115613c00576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c2282613bb7565b613c2c8185613bc2565b9350613c3c818560208601613bd3565b613c4581613c06565b840191505092915050565b60006020820190508181036000830152613c6a8184613c17565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ca282613c77565b9050919050565b613cb281613c97565b8114613cbd57600080fd5b50565b600081359050613ccf81613ca9565b92915050565b6000819050919050565b613ce881613cd5565b8114613cf357600080fd5b50565b600081359050613d0581613cdf565b92915050565b60008060408385031215613d2257613d21613c72565b5b6000613d3085828601613cc0565b9250506020613d4185828601613cf6565b9150509250929050565b60008115159050919050565b613d6081613d4b565b82525050565b6000602082019050613d7b6000830184613d57565b92915050565b600060208284031215613d9757613d96613c72565b5b6000613da584828501613cc0565b91505092915050565b6000819050919050565b6000613dd3613dce613dc984613c77565b613dae565b613c77565b9050919050565b6000613de582613db8565b9050919050565b6000613df782613dda565b9050919050565b613e0781613dec565b82525050565b6000602082019050613e226000830184613dfe565b92915050565b613e3181613cd5565b82525050565b6000602082019050613e4c6000830184613e28565b92915050565b600060208284031215613e6857613e67613c72565b5b6000613e7684828501613cf6565b91505092915050565b600080600060608486031215613e9857613e97613c72565b5b6000613ea686828701613cc0565b9350506020613eb786828701613cc0565b9250506040613ec886828701613cf6565b9150509250925092565b613edb81613c97565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060ff82169050919050565b613f1281613efc565b82525050565b6000602082019050613f2d6000830184613f09565b92915050565b613f3c81613d4b565b8114613f4757600080fd5b50565b600081359050613f5981613f33565b92915050565b60008060408385031215613f7657613f75613c72565b5b6000613f8485828601613cc0565b9250506020613f9585828601613f4a565b9150509250929050565b600080600060608486031215613fb857613fb7613c72565b5b6000613fc686828701613cf6565b9350506020613fd786828701613cf6565b9250506040613fe886828701613cf6565b9150509250925092565b60006020828403121561400857614007613c72565b5b600061401684828501613f4a565b91505092915050565b6000806040838503121561403657614035613c72565b5b600061404485828601613cc0565b925050602061405585828601613cc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a657607f821691505b602082108114156140ba576140b961405f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140f6602083613bc2565b9150614101826140c0565b602082019050919050565b60006020820190508181036000830152614125816140e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061416682613cd5565b915061417183613cd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141aa576141a961412c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ef82613cd5565b91506141fa83613cd5565b92508261420a576142096141b5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614271602f83613bc2565b915061427c82614215565b604082019050919050565b600060208201905081810360008301526142a081614264565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614303602883613bc2565b915061430e826142a7565b604082019050919050565b60006020820190508181036000830152614332816142f6565b9050919050565b600061434482613cd5565b915061434f83613cd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143845761438361412c565b5b828201905092915050565b7f4d61782042757946656520353025000000000000000000000000000000000000600082015250565b60006143c5600e83613bc2565b91506143d08261438f565b602082019050919050565b600060208201905081810360008301526143f4816143b8565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614457603983613bc2565b9150614462826143fb565b604082019050919050565b600060208201905081810360008301526144868161444a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144e9602583613bc2565b91506144f48261448d565b604082019050919050565b60006020820190508181036000830152614518816144dc565b9050919050565b7f4d61782053656c6c466565203530250000000000000000000000000000000000600082015250565b6000614555600f83613bc2565b91506145608261451f565b602082019050919050565b6000602082019050818103600083015261458481614548565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006145e7602483613bc2565b91506145f28261458b565b604082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614679603583613bc2565b91506146848261461d565b604082019050919050565b600060208201905081810360008301526146a88161466c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061470b603483613bc2565b9150614716826146af565b604082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061479d602683613bc2565b91506147a882614741565b604082019050919050565b600060208201905081810360008301526147cc81614790565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061482f602483613bc2565b915061483a826147d3565b604082019050919050565b6000602082019050818103600083015261485e81614822565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148c1602283613bc2565b91506148cc82614865565b604082019050919050565b600060208201905081810360008301526148f0816148b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614953602583613bc2565b915061495e826148f7565b604082019050919050565b6000602082019050818103600083015261498281614946565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149e5602383613bc2565b91506149f082614989565b604082019050919050565b60006020820190508181036000830152614a14816149d8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a51601683613bc2565b9150614a5c82614a1b565b602082019050919050565b60006020820190508181036000830152614a8081614a44565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614b09604983613bc2565b9150614b1482614a87565b606082019050919050565b60006020820190508181036000830152614b3881614afc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b9b603583613bc2565b9150614ba682614b3f565b604082019050919050565b60006020820190508181036000830152614bca81614b8e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c07601383613bc2565b9150614c1282614bd1565b602082019050919050565b60006020820190508181036000830152614c3681614bfa565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c99603683613bc2565b9150614ca482614c3d565b604082019050919050565b60006020820190508181036000830152614cc881614c8c565b9050919050565b6000614cda82613cd5565b9150614ce583613cd5565b925082821015614cf857614cf761412c565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d5f602683613bc2565b9150614d6a82614d03565b604082019050919050565b60006020820190508181036000830152614d8e81614d52565b9050919050565b600081905092915050565b50565b6000614db0600083614d95565b9150614dbb82614da0565b600082019050919050565b6000614dd182614da3565b9150819050919050565b6000606082019050614df06000830186613e28565b614dfd6020830185613e28565b614e0a6040830184613e28565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e7f81613ca9565b92915050565b600060208284031215614e9b57614e9a613c72565b5b6000614ea984828501614e70565b91505092915050565b6000819050919050565b6000614ed7614ed2614ecd84614eb2565b613dae565b613cd5565b9050919050565b614ee781614ebc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f2281613c97565b82525050565b6000614f348383614f19565b60208301905092915050565b6000602082019050919050565b6000614f5882614eed565b614f628185614ef8565b9350614f6d83614f09565b8060005b83811015614f9e578151614f858882614f28565b9750614f9083614f40565b925050600181019050614f71565b5085935050505092915050565b600060a082019050614fc06000830188613e28565b614fcd6020830187614ede565b8181036040830152614fdf8186614f4d565b9050614fee6060830185613ed2565b614ffb6080830184613e28565b9695505050505050565b600060c08201905061501a6000830189613ed2565b6150276020830188613e28565b6150346040830187614ede565b6150416060830186614ede565b61504e6080830185613ed2565b61505b60a0830184613e28565b979650505050505050565b60008151905061507581613cdf565b92915050565b60008060006060848603121561509457615093613c72565b5b60006150a286828701615066565b93505060206150b386828701615066565b92505060406150c486828701615066565b915050925092509256fea2646970667358221220980a8cee63d8eb5a21cdaed05e8614aca422bb2c8d18c0c0a32f8091d8d24ae864736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a4c0535fbee28605d9ddfa2e26e3e23a9b3389570000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000001b4c69666527732061205265616c205061696e2041696e2774204974000000000000000000000000000000000000000000000000000000000000000000000000064c41525041490000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Life's a Real Pain Ain't It
Arg [1] : _symbol (string): LARPAI
Arg [2] : _buyFee (uint256): 0
Arg [3] : _buyLiquidityFee (uint256): 0
Arg [4] : _sellFee (uint256): 0
Arg [5] : _sellLiquidityFee (uint256): 0
Arg [6] : _totalSupply (uint256): 1000000000
Arg [7] : _maxTransactionAmount (uint256): 2
Arg [8] : _maxWallet (uint256): 1
Arg [9] : _taxWallet (address): 0xA4C0535fbEe28605D9dDfa2e26e3e23a9B338957
Arg [10] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 000000000000000000000000a4c0535fbee28605d9ddfa2e26e3e23a9b338957
Arg [10] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [11] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [12] : 4c69666527732061205265616c205061696e2041696e27742049740000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [14] : 4c41525041490000000000000000000000000000000000000000000000000000
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.