Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 REINA
Holders
33
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,812,955.970175372518689987 REINAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Reina
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.9; // https://www.reina-inu.com // https://t.me/reina_inu // @REINAINU abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 to 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 {} } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract Reina is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public enableEarlySellTax = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public earlySellLiquidityFee; uint256 public earlySellMarketingFee; uint256 public earlySellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Reina Inu", "REINA") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 10; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 10; uint256 _sellMarketingFee = 10; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 10; uint256 _earlySellLiquidityFee = 2; uint256 _earlySellMarketingFee = 1; uint256 _earlySellDevFee = 0 ; uint256 totalSupply = 1 * 1e9 * 1e18; maxTransactionAmount = totalSupply * 10 / 1000; // 1% maxTransactionAmountTxn maxWallet = totalSupply * 10 / 1000; // 1% maxWallet swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _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; launchedAt = block.number; } // 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; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } 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() * 8 / 1000, "Swap amount cannot be higher than 0.8% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); 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 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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"); } } } // early sell logic bool isBuy = from == uniswapV2Pair; if (!isBuy && enableEarlySellTax) { if (_holderFirstBuyTimestamp[from] != 0 && (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp)) { sellLiquidityFee = earlySellLiquidityFee; sellMarketingFee = earlySellMarketingFee; sellDevFee = earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } else { sellLiquidityFee = 2; sellMarketingFee = 1; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } else { if (_holderFirstBuyTimestamp[to] == 0) { _holderFirstBuyTimestamp[to] = block.timestamp; } if (!enableEarlySellTax) { sellLiquidityFee = 2; sellMarketingFee = 1; sellDevFee = 0; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } 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); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / 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 address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlySellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","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":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellDevFee","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
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600b60036101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600981526020017f5265696e6120496e7500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5245494e4100000000000000000000000000000000000000000000000000000081525081600390805190602001906200011d92919062000bf8565b5080600490805190602001906200013692919062000bf8565b50505060006200014b620006c460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000216816001620006cc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029157600080fd5b505afa158015620002a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cc919062000d12565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032f57600080fd5b505afa15801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000d12565b6040518363ffffffff1660e01b81526004016200038992919062000d55565b602060405180830381600087803b158015620003a457600080fd5b505af1158015620003b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003df919062000d12565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200042760a0516001620006cc60201b60201c565b6200043c60a0516001620007c960201b60201c565b6000600a9050600080600a90506000600a9050600080600a90506000600290506000600190506000806b033b2e3c9fd0803ce800000090506103e8600a8262000486919062000dbb565b62000492919062000e4b565b6008819055506103e8600a82620004aa919062000dbb565b620004b6919062000e4b565b600a81905550612710600a82620004ce919062000dbb565b620004da919062000e4b565b6009819055508960108190555088601181905550876012819055506012546011546010546200050a919062000e83565b62000516919062000e83565b600f8190555086601481905550856015819055508460168190555060165460155460145462000546919062000e83565b62000552919062000e83565b6013819055508360178190555082601881905550816019819055506200057d6200086a60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005cd6200086a60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200062f620006216200086a60201b60201c565b60016200089460201b60201c565b620006423060016200089460201b60201c565b6200065761dead60016200089460201b60201c565b620006796200066b6200086a60201b60201c565b6001620006cc60201b60201c565b6200068c306001620006cc60201b60201c565b620006a161dead6001620006cc60201b60201c565b620006b33382620009e160201b60201c565b505050505050505050505062001114565b600033905090565b620006dc620006c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200076e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007659062000f41565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a4620006c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000936576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092d9062000f41565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d5919062000f80565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4b9062000fed565b60405180910390fd5b62000a686000838362000b9060201b60201c565b62000a848160025462000b9560201b620026c71790919060201c565b60028190555062000ae2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b9560201b620026c71790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b84919062001020565b60405180910390a35050565b505050565b600080828462000ba6919062000e83565b90508381101562000bee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000be5906200108d565b60405180910390fd5b8091505092915050565b82805462000c0690620010de565b90600052602060002090601f01602090048101928262000c2a576000855562000c76565b82601f1062000c4557805160ff191683800117855562000c76565b8280016001018555821562000c76579182015b8281111562000c7557825182559160200191906001019062000c58565b5b50905062000c85919062000c89565b5090565b5b8082111562000ca457600081600090555060010162000c8a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cda8262000cad565b9050919050565b62000cec8162000ccd565b811462000cf857600080fd5b50565b60008151905062000d0c8162000ce1565b92915050565b60006020828403121562000d2b5762000d2a62000ca8565b5b600062000d3b8482850162000cfb565b91505092915050565b62000d4f8162000ccd565b82525050565b600060408201905062000d6c600083018562000d44565b62000d7b602083018462000d44565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dc88262000d82565b915062000dd58362000d82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e115762000e1062000d8c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e588262000d82565b915062000e658362000d82565b92508262000e785762000e7762000e1c565b5b828204905092915050565b600062000e908262000d82565b915062000e9d8362000d82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ed55762000ed462000d8c565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f2960208362000ee0565b915062000f368262000ef1565b602082019050919050565b6000602082019050818103600083015262000f5c8162000f1a565b9050919050565b60008115159050919050565b62000f7a8162000f63565b82525050565b600060208201905062000f97600083018462000f6f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fd5601f8362000ee0565b915062000fe28262000f9d565b602082019050919050565b60006020820190508181036000830152620010088162000fc6565b9050919050565b6200101a8162000d82565b82525050565b60006020820190506200103760008301846200100f565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001075601b8362000ee0565b915062001082826200103d565b602082019050919050565b60006020820190508181036000830152620010a88162001066565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010f757607f821691505b602082108114156200110e576200110d620010af565b5b50919050565b60805160a0516158c362001179600039600081816113c301528181611bbf01528181612cb001526130b9015260008181610e3b01528181612c5801528181614035015281816141250152818161414c015281816141e8015261420f01526158c36000f3fe60806040526004361061036f5760003560e01c806392136913116101c6578063bbc0c742116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610cbf578063f2fde38b14610cea578063f637434214610d13578063f8b45b0514610d3e57610376565b8063dd62ed3e14610c2c578063e2f4560514610c69578063e884f26014610c9457610376565b8063c876d0b9116100d1578063c876d0b914610b6e578063c8c8ebe414610b99578063d257b34f14610bc4578063d85ba06314610c0157610376565b8063bbc0c74214610af1578063c024666814610b1c578063c18bc19514610b4557610376565b8063a265777811610164578063a7fc9e211161013e578063a7fc9e2114610a23578063a9059cbb14610a4e578063aacebbe314610a8b578063b62496f514610ab457610376565b8063a265777814610992578063a457c2d7146109bb578063a4d15b64146109f857610376565b80639a7a23d6116101a05780639a7a23d6146108e85780639c3b4fdc146109115780639fccce321461093c578063a0d82dc51461096757610376565b80639213691314610869578063924de9b71461089457806395d89b41146108bd57610376565b806349bd5a5e116102a0578063715018a61161023e5780637bce5a04116102185780637bce5a04146107d35780638095d564146107fe5780638a8c523c146108275780638da5cb5b1461083e57610376565b8063715018a614610768578063751039fc1461077f5780637571336a146107aa57610376565b8063541a43cf1161027a578063541a43cf146106aa5780636a486a8e146106d55780636ddd17131461070057806370a082311461072b57610376565b806349bd5a5e146106175780634a62bb65146106425780634fbee1931461066d57610376565b80631f3fed8f1161030d57806323b872dd116102e757806323b872dd146105475780632bf3d42d14610584578063313ce567146105af57806339509351146105da57610376565b80631f3fed8f146104ca578063203e727e146104f557806322d3e2aa1461051e57610376565b80631694505e116103495780631694505e1461042057806318160ddd1461044b5780631816467f146104765780631a8145bb1461049f57610376565b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d69565b60405161039d91906143c7565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190614482565b610dfb565b6040516103da91906144dd565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906144f8565b610e19565b60405161041791906144dd565b60405180910390f35b34801561042c57600080fd5b50610435610e39565b6040516104429190614584565b60405180910390f35b34801561045757600080fd5b50610460610e5d565b60405161046d91906145ae565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906144f8565b610e67565b005b3480156104ab57600080fd5b506104b4610fbe565b6040516104c191906145ae565b60405180910390f35b3480156104d657600080fd5b506104df610fc4565b6040516104ec91906145ae565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906145c9565b610fca565b005b34801561052a57600080fd5b50610545600480360381019061054091906145f6565b6110f4565b005b34801561055357600080fd5b5061056e60048036038101906105699190614683565b611226565b60405161057b91906144dd565b60405180910390f35b34801561059057600080fd5b506105996112ff565b6040516105a691906145ae565b60405180910390f35b3480156105bb57600080fd5b506105c4611305565b6040516105d191906146f2565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190614482565b61130e565b60405161060e91906144dd565b60405180910390f35b34801561062357600080fd5b5061062c6113c1565b604051610639919061471c565b60405180910390f35b34801561064e57600080fd5b506106576113e5565b60405161066491906144dd565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906144f8565b6113f8565b6040516106a191906144dd565b60405180910390f35b3480156106b657600080fd5b506106bf61144e565b6040516106cc91906145ae565b60405180910390f35b3480156106e157600080fd5b506106ea611454565b6040516106f791906145ae565b60405180910390f35b34801561070c57600080fd5b5061071561145a565b60405161072291906144dd565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906144f8565b61146d565b60405161075f91906145ae565b60405180910390f35b34801561077457600080fd5b5061077d6114b5565b005b34801561078b57600080fd5b5061079461160d565b6040516107a191906144dd565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190614763565b6116c8565b005b3480156107df57600080fd5b506107e86117ba565b6040516107f591906145ae565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906147a3565b6117c0565b005b34801561083357600080fd5b5061083c6118da565b005b34801561084a57600080fd5b506108536119b0565b604051610860919061471c565b60405180910390f35b34801561087557600080fd5b5061087e6119da565b60405161088b91906145ae565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b691906147f6565b6119e0565b005b3480156108c957600080fd5b506108d2611a94565b6040516108df91906143c7565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190614763565b611b26565b005b34801561091d57600080fd5b50610926611c5a565b60405161093391906145ae565b60405180910390f35b34801561094857600080fd5b50610951611c60565b60405161095e91906145ae565b60405180910390f35b34801561097357600080fd5b5061097c611c66565b60405161098991906145ae565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b491906147f6565b611c6c565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190614482565b611d20565b6040516109ef91906144dd565b60405180910390f35b348015610a0457600080fd5b50610a0d611ded565b604051610a1a91906144dd565b60405180910390f35b348015610a2f57600080fd5b50610a38611e00565b604051610a4591906145ae565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a709190614482565b611e06565b604051610a8291906144dd565b60405180910390f35b348015610a9757600080fd5b50610ab26004803603810190610aad91906144f8565b611e24565b005b348015610ac057600080fd5b50610adb6004803603810190610ad691906144f8565b611f7b565b604051610ae891906144dd565b60405180910390f35b348015610afd57600080fd5b50610b06611f9a565b604051610b1391906144dd565b60405180910390f35b348015610b2857600080fd5b50610b436004803603810190610b3e9190614763565b611fad565b005b348015610b5157600080fd5b50610b6c6004803603810190610b6791906145c9565b6120ed565b005b348015610b7a57600080fd5b50610b83612217565b604051610b9091906144dd565b60405180910390f35b348015610ba557600080fd5b50610bae61222a565b604051610bbb91906145ae565b60405180910390f35b348015610bd057600080fd5b50610beb6004803603810190610be691906145c9565b612230565b604051610bf891906144dd565b60405180910390f35b348015610c0d57600080fd5b50610c166123a0565b604051610c2391906145ae565b60405180910390f35b348015610c3857600080fd5b50610c536004803603810190610c4e9190614823565b6123a6565b604051610c6091906145ae565b60405180910390f35b348015610c7557600080fd5b50610c7e61242d565b604051610c8b91906145ae565b60405180910390f35b348015610ca057600080fd5b50610ca9612433565b604051610cb691906144dd565b60405180910390f35b348015610ccb57600080fd5b50610cd46124ee565b604051610ce191906145ae565b60405180910390f35b348015610cf657600080fd5b50610d116004803603810190610d0c91906144f8565b6124f4565b005b348015610d1f57600080fd5b50610d286126bb565b604051610d3591906145ae565b60405180910390f35b348015610d4a57600080fd5b50610d536126c1565b604051610d6091906145ae565b60405180910390f35b606060038054610d7890614892565b80601f0160208091040260200160405190810160405280929190818152602001828054610da490614892565b8015610df15780601f10610dc657610100808354040283529160200191610df1565b820191906000526020600020905b815481529060010190602001808311610dd457829003601f168201915b5050505050905090565b6000610e0f610e08612725565b848461272d565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e6f612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590614910565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b5481565b601a5481565b610fd2612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614910565b60405180910390fd5b670de0b6b3a76400006103e86001611077610e5d565b611081919061495f565b61108b91906149e8565b61109591906149e8565b8110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90614a8b565b60405180910390fd5b670de0b6b3a7640000816110eb919061495f565b60088190555050565b6110fc612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290614910565b60405180910390fd5b8560148190555084601581905550836016819055508260178190555081601881905550806019819055506016546015546014546111c89190614aab565b6111d29190614aab565b6013819055506019601354111561121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614b4d565b60405180910390fd5b505050505050565b60006112338484846128f8565b6112f48461123f612725565b6112ef8560405180606001604052806028815260200161584160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112a5612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138019092919063ffffffff16565b61272d565b600190509392505050565b60185481565b60006012905090565b60006113b761131b612725565b846113b2856001600061132c612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c790919063ffffffff16565b61272d565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114bd612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614910565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611617612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90614910565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6116d0612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690614910565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b6117c8612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614910565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461187f9190614aab565b6118899190614aab565b600f819055506014600f5411156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90614bb9565b60405180910390fd5b505050565b6118e2612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196890614910565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6119e8612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90614910565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611aa390614892565b80601f0160208091040260200160405190810160405280929190818152602001828054611acf90614892565b8015611b1c5780601f10611af157610100808354040283529160200191611b1c565b820191906000526020600020905b815481529060010190602001808311611aff57829003601f168201915b5050505050905090565b611b2e612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614910565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390614c4b565b60405180910390fd5b611c568282613865565b5050565b60125481565b601c5481565b60165481565b611c74612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614910565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b6000611de3611d2d612725565b84611dde856040518060600160405280602581526020016158696025913960016000611d57612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138019092919063ffffffff16565b61272d565b6001905092915050565b600b60039054906101000a900460ff1681565b60195481565b6000611e1a611e13612725565b84846128f8565b6001905092915050565b611e2c612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614910565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611fb5612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90614910565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120e191906144dd565b60405180910390a25050565b6120f5612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90614910565b60405180910390fd5b670de0b6b3a76400006103e8600561219a610e5d565b6121a4919061495f565b6121ae91906149e8565b6121b891906149e8565b8110156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614cdd565b60405180910390fd5b670de0b6b3a76400008161220e919061495f565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061223a612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090614910565b60405180910390fd5b620186a060016122d7610e5d565b6122e1919061495f565b6122eb91906149e8565b82101561232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232490614d6f565b60405180910390fd5b6103e8600861233a610e5d565b612344919061495f565b61234e91906149e8565b821115612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790614e01565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061243d612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c390614910565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b6124fc612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614910565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614e93565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b60008082846126d69190614aab565b90508381101561271b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271290614eff565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614f91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280490615023565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128eb91906145ae565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f906150b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf90615147565b60405180910390fd5b60008114156129f2576129ed83836000613906565b6137fc565b600b60009054906101000a900460ff16156130b557612a0f6119b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a7d5750612a4d6119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612af0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b095750600560149054906101000a900460ff16155b156130b457600b60019054906101000a900460ff16612c0357601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc35750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf9906151b3565b60405180910390fd5b5b600e60009054906101000a900460ff1615612dcb57612c206119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ca757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cff57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dca5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c9061526b565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e6e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1557600854811115612eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaf906152fd565b60405180910390fd5b600a54612ec48361146d565b82612ecf9190614aab565b1115612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0790615369565b60405180910390fd5b6130b3565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb85750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300757600854811115613002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff9906153fb565b60405180910390fd5b6130b2565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b157600a546130648361146d565b8261306f9190614aab565b11156130b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a790615369565b60405180910390fd5b5b5b5b5b5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050801580156131225750600b60039054906101000a900460ff165b15613245576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141580156131c457504262015180600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131c19190614aab565b10155b1561320c576017546015819055506018546014819055506019546016819055506016546015546014546131f79190614aab565b6132019190614aab565b601381905550613240565b6002601581905550600160148190555060165460155460145461322f9190614aab565b6132399190614aab565b6013819055505b613323565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156132d25742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60039054906101000a900460ff16613322576002601581905550600160148190555060006016819055506016546015546014546133119190614aab565b61331b9190614aab565b6013819055505b5b600061332e3061146d565b9050600060095482101590508080156133535750600b60029054906101000a900460ff165b801561336c5750600560149054906101000a900460ff16155b80156133c25750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134185750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561346e5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134b2576001600560146101000a81548160ff021916908315150217905550613496613b9b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135685750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561357257600090505b600081156137eb57602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135d557506000601354115b156136a25761360260646135f460135489613e8290919063ffffffff16565b613efd90919063ffffffff16565b905060135460155482613615919061495f565b61361f91906149e8565b601b60008282546136309190614aab565b9250508190555060135460165482613648919061495f565b61365291906149e8565b601c60008282546136639190614aab565b925050819055506013546014548261367b919061495f565b61368591906149e8565b601a60008282546136969190614aab565b925050819055506137c7565b602060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136fd57506000600f54115b156137c65761372a606461371c600f5489613e8290919063ffffffff16565b613efd90919063ffffffff16565b9050600f546011548261373d919061495f565b61374791906149e8565b601b60008282546137589190614aab565b92505081905550600f5460125482613770919061495f565b61377a91906149e8565b601c600082825461378b9190614aab565b92505081905550600f54601054826137a3919061495f565b6137ad91906149e8565b601a60008282546137be9190614aab565b925050819055505b5b60008111156137dc576137db883083613906565b5b80866137e8919061541b565b95505b6137f6888888613906565b50505050505b505050565b6000838311158290613849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384091906143c7565b60405180910390fd5b5060008385613858919061541b565b9050809150509392505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396d906150b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139dd90615147565b60405180910390fd5b6139f1838383613f47565b613a5c8160405180606001604052806026815260200161581b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138019092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613aef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613b8e91906145ae565b60405180910390a3505050565b6000613ba63061146d565b90506000601c54601a54601b54613bbd9190614aab565b613bc79190614aab565b9050600080831480613bd95750600082145b15613be657505050613e80565b6014600954613bf5919061495f565b831115613c0e576014600954613c0b919061495f565b92505b6000600283601b5486613c21919061495f565b613c2b91906149e8565b613c3591906149e8565b90506000613c4c8286613f4c90919063ffffffff16565b90506000479050613c5c82613f96565b6000613c718247613f4c90919063ffffffff16565b90506000613c9c87613c8e601a5485613e8290919063ffffffff16565b613efd90919063ffffffff16565b90506000613cc788613cb9601c5486613e8290919063ffffffff16565b613efd90919063ffffffff16565b90506000818385613cd8919061541b565b613ce2919061541b565b90506000601b819055506000601a819055506000601c81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d4290615480565b60006040518083038185875af1925050503d8060008114613d7f576040519150601f19603f3d011682016040523d82523d6000602084013e613d84565b606091505b505080985050600087118015613d9a5750600081115b15613de757613da987826141e2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b54604051613dde93929190615495565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e2d90615480565b60006040518083038185875af1925050503d8060008114613e6a576040519150601f19603f3d011682016040523d82523d6000602084013e613e6f565b606091505b505080985050505050505050505050505b565b600080831415613e955760009050613ef7565b60008284613ea3919061495f565b9050828482613eb291906149e8565b14613ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ee99061553e565b60405180910390fd5b809150505b92915050565b6000613f3f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506142cb565b905092915050565b505050565b6000613f8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613801565b905092915050565b6000600267ffffffffffffffff811115613fb357613fb261555e565b5b604051908082528060200260200182016040528015613fe15781602001602082028036833780820191505090505b5090503081600081518110613ff957613ff861558d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561409957600080fd5b505afa1580156140ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140d191906155d1565b816001815181106140e5576140e461558d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061414a307f00000000000000000000000000000000000000000000000000000000000000008461272d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141ac9594939291906156f7565b600060405180830381600087803b1580156141c657600080fd5b505af11580156141da573d6000803e3d6000fd5b505050505050565b61420d307f00000000000000000000000000000000000000000000000000000000000000008461272d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161427296959493929190615751565b6060604051808303818588803b15801561428b57600080fd5b505af115801561429f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142c491906157c7565b5050505050565b60008083118290614312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161430991906143c7565b60405180910390fd5b506000838561432191906149e8565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561436857808201518184015260208101905061434d565b83811115614377576000848401525b50505050565b6000601f19601f8301169050919050565b60006143998261432e565b6143a38185614339565b93506143b381856020860161434a565b6143bc8161437d565b840191505092915050565b600060208201905081810360008301526143e1818461438e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614419826143ee565b9050919050565b6144298161440e565b811461443457600080fd5b50565b60008135905061444681614420565b92915050565b6000819050919050565b61445f8161444c565b811461446a57600080fd5b50565b60008135905061447c81614456565b92915050565b60008060408385031215614499576144986143e9565b5b60006144a785828601614437565b92505060206144b88582860161446d565b9150509250929050565b60008115159050919050565b6144d7816144c2565b82525050565b60006020820190506144f260008301846144ce565b92915050565b60006020828403121561450e5761450d6143e9565b5b600061451c84828501614437565b91505092915050565b6000819050919050565b600061454a614545614540846143ee565b614525565b6143ee565b9050919050565b600061455c8261452f565b9050919050565b600061456e82614551565b9050919050565b61457e81614563565b82525050565b60006020820190506145996000830184614575565b92915050565b6145a88161444c565b82525050565b60006020820190506145c3600083018461459f565b92915050565b6000602082840312156145df576145de6143e9565b5b60006145ed8482850161446d565b91505092915050565b60008060008060008060c08789031215614613576146126143e9565b5b600061462189828a0161446d565b965050602061463289828a0161446d565b955050604061464389828a0161446d565b945050606061465489828a0161446d565b935050608061466589828a0161446d565b92505060a061467689828a0161446d565b9150509295509295509295565b60008060006060848603121561469c5761469b6143e9565b5b60006146aa86828701614437565b93505060206146bb86828701614437565b92505060406146cc8682870161446d565b9150509250925092565b600060ff82169050919050565b6146ec816146d6565b82525050565b600060208201905061470760008301846146e3565b92915050565b6147168161440e565b82525050565b6000602082019050614731600083018461470d565b92915050565b614740816144c2565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b6000806040838503121561477a576147796143e9565b5b600061478885828601614437565b92505060206147998582860161474e565b9150509250929050565b6000806000606084860312156147bc576147bb6143e9565b5b60006147ca8682870161446d565b93505060206147db8682870161446d565b92505060406147ec8682870161446d565b9150509250925092565b60006020828403121561480c5761480b6143e9565b5b600061481a8482850161474e565b91505092915050565b6000806040838503121561483a576148396143e9565b5b600061484885828601614437565b925050602061485985828601614437565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148aa57607f821691505b602082108114156148be576148bd614863565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148fa602083614339565b9150614905826148c4565b602082019050919050565b60006020820190508181036000830152614929816148ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061496a8261444c565b91506149758361444c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149ae576149ad614930565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149f38261444c565b91506149fe8361444c565b925082614a0e57614a0d6149b9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614a75602f83614339565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b6000614ab68261444c565b9150614ac18361444c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614af657614af5614930565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614b37601d83614339565b9150614b4282614b01565b602082019050919050565b60006020820190508181036000830152614b6681614b2a565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614ba3601d83614339565b9150614bae82614b6d565b602082019050919050565b60006020820190508181036000830152614bd281614b96565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c35603983614339565b9150614c4082614bd9565b604082019050919050565b60006020820190508181036000830152614c6481614c28565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614cc7602483614339565b9150614cd282614c6b565b604082019050919050565b60006020820190508181036000830152614cf681614cba565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d59603583614339565b9150614d6482614cfd565b604082019050919050565b60006020820190508181036000830152614d8881614d4c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614deb603483614339565b9150614df682614d8f565b604082019050919050565b60006020820190508181036000830152614e1a81614dde565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e7d602683614339565b9150614e8882614e21565b604082019050919050565b60006020820190508181036000830152614eac81614e70565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ee9601b83614339565b9150614ef482614eb3565b602082019050919050565b60006020820190508181036000830152614f1881614edc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614f7b602483614339565b9150614f8682614f1f565b604082019050919050565b60006020820190508181036000830152614faa81614f6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061500d602283614339565b915061501882614fb1565b604082019050919050565b6000602082019050818103600083015261503c81615000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061509f602583614339565b91506150aa82615043565b604082019050919050565b600060208201905081810360008301526150ce81615092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615131602383614339565b915061513c826150d5565b604082019050919050565b6000602082019050818103600083015261516081615124565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061519d601683614339565b91506151a882615167565b602082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615255604983614339565b9150615260826151d3565b606082019050919050565b6000602082019050818103600083015261528481615248565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006152e7603583614339565b91506152f28261528b565b604082019050919050565b60006020820190508181036000830152615316816152da565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615353601383614339565b915061535e8261531d565b602082019050919050565b6000602082019050818103600083015261538281615346565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006153e5603683614339565b91506153f082615389565b604082019050919050565b60006020820190508181036000830152615414816153d8565b9050919050565b60006154268261444c565b91506154318361444c565b92508282101561544457615443614930565b5b828203905092915050565b600081905092915050565b50565b600061546a60008361544f565b91506154758261545a565b600082019050919050565b600061548b8261545d565b9150819050919050565b60006060820190506154aa600083018661459f565b6154b7602083018561459f565b6154c4604083018461459f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615528602183614339565b9150615533826154cc565b604082019050919050565b600060208201905081810360008301526155578161551b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506155cb81614420565b92915050565b6000602082840312156155e7576155e66143e9565b5b60006155f5848285016155bc565b91505092915050565b6000819050919050565b600061562361561e615619846155fe565b614525565b61444c565b9050919050565b61563381615608565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61566e8161440e565b82525050565b60006156808383615665565b60208301905092915050565b6000602082019050919050565b60006156a482615639565b6156ae8185615644565b93506156b983615655565b8060005b838110156156ea5781516156d18882615674565b97506156dc8361568c565b9250506001810190506156bd565b5085935050505092915050565b600060a08201905061570c600083018861459f565b615719602083018761562a565b818103604083015261572b8186615699565b905061573a606083018561470d565b615747608083018461459f565b9695505050505050565b600060c082019050615766600083018961470d565b615773602083018861459f565b615780604083018761562a565b61578d606083018661562a565b61579a608083018561470d565b6157a760a083018461459f565b979650505050505050565b6000815190506157c181614456565b92915050565b6000806000606084860312156157e0576157df6143e9565b5b60006157ee868287016157b2565b93505060206157ff868287016157b2565b9250506040615810868287016157b2565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ec1548dc64281c2113d0a4fa733a9784ab2162d72c4f728b7793b2b8ee68a77664736f6c63430008090033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806392136913116101c6578063bbc0c742116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610cbf578063f2fde38b14610cea578063f637434214610d13578063f8b45b0514610d3e57610376565b8063dd62ed3e14610c2c578063e2f4560514610c69578063e884f26014610c9457610376565b8063c876d0b9116100d1578063c876d0b914610b6e578063c8c8ebe414610b99578063d257b34f14610bc4578063d85ba06314610c0157610376565b8063bbc0c74214610af1578063c024666814610b1c578063c18bc19514610b4557610376565b8063a265777811610164578063a7fc9e211161013e578063a7fc9e2114610a23578063a9059cbb14610a4e578063aacebbe314610a8b578063b62496f514610ab457610376565b8063a265777814610992578063a457c2d7146109bb578063a4d15b64146109f857610376565b80639a7a23d6116101a05780639a7a23d6146108e85780639c3b4fdc146109115780639fccce321461093c578063a0d82dc51461096757610376565b80639213691314610869578063924de9b71461089457806395d89b41146108bd57610376565b806349bd5a5e116102a0578063715018a61161023e5780637bce5a04116102185780637bce5a04146107d35780638095d564146107fe5780638a8c523c146108275780638da5cb5b1461083e57610376565b8063715018a614610768578063751039fc1461077f5780637571336a146107aa57610376565b8063541a43cf1161027a578063541a43cf146106aa5780636a486a8e146106d55780636ddd17131461070057806370a082311461072b57610376565b806349bd5a5e146106175780634a62bb65146106425780634fbee1931461066d57610376565b80631f3fed8f1161030d57806323b872dd116102e757806323b872dd146105475780632bf3d42d14610584578063313ce567146105af57806339509351146105da57610376565b80631f3fed8f146104ca578063203e727e146104f557806322d3e2aa1461051e57610376565b80631694505e116103495780631694505e1461042057806318160ddd1461044b5780631816467f146104765780631a8145bb1461049f57610376565b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d69565b60405161039d91906143c7565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190614482565b610dfb565b6040516103da91906144dd565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906144f8565b610e19565b60405161041791906144dd565b60405180910390f35b34801561042c57600080fd5b50610435610e39565b6040516104429190614584565b60405180910390f35b34801561045757600080fd5b50610460610e5d565b60405161046d91906145ae565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906144f8565b610e67565b005b3480156104ab57600080fd5b506104b4610fbe565b6040516104c191906145ae565b60405180910390f35b3480156104d657600080fd5b506104df610fc4565b6040516104ec91906145ae565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906145c9565b610fca565b005b34801561052a57600080fd5b50610545600480360381019061054091906145f6565b6110f4565b005b34801561055357600080fd5b5061056e60048036038101906105699190614683565b611226565b60405161057b91906144dd565b60405180910390f35b34801561059057600080fd5b506105996112ff565b6040516105a691906145ae565b60405180910390f35b3480156105bb57600080fd5b506105c4611305565b6040516105d191906146f2565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190614482565b61130e565b60405161060e91906144dd565b60405180910390f35b34801561062357600080fd5b5061062c6113c1565b604051610639919061471c565b60405180910390f35b34801561064e57600080fd5b506106576113e5565b60405161066491906144dd565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906144f8565b6113f8565b6040516106a191906144dd565b60405180910390f35b3480156106b657600080fd5b506106bf61144e565b6040516106cc91906145ae565b60405180910390f35b3480156106e157600080fd5b506106ea611454565b6040516106f791906145ae565b60405180910390f35b34801561070c57600080fd5b5061071561145a565b60405161072291906144dd565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906144f8565b61146d565b60405161075f91906145ae565b60405180910390f35b34801561077457600080fd5b5061077d6114b5565b005b34801561078b57600080fd5b5061079461160d565b6040516107a191906144dd565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190614763565b6116c8565b005b3480156107df57600080fd5b506107e86117ba565b6040516107f591906145ae565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906147a3565b6117c0565b005b34801561083357600080fd5b5061083c6118da565b005b34801561084a57600080fd5b506108536119b0565b604051610860919061471c565b60405180910390f35b34801561087557600080fd5b5061087e6119da565b60405161088b91906145ae565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b691906147f6565b6119e0565b005b3480156108c957600080fd5b506108d2611a94565b6040516108df91906143c7565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190614763565b611b26565b005b34801561091d57600080fd5b50610926611c5a565b60405161093391906145ae565b60405180910390f35b34801561094857600080fd5b50610951611c60565b60405161095e91906145ae565b60405180910390f35b34801561097357600080fd5b5061097c611c66565b60405161098991906145ae565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b491906147f6565b611c6c565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190614482565b611d20565b6040516109ef91906144dd565b60405180910390f35b348015610a0457600080fd5b50610a0d611ded565b604051610a1a91906144dd565b60405180910390f35b348015610a2f57600080fd5b50610a38611e00565b604051610a4591906145ae565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a709190614482565b611e06565b604051610a8291906144dd565b60405180910390f35b348015610a9757600080fd5b50610ab26004803603810190610aad91906144f8565b611e24565b005b348015610ac057600080fd5b50610adb6004803603810190610ad691906144f8565b611f7b565b604051610ae891906144dd565b60405180910390f35b348015610afd57600080fd5b50610b06611f9a565b604051610b1391906144dd565b60405180910390f35b348015610b2857600080fd5b50610b436004803603810190610b3e9190614763565b611fad565b005b348015610b5157600080fd5b50610b6c6004803603810190610b6791906145c9565b6120ed565b005b348015610b7a57600080fd5b50610b83612217565b604051610b9091906144dd565b60405180910390f35b348015610ba557600080fd5b50610bae61222a565b604051610bbb91906145ae565b60405180910390f35b348015610bd057600080fd5b50610beb6004803603810190610be691906145c9565b612230565b604051610bf891906144dd565b60405180910390f35b348015610c0d57600080fd5b50610c166123a0565b604051610c2391906145ae565b60405180910390f35b348015610c3857600080fd5b50610c536004803603810190610c4e9190614823565b6123a6565b604051610c6091906145ae565b60405180910390f35b348015610c7557600080fd5b50610c7e61242d565b604051610c8b91906145ae565b60405180910390f35b348015610ca057600080fd5b50610ca9612433565b604051610cb691906144dd565b60405180910390f35b348015610ccb57600080fd5b50610cd46124ee565b604051610ce191906145ae565b60405180910390f35b348015610cf657600080fd5b50610d116004803603810190610d0c91906144f8565b6124f4565b005b348015610d1f57600080fd5b50610d286126bb565b604051610d3591906145ae565b60405180910390f35b348015610d4a57600080fd5b50610d536126c1565b604051610d6091906145ae565b60405180910390f35b606060038054610d7890614892565b80601f0160208091040260200160405190810160405280929190818152602001828054610da490614892565b8015610df15780601f10610dc657610100808354040283529160200191610df1565b820191906000526020600020905b815481529060010190602001808311610dd457829003601f168201915b5050505050905090565b6000610e0f610e08612725565b848461272d565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e6f612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590614910565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b5481565b601a5481565b610fd2612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614910565b60405180910390fd5b670de0b6b3a76400006103e86001611077610e5d565b611081919061495f565b61108b91906149e8565b61109591906149e8565b8110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90614a8b565b60405180910390fd5b670de0b6b3a7640000816110eb919061495f565b60088190555050565b6110fc612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290614910565b60405180910390fd5b8560148190555084601581905550836016819055508260178190555081601881905550806019819055506016546015546014546111c89190614aab565b6111d29190614aab565b6013819055506019601354111561121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614b4d565b60405180910390fd5b505050505050565b60006112338484846128f8565b6112f48461123f612725565b6112ef8560405180606001604052806028815260200161584160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112a5612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138019092919063ffffffff16565b61272d565b600190509392505050565b60185481565b60006012905090565b60006113b761131b612725565b846113b2856001600061132c612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c790919063ffffffff16565b61272d565b6001905092915050565b7f000000000000000000000000dfcf63077f80d127a321c805de3bc91c10ebb23b81565b600b60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114bd612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614910565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611617612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90614910565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6116d0612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690614910565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b6117c8612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614910565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461187f9190614aab565b6118899190614aab565b600f819055506014600f5411156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90614bb9565b60405180910390fd5b505050565b6118e2612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196890614910565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6119e8612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90614910565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611aa390614892565b80601f0160208091040260200160405190810160405280929190818152602001828054611acf90614892565b8015611b1c5780601f10611af157610100808354040283529160200191611b1c565b820191906000526020600020905b815481529060010190602001808311611aff57829003601f168201915b5050505050905090565b611b2e612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614910565b60405180910390fd5b7f000000000000000000000000dfcf63077f80d127a321c805de3bc91c10ebb23b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390614c4b565b60405180910390fd5b611c568282613865565b5050565b60125481565b601c5481565b60165481565b611c74612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614910565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b6000611de3611d2d612725565b84611dde856040518060600160405280602581526020016158696025913960016000611d57612725565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138019092919063ffffffff16565b61272d565b6001905092915050565b600b60039054906101000a900460ff1681565b60195481565b6000611e1a611e13612725565b84846128f8565b6001905092915050565b611e2c612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614910565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611fb5612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90614910565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120e191906144dd565b60405180910390a25050565b6120f5612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90614910565b60405180910390fd5b670de0b6b3a76400006103e8600561219a610e5d565b6121a4919061495f565b6121ae91906149e8565b6121b891906149e8565b8110156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614cdd565b60405180910390fd5b670de0b6b3a76400008161220e919061495f565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061223a612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090614910565b60405180910390fd5b620186a060016122d7610e5d565b6122e1919061495f565b6122eb91906149e8565b82101561232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232490614d6f565b60405180910390fd5b6103e8600861233a610e5d565b612344919061495f565b61234e91906149e8565b821115612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790614e01565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061243d612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c390614910565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b6124fc612725565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614910565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614e93565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b60008082846126d69190614aab565b90508381101561271b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271290614eff565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614f91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280490615023565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128eb91906145ae565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f906150b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf90615147565b60405180910390fd5b60008114156129f2576129ed83836000613906565b6137fc565b600b60009054906101000a900460ff16156130b557612a0f6119b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a7d5750612a4d6119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612af0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b095750600560149054906101000a900460ff16155b156130b457600b60019054906101000a900460ff16612c0357601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc35750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf9906151b3565b60405180910390fd5b5b600e60009054906101000a900460ff1615612dcb57612c206119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ca757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cff57507f000000000000000000000000dfcf63077f80d127a321c805de3bc91c10ebb23b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dca5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c9061526b565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e6e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1557600854811115612eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaf906152fd565b60405180910390fd5b600a54612ec48361146d565b82612ecf9190614aab565b1115612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0790615369565b60405180910390fd5b6130b3565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb85750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300757600854811115613002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff9906153fb565b60405180910390fd5b6130b2565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b157600a546130648361146d565b8261306f9190614aab565b11156130b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a790615369565b60405180910390fd5b5b5b5b5b5b60007f000000000000000000000000dfcf63077f80d127a321c805de3bc91c10ebb23b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050801580156131225750600b60039054906101000a900460ff165b15613245576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141580156131c457504262015180600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131c19190614aab565b10155b1561320c576017546015819055506018546014819055506019546016819055506016546015546014546131f79190614aab565b6132019190614aab565b601381905550613240565b6002601581905550600160148190555060165460155460145461322f9190614aab565b6132399190614aab565b6013819055505b613323565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156132d25742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60039054906101000a900460ff16613322576002601581905550600160148190555060006016819055506016546015546014546133119190614aab565b61331b9190614aab565b6013819055505b5b600061332e3061146d565b9050600060095482101590508080156133535750600b60029054906101000a900460ff165b801561336c5750600560149054906101000a900460ff16155b80156133c25750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134185750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561346e5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134b2576001600560146101000a81548160ff021916908315150217905550613496613b9b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135685750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561357257600090505b600081156137eb57602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135d557506000601354115b156136a25761360260646135f460135489613e8290919063ffffffff16565b613efd90919063ffffffff16565b905060135460155482613615919061495f565b61361f91906149e8565b601b60008282546136309190614aab565b9250508190555060135460165482613648919061495f565b61365291906149e8565b601c60008282546136639190614aab565b925050819055506013546014548261367b919061495f565b61368591906149e8565b601a60008282546136969190614aab565b925050819055506137c7565b602060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136fd57506000600f54115b156137c65761372a606461371c600f5489613e8290919063ffffffff16565b613efd90919063ffffffff16565b9050600f546011548261373d919061495f565b61374791906149e8565b601b60008282546137589190614aab565b92505081905550600f5460125482613770919061495f565b61377a91906149e8565b601c600082825461378b9190614aab565b92505081905550600f54601054826137a3919061495f565b6137ad91906149e8565b601a60008282546137be9190614aab565b925050819055505b5b60008111156137dc576137db883083613906565b5b80866137e8919061541b565b95505b6137f6888888613906565b50505050505b505050565b6000838311158290613849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384091906143c7565b60405180910390fd5b5060008385613858919061541b565b9050809150509392505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396d906150b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139dd90615147565b60405180910390fd5b6139f1838383613f47565b613a5c8160405180606001604052806026815260200161581b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138019092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613aef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613b8e91906145ae565b60405180910390a3505050565b6000613ba63061146d565b90506000601c54601a54601b54613bbd9190614aab565b613bc79190614aab565b9050600080831480613bd95750600082145b15613be657505050613e80565b6014600954613bf5919061495f565b831115613c0e576014600954613c0b919061495f565b92505b6000600283601b5486613c21919061495f565b613c2b91906149e8565b613c3591906149e8565b90506000613c4c8286613f4c90919063ffffffff16565b90506000479050613c5c82613f96565b6000613c718247613f4c90919063ffffffff16565b90506000613c9c87613c8e601a5485613e8290919063ffffffff16565b613efd90919063ffffffff16565b90506000613cc788613cb9601c5486613e8290919063ffffffff16565b613efd90919063ffffffff16565b90506000818385613cd8919061541b565b613ce2919061541b565b90506000601b819055506000601a819055506000601c81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d4290615480565b60006040518083038185875af1925050503d8060008114613d7f576040519150601f19603f3d011682016040523d82523d6000602084013e613d84565b606091505b505080985050600087118015613d9a5750600081115b15613de757613da987826141e2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b54604051613dde93929190615495565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e2d90615480565b60006040518083038185875af1925050503d8060008114613e6a576040519150601f19603f3d011682016040523d82523d6000602084013e613e6f565b606091505b505080985050505050505050505050505b565b600080831415613e955760009050613ef7565b60008284613ea3919061495f565b9050828482613eb291906149e8565b14613ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ee99061553e565b60405180910390fd5b809150505b92915050565b6000613f3f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506142cb565b905092915050565b505050565b6000613f8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613801565b905092915050565b6000600267ffffffffffffffff811115613fb357613fb261555e565b5b604051908082528060200260200182016040528015613fe15781602001602082028036833780820191505090505b5090503081600081518110613ff957613ff861558d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561409957600080fd5b505afa1580156140ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140d191906155d1565b816001815181106140e5576140e461558d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061414a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461272d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141ac9594939291906156f7565b600060405180830381600087803b1580156141c657600080fd5b505af11580156141da573d6000803e3d6000fd5b505050505050565b61420d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461272d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161427296959493929190615751565b6060604051808303818588803b15801561428b57600080fd5b505af115801561429f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142c491906157c7565b5050505050565b60008083118290614312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161430991906143c7565b60405180910390fd5b506000838561432191906149e8565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561436857808201518184015260208101905061434d565b83811115614377576000848401525b50505050565b6000601f19601f8301169050919050565b60006143998261432e565b6143a38185614339565b93506143b381856020860161434a565b6143bc8161437d565b840191505092915050565b600060208201905081810360008301526143e1818461438e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614419826143ee565b9050919050565b6144298161440e565b811461443457600080fd5b50565b60008135905061444681614420565b92915050565b6000819050919050565b61445f8161444c565b811461446a57600080fd5b50565b60008135905061447c81614456565b92915050565b60008060408385031215614499576144986143e9565b5b60006144a785828601614437565b92505060206144b88582860161446d565b9150509250929050565b60008115159050919050565b6144d7816144c2565b82525050565b60006020820190506144f260008301846144ce565b92915050565b60006020828403121561450e5761450d6143e9565b5b600061451c84828501614437565b91505092915050565b6000819050919050565b600061454a614545614540846143ee565b614525565b6143ee565b9050919050565b600061455c8261452f565b9050919050565b600061456e82614551565b9050919050565b61457e81614563565b82525050565b60006020820190506145996000830184614575565b92915050565b6145a88161444c565b82525050565b60006020820190506145c3600083018461459f565b92915050565b6000602082840312156145df576145de6143e9565b5b60006145ed8482850161446d565b91505092915050565b60008060008060008060c08789031215614613576146126143e9565b5b600061462189828a0161446d565b965050602061463289828a0161446d565b955050604061464389828a0161446d565b945050606061465489828a0161446d565b935050608061466589828a0161446d565b92505060a061467689828a0161446d565b9150509295509295509295565b60008060006060848603121561469c5761469b6143e9565b5b60006146aa86828701614437565b93505060206146bb86828701614437565b92505060406146cc8682870161446d565b9150509250925092565b600060ff82169050919050565b6146ec816146d6565b82525050565b600060208201905061470760008301846146e3565b92915050565b6147168161440e565b82525050565b6000602082019050614731600083018461470d565b92915050565b614740816144c2565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b6000806040838503121561477a576147796143e9565b5b600061478885828601614437565b92505060206147998582860161474e565b9150509250929050565b6000806000606084860312156147bc576147bb6143e9565b5b60006147ca8682870161446d565b93505060206147db8682870161446d565b92505060406147ec8682870161446d565b9150509250925092565b60006020828403121561480c5761480b6143e9565b5b600061481a8482850161474e565b91505092915050565b6000806040838503121561483a576148396143e9565b5b600061484885828601614437565b925050602061485985828601614437565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148aa57607f821691505b602082108114156148be576148bd614863565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148fa602083614339565b9150614905826148c4565b602082019050919050565b60006020820190508181036000830152614929816148ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061496a8261444c565b91506149758361444c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149ae576149ad614930565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149f38261444c565b91506149fe8361444c565b925082614a0e57614a0d6149b9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614a75602f83614339565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b6000614ab68261444c565b9150614ac18361444c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614af657614af5614930565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614b37601d83614339565b9150614b4282614b01565b602082019050919050565b60006020820190508181036000830152614b6681614b2a565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614ba3601d83614339565b9150614bae82614b6d565b602082019050919050565b60006020820190508181036000830152614bd281614b96565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c35603983614339565b9150614c4082614bd9565b604082019050919050565b60006020820190508181036000830152614c6481614c28565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614cc7602483614339565b9150614cd282614c6b565b604082019050919050565b60006020820190508181036000830152614cf681614cba565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d59603583614339565b9150614d6482614cfd565b604082019050919050565b60006020820190508181036000830152614d8881614d4c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614deb603483614339565b9150614df682614d8f565b604082019050919050565b60006020820190508181036000830152614e1a81614dde565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e7d602683614339565b9150614e8882614e21565b604082019050919050565b60006020820190508181036000830152614eac81614e70565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ee9601b83614339565b9150614ef482614eb3565b602082019050919050565b60006020820190508181036000830152614f1881614edc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614f7b602483614339565b9150614f8682614f1f565b604082019050919050565b60006020820190508181036000830152614faa81614f6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061500d602283614339565b915061501882614fb1565b604082019050919050565b6000602082019050818103600083015261503c81615000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061509f602583614339565b91506150aa82615043565b604082019050919050565b600060208201905081810360008301526150ce81615092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615131602383614339565b915061513c826150d5565b604082019050919050565b6000602082019050818103600083015261516081615124565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061519d601683614339565b91506151a882615167565b602082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615255604983614339565b9150615260826151d3565b606082019050919050565b6000602082019050818103600083015261528481615248565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006152e7603583614339565b91506152f28261528b565b604082019050919050565b60006020820190508181036000830152615316816152da565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615353601383614339565b915061535e8261531d565b602082019050919050565b6000602082019050818103600083015261538281615346565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006153e5603683614339565b91506153f082615389565b604082019050919050565b60006020820190508181036000830152615414816153d8565b9050919050565b60006154268261444c565b91506154318361444c565b92508282101561544457615443614930565b5b828203905092915050565b600081905092915050565b50565b600061546a60008361544f565b91506154758261545a565b600082019050919050565b600061548b8261545d565b9150819050919050565b60006060820190506154aa600083018661459f565b6154b7602083018561459f565b6154c4604083018461459f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615528602183614339565b9150615533826154cc565b604082019050919050565b600060208201905081810360008301526155578161551b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506155cb81614420565b92915050565b6000602082840312156155e7576155e66143e9565b5b60006155f5848285016155bc565b91505092915050565b6000819050919050565b600061562361561e615619846155fe565b614525565b61444c565b9050919050565b61563381615608565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61566e8161440e565b82525050565b60006156808383615665565b60208301905092915050565b6000602082019050919050565b60006156a482615639565b6156ae8185615644565b93506156b983615655565b8060005b838110156156ea5781516156d18882615674565b97506156dc8361568c565b9250506001810190506156bd565b5085935050505092915050565b600060a08201905061570c600083018861459f565b615719602083018761562a565b818103604083015261572b8186615699565b905061573a606083018561470d565b615747608083018461459f565b9695505050505050565b600060c082019050615766600083018961470d565b615773602083018861459f565b615780604083018761562a565b61578d606083018661562a565b61579a608083018561470d565b6157a760a083018461459f565b979650505050505050565b6000815190506157c181614456565b92915050565b6000806000606084860312156157e0576157df6143e9565b5b60006157ee868287016157b2565b93505060206157ff868287016157b2565b9250506040615810868287016157b2565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ec1548dc64281c2113d0a4fa733a9784ab2162d72c4f728b7793b2b8ee68a77664736f6c63430008090033
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.