ERC-20
Overview
Max Total Supply
420,690,000,000,000 XRP 2.0
Holders
147
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
50,124 XRP 2.0Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XRPTwo
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; 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 Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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 { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } 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; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by 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 ); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } 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); 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; } 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; } 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; } 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; } 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 XRPTwo is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD); bool private swapping; address public marketingWallet; address public devWallet; uint256 public swapTokensAtAmount; uint256 public swapTokensMaxAmount; 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 feeDenominator; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exclude from fees mapping(address => bool) private _isExcludedFromFees; // 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 ); constructor() ERC20("XRP 2.0", "XRP 2.0") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 1; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 1; uint256 _feeDenominator = 100; uint256 totalSupply = 420690000000000 * 1e18; // change your supply here swapTokensAtAmount = (totalSupply * 1) / 100000; // 0.001% swap wallet swapTokensMaxAmount = (totalSupply * 10) / 100; // 10% of total suppy to prevent liquidity issues feeDenominator = _feeDenominator; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x75389C42Ed4366E2fD508846608A06026AeD9800); // put wallet here - same devWallet = address(0x75389C42Ed4366E2fD508846608A06026AeD9800); // put wallet here - same // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(address(0x344aAF561aecCe2235a9c646448Feb4AF8a63493), totalSupply); } receive() external payable {} // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } // change the maximum amount of tokens to sell from fees function updateSwapTokensMaxAmount( uint256 newAmount ) external onlyOwner returns (bool) { swapTokensMaxAmount = newAmount; return true; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function 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]; } 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; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(false); 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(feeDenominator); 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(feeDenominator); 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 deadAddress, block.timestamp ); } function claimStuckTokens(address _token) external onlyOwner { if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } IERC20 erc20token = IERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } function manualSwap() external onlyOwner { swapping = true; swapBack(true); swapping = false; } function swapBack(bool _swapAll) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (!_swapAll && (contractBalance == 0 || totalTokensToSwap == 0)) { return; } if (!_swapAll && contractBalance > swapTokensMaxAmount) { contractBalance = swapTokensMaxAmount; } // 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 ); } if (ethForMarketing > 0) { (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"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":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensMaxAmount","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":[{"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":[{"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensMaxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040518060400160405280600781526020017f58525020322e30000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f58525020322e300000000000000000000000000000000000000000000000000081525081600390816200008f919062000c4f565b508060049081620000a1919062000c4f565b5050506000620000b66200059f60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000214919062000da0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a2919062000da0565b6040518363ffffffff1660e01b8152600401620002c192919062000de3565b6020604051808303816000875af1158015620002e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000307919062000da0565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034f60a0516001620005a760201b60201c565b60008060006001905060008060006001905060006064905060006d14bddab3e51a57cff87a500000009050620186a06001826200038d919062000e3f565b62000399919062000eb9565b6008819055506064600a82620003b0919062000e3f565b620003bc919062000eb9565b6009819055508160128190555087600b8190555086600c8190555085600d81905550600d54600c54600b54620003f3919062000ef1565b620003ff919062000ef1565b600a8190555084600f819055508360108190555082601181905550601154601054600f546200042f919062000ef1565b6200043b919062000ef1565b600e819055507375389c42ed4366e2fd508846608a06026aed9800600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507375389c42ed4366e2fd508846608a06026aed9800600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050d620004ff6200064860201b60201c565b60016200067260201b60201c565b62000542600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200067260201b60201c565b620005553060016200067260201b60201c565b6200056a61dead60016200067260201b60201c565b6200059073344aaf561aecce2235a9c646448feb4af8a6349382620007bf60201b60201c565b505050505050505050620010fb565b600033905090565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006826200059f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000714576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070b9062000f8d565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007b3919062000fcc565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008289062001039565b60405180910390fd5b62000845600083836200096d60201b60201c565b62000861816002546200097260201b62001fce1790919060201c565b600281905550620008bf816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200097260201b62001fce1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200096191906200106c565b60405180910390a35050565b505050565b600080828462000983919062000ef1565b905083811015620009cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c290620010d9565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a5757607f821691505b60208210810362000a6d5762000a6c62000a0f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ad77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a98565b62000ae3868362000a98565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b3062000b2a62000b248462000afb565b62000b05565b62000afb565b9050919050565b6000819050919050565b62000b4c8362000b0f565b62000b6462000b5b8262000b37565b84845462000aa5565b825550505050565b600090565b62000b7b62000b6c565b62000b8881848462000b41565b505050565b5b8181101562000bb05762000ba460008262000b71565b60018101905062000b8e565b5050565b601f82111562000bff5762000bc98162000a73565b62000bd48462000a88565b8101602085101562000be4578190505b62000bfc62000bf38562000a88565b83018262000b8d565b50505b505050565b600082821c905092915050565b600062000c246000198460080262000c04565b1980831691505092915050565b600062000c3f838362000c11565b9150826002028217905092915050565b62000c5a82620009d5565b67ffffffffffffffff81111562000c765762000c75620009e0565b5b62000c82825462000a3e565b62000c8f82828562000bb4565b600060209050601f83116001811462000cc7576000841562000cb2578287015190505b62000cbe858262000c31565b86555062000d2e565b601f19841662000cd78662000a73565b60005b8281101562000d015784890151825560018201915060208501945060208101905062000cda565b8683101562000d21578489015162000d1d601f89168262000c11565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d688262000d3b565b9050919050565b62000d7a8162000d5b565b811462000d8657600080fd5b50565b60008151905062000d9a8162000d6f565b92915050565b60006020828403121562000db95762000db862000d36565b5b600062000dc98482850162000d89565b91505092915050565b62000ddd8162000d5b565b82525050565b600060408201905062000dfa600083018562000dd2565b62000e09602083018462000dd2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e4c8262000afb565b915062000e598362000afb565b925082820262000e698162000afb565b9150828204841483151762000e835762000e8262000e10565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ec68262000afb565b915062000ed38362000afb565b92508262000ee65762000ee562000e8a565b5b828204905092915050565b600062000efe8262000afb565b915062000f0b8362000afb565b925082820190508082111562000f265762000f2562000e10565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f7560208362000f2c565b915062000f828262000f3d565b602082019050919050565b6000602082019050818103600083015262000fa88162000f66565b9050919050565b60008115159050919050565b62000fc68162000faf565b82525050565b600060208201905062000fe3600083018462000fbb565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001021601f8362000f2c565b91506200102e8262000fe9565b602082019050919050565b60006020820190508181036000830152620010548162001012565b9050919050565b620010668162000afb565b82525050565b60006020820190506200108360008301846200105b565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620010c1601b8362000f2c565b9150620010ce8262001089565b602082019050919050565b60006020820190508181036000830152620010f481620010b2565b9050919050565b60805160a0516143526200114b60003960008181610e8301526114aa015260008181610b5101528181612ff1015281816130d2015281816130f90152818161319501526131bc01526143526000f3fe6080604052600436106102765760003560e01c80638095d5641161014f578063aacebbe3116100c1578063dd62ed3e1161007a578063dd62ed3e1461098f578063e2f45605146109cc578063f11a24d3146109f7578063f2fde38b14610a22578063f637434214610a4b578063f9d0831a14610a765761027d565b8063aacebbe31461086f578063b62496f514610898578063c0246668146108d5578063c17b5b8c146108fe578063d257b34f14610927578063d85ba063146109645761027d565b80639a7a23d6116101135780639a7a23d61461074b5780639c3b4fdc146107745780639fccce321461079f578063a0d82dc5146107ca578063a457c2d7146107f5578063a9059cbb146108325761027d565b80638095d564146106765780638da5cb5b1461069f5780638ea5220f146106ca57806392136913146106f557806395d89b41146107205761027d565b806339509351116101e85780636a486a8e116101ac5780636a486a8e1461056457806370a082311461058f578063715018a6146105cc57806375f0a874146105e357806379d28eff1461060e5780637bce5a041461064b5761027d565b8063395093511461047d57806349bd5a5e146104ba5780634fbee193146104e557806351bc3c85146105225780635663ee3d146105395761027d565b80631816467f1161023a5780631816467f1461036b5780631a8145bb146103945780631f3fed8f146103bf57806323b872dd146103ea57806327c8f83514610427578063313ce567146104525761027d565b806306fdde0314610282578063095ea7b3146102ad5780631694505e146102ea578063180b0d7e1461031557806318160ddd146103405761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a9f565b6040516102a49190613363565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061341e565b610b31565b6040516102e19190613479565b60405180910390f35b3480156102f657600080fd5b506102ff610b4f565b60405161030c91906134f3565b60405180910390f35b34801561032157600080fd5b5061032a610b73565b604051610337919061351d565b60405180910390f35b34801561034c57600080fd5b50610355610b79565b604051610362919061351d565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613538565b610b83565b005b3480156103a057600080fd5b506103a9610cda565b6040516103b6919061351d565b60405180910390f35b3480156103cb57600080fd5b506103d4610ce0565b6040516103e1919061351d565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613565565b610ce6565b60405161041e9190613479565b60405180910390f35b34801561043357600080fd5b5061043c610dbf565b60405161044991906135c7565b60405180910390f35b34801561045e57600080fd5b50610467610dc5565b60405161047491906135fe565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f919061341e565b610dce565b6040516104b19190613479565b60405180910390f35b3480156104c657600080fd5b506104cf610e81565b6040516104dc91906135c7565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190613538565b610ea5565b6040516105199190613479565b60405180910390f35b34801561052e57600080fd5b50610537610efb565b005b34801561054557600080fd5b5061054e610fd4565b60405161055b919061351d565b60405180910390f35b34801561057057600080fd5b50610579610fda565b604051610586919061351d565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613538565b610fe0565b6040516105c3919061351d565b60405180910390f35b3480156105d857600080fd5b506105e1611028565b005b3480156105ef57600080fd5b506105f8611180565b60405161060591906135c7565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190613619565b6111a6565b6040516106429190613479565b60405180910390f35b34801561065757600080fd5b5061066061124f565b60405161066d919061351d565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613646565b611255565b005b3480156106ab57600080fd5b506106b4611329565b6040516106c191906135c7565b60405180910390f35b3480156106d657600080fd5b506106df611353565b6040516106ec91906135c7565b60405180910390f35b34801561070157600080fd5b5061070a611379565b604051610717919061351d565b60405180910390f35b34801561072c57600080fd5b5061073561137f565b6040516107429190613363565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d91906136c5565b611411565b005b34801561078057600080fd5b50610789611544565b604051610796919061351d565b60405180910390f35b3480156107ab57600080fd5b506107b461154a565b6040516107c1919061351d565b60405180910390f35b3480156107d657600080fd5b506107df611550565b6040516107ec919061351d565b60405180910390f35b34801561080157600080fd5b5061081c6004803603810190610817919061341e565b611556565b6040516108299190613479565b60405180910390f35b34801561083e57600080fd5b506108596004803603810190610854919061341e565b611623565b6040516108669190613479565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613538565b611641565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190613538565b611798565b6040516108cc9190613479565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f791906136c5565b6117b8565b005b34801561090a57600080fd5b5061092560048036038101906109209190613646565b6118f8565b005b34801561093357600080fd5b5061094e60048036038101906109499190613619565b6119cc565b60405161095b9190613479565b60405180910390f35b34801561097057600080fd5b50610979611b3c565b604051610986919061351d565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613705565b611b42565b6040516109c3919061351d565b60405180910390f35b3480156109d857600080fd5b506109e1611bc9565b6040516109ee919061351d565b60405180910390f35b348015610a0357600080fd5b50610a0c611bcf565b604051610a19919061351d565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190613538565b611bd5565b005b348015610a5757600080fd5b50610a60611d9b565b604051610a6d919061351d565b60405180910390f35b348015610a8257600080fd5b50610a9d6004803603810190610a989190613538565b611da1565b005b606060038054610aae90613774565b80601f0160208091040260200160405190810160405280929190818152602001828054610ada90613774565b8015610b275780601f10610afc57610100808354040283529160200191610b27565b820191906000526020600020905b815481529060010190602001808311610b0a57829003601f168201915b5050505050905090565b6000610b45610b3e61202c565b8484612034565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60125481565b6000600254905090565b610b8b61202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906137f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b6000610cf38484846121fd565b610db484610cff61202c565b610daf856040518060600160405280602881526020016142d060289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d6561202c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127bd9092919063ffffffff16565b612034565b600190509392505050565b61dead81565b60006012905090565b6000610e77610ddb61202c565b84610e728560016000610dec61202c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fce90919063ffffffff16565b612034565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f0361202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906137f1565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550610fb76001612821565b6000600560146101000a81548160ff021916908315150217905550565b60095481565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906137f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006111b061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906137f1565b60405180910390fd5b8160098190555060019050919050565b600b5481565b61125d61202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906137f1565b60405180910390fd5b82600b8190555081600c8190555080600d81905550600d54600c54600b546113149190613840565b61131e9190613840565b600a81905550505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60606004805461138e90613774565b80601f01602080910402602001604051908101604052809291908181526020018280546113ba90613774565b80156114075780601f106113dc57610100808354040283529160200191611407565b820191906000526020600020905b8154815290600101906020018083116113ea57829003601f168201915b5050505050905090565b61141961202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f906137f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906138e6565b60405180910390fd5b6115408282612b10565b5050565b600d5481565b60155481565b60115481565b600061161961156361202c565b84611614856040518060600160405280602581526020016142f8602591396001600061158d61202c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127bd9092919063ffffffff16565b612034565b6001905092915050565b600061163761163061202c565b84846121fd565b6001905092915050565b61164961202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906137f1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b6117c061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906137f1565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118ec9190613479565b60405180910390a25050565b61190061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906137f1565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f546119b79190613840565b6119c19190613840565b600e81905550505050565b60006119d661202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c906137f1565b60405180910390fd5b620186a06001611a73610b79565b611a7d9190613906565b611a879190613977565b821015611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613a1a565b60405180910390fd5b6103e86005611ad6610b79565b611ae09190613906565b611aea9190613977565b821115611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613aac565b60405180910390fd5b8160088190555060019050919050565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600c5481565b611bdd61202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906137f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613b3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b611da961202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906137f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ebf57611e74611329565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611eb9573d6000803e3d6000fd5b50611fcb565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611eff91906135c7565b602060405180830381865afa158015611f1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f409190613b73565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611f66611329565b836040518363ffffffff1660e01b8152600401611f84929190613ba0565b6020604051808303816000875af1158015611fa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc79190613bde565b5050505b50565b6000808284611fdd9190613840565b905083811015612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990613c57565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a90613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990613d7b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121f0919061351d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290613e9f565b60405180910390fd5b600081036122f4576122ef83836000612bb1565b6127b8565b60006122ff30610fe0565b9050600060085482101590508080156123255750600560149054906101000a900460ff16155b801561237b5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123d15750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124275750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561246d576001600560146101000a81548160ff0219169083151502179055506124516000612821565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125235750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561252d57600090505b600081156127a857601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561259057506000600e54115b1561265e576125be6012546125b0600e5488612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600e54601054826125d19190613906565b6125db9190613977565b601460008282546125ec9190613840565b92505081905550600e54601154826126049190613906565b61260e9190613977565b6015600082825461261f9190613840565b92505081905550600e54600f54826126379190613906565b6126419190613977565b601360008282546126529190613840565b92505081905550612784565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126b957506000600a54115b15612783576126e76012546126d9600a5488612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600a54600c54826126fa9190613906565b6127049190613977565b601460008282546127159190613840565b92505081905550600a54600d548261272d9190613906565b6127379190613977565b601560008282546127489190613840565b92505081905550600a54600b54826127609190613906565b61276a9190613977565b6013600082825461277b9190613840565b925050819055505b5b600081111561279957612798873083612bb1565b5b80856127a59190613ebf565b94505b6127b3878787612bb1565b505050505b505050565b6000838311158290612805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fc9190613363565b60405180910390fd5b50600083856128149190613ebf565b9050809150509392505050565b600061282c30610fe0565b905060006015546013546014546128439190613840565b61284d9190613840565b905060008315801561286a575060008314806128695750600082145b5b1561287757505050612b0d565b83158015612886575060095483115b156128915760095492505b6000600283601454866128a49190613906565b6128ae9190613977565b6128b89190613977565b905060006128cf8286612f0890919063ffffffff16565b905060004790506128df82612f52565b60006128f48247612f0890919063ffffffff16565b9050600061291f8761291160135485612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600061294a8861293c60155486612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600081838561295b9190613ebf565b6129659190613ebf565b9050600060148190555060006013819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516129c590613f24565b60006040518083038185875af1925050503d8060008114612a02576040519150601f19603f3d011682016040523d82523d6000602084013e612a07565b606091505b505080985050600087118015612a1d5750600081115b15612a6a57612a2c878261318f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601454604051612a6193929190613f39565b60405180910390a15b6000831115612b0257600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ab990613f24565b60006040518083038185875af1925050503d8060008114612af6576040519150601f19603f3d011682016040523d82523d6000602084013e612afb565b606091505b5050809850505b505050505050505050505b50565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8690613e9f565b60405180910390fd5b612c9a83838361326b565b612d05816040518060600160405280602681526020016142aa602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127bd9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d98816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fce90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e37919061351d565b60405180910390a3505050565b6000808303612e565760009050612eb8565b60008284612e649190613906565b9050828482612e739190613977565b14612eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaa90613fe2565b60405180910390fd5b809150505b92915050565b6000612f0083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613270565b905092915050565b6000612f4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506127bd565b905092915050565b6000600267ffffffffffffffff811115612f6f57612f6e614002565b5b604051908082528060200260200182016040528015612f9d5781602001602082028036833780820191505090505b5090503081600081518110612fb557612fb4614031565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561305a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307e9190614075565b8160018151811061309257613091614031565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130f7307f000000000000000000000000000000000000000000000000000000000000000084612034565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161315995949392919061419b565b600060405180830381600087803b15801561317357600080fd5b505af1158015613187573d6000803e3d6000fd5b505050505050565b6131ba307f000000000000000000000000000000000000000000000000000000000000000084612034565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613221969594939291906141f5565b60606040518083038185885af115801561323f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132649190614256565b5050505050565b505050565b600080831182906132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae9190613363565b60405180910390fd5b50600083856132c69190613977565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561330d5780820151818401526020810190506132f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000613335826132d3565b61333f81856132de565b935061334f8185602086016132ef565b61335881613319565b840191505092915050565b6000602082019050818103600083015261337d818461332a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133b58261338a565b9050919050565b6133c5816133aa565b81146133d057600080fd5b50565b6000813590506133e2816133bc565b92915050565b6000819050919050565b6133fb816133e8565b811461340657600080fd5b50565b600081359050613418816133f2565b92915050565b6000806040838503121561343557613434613385565b5b6000613443858286016133d3565b925050602061345485828601613409565b9150509250929050565b60008115159050919050565b6134738161345e565b82525050565b600060208201905061348e600083018461346a565b92915050565b6000819050919050565b60006134b96134b46134af8461338a565b613494565b61338a565b9050919050565b60006134cb8261349e565b9050919050565b60006134dd826134c0565b9050919050565b6134ed816134d2565b82525050565b600060208201905061350860008301846134e4565b92915050565b613517816133e8565b82525050565b6000602082019050613532600083018461350e565b92915050565b60006020828403121561354e5761354d613385565b5b600061355c848285016133d3565b91505092915050565b60008060006060848603121561357e5761357d613385565b5b600061358c868287016133d3565b935050602061359d868287016133d3565b92505060406135ae86828701613409565b9150509250925092565b6135c1816133aa565b82525050565b60006020820190506135dc60008301846135b8565b92915050565b600060ff82169050919050565b6135f8816135e2565b82525050565b600060208201905061361360008301846135ef565b92915050565b60006020828403121561362f5761362e613385565b5b600061363d84828501613409565b91505092915050565b60008060006060848603121561365f5761365e613385565b5b600061366d86828701613409565b935050602061367e86828701613409565b925050604061368f86828701613409565b9150509250925092565b6136a28161345e565b81146136ad57600080fd5b50565b6000813590506136bf81613699565b92915050565b600080604083850312156136dc576136db613385565b5b60006136ea858286016133d3565b92505060206136fb858286016136b0565b9150509250929050565b6000806040838503121561371c5761371b613385565b5b600061372a858286016133d3565b925050602061373b858286016133d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061378c57607f821691505b60208210810361379f5761379e613745565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137db6020836132de565b91506137e6826137a5565b602082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061384b826133e8565b9150613856836133e8565b925082820190508082111561386e5761386d613811565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138d06039836132de565b91506138db82613874565b604082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b6000613911826133e8565b915061391c836133e8565b925082820261392a816133e8565b9150828204841483151761394157613940613811565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613982826133e8565b915061398d836133e8565b92508261399d5761399c613948565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613a046035836132de565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613a966034836132de565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b286026836132de565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b600081519050613b6d816133f2565b92915050565b600060208284031215613b8957613b88613385565b5b6000613b9784828501613b5e565b91505092915050565b6000604082019050613bb560008301856135b8565b613bc2602083018461350e565b9392505050565b600081519050613bd881613699565b92915050565b600060208284031215613bf457613bf3613385565b5b6000613c0284828501613bc9565b91505092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613c41601b836132de565b9150613c4c82613c0b565b602082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613cd36024836132de565b9150613cde82613c77565b604082019050919050565b60006020820190508181036000830152613d0281613cc6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d656022836132de565b9150613d7082613d09565b604082019050919050565b60006020820190508181036000830152613d9481613d58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613df76025836132de565b9150613e0282613d9b565b604082019050919050565b60006020820190508181036000830152613e2681613dea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e896023836132de565b9150613e9482613e2d565b604082019050919050565b60006020820190508181036000830152613eb881613e7c565b9050919050565b6000613eca826133e8565b9150613ed5836133e8565b9250828203905081811115613eed57613eec613811565b5b92915050565b600081905092915050565b50565b6000613f0e600083613ef3565b9150613f1982613efe565b600082019050919050565b6000613f2f82613f01565b9150819050919050565b6000606082019050613f4e600083018661350e565b613f5b602083018561350e565b613f68604083018461350e565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fcc6021836132de565b9150613fd782613f70565b604082019050919050565b60006020820190508181036000830152613ffb81613fbf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061406f816133bc565b92915050565b60006020828403121561408b5761408a613385565b5b600061409984828501614060565b91505092915050565b6000819050919050565b60006140c76140c26140bd846140a2565b613494565b6133e8565b9050919050565b6140d7816140ac565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614112816133aa565b82525050565b60006141248383614109565b60208301905092915050565b6000602082019050919050565b6000614148826140dd565b61415281856140e8565b935061415d836140f9565b8060005b8381101561418e5781516141758882614118565b975061418083614130565b925050600181019050614161565b5085935050505092915050565b600060a0820190506141b0600083018861350e565b6141bd60208301876140ce565b81810360408301526141cf818661413d565b90506141de60608301856135b8565b6141eb608083018461350e565b9695505050505050565b600060c08201905061420a60008301896135b8565b614217602083018861350e565b61422460408301876140ce565b61423160608301866140ce565b61423e60808301856135b8565b61424b60a083018461350e565b979650505050505050565b60008060006060848603121561426f5761426e613385565b5b600061427d86828701613b5e565b935050602061428e86828701613b5e565b925050604061429f86828701613b5e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208e8ece54afdbcae987475415a40cdd168ffbf378312768273f306342f7e7434b64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102765760003560e01c80638095d5641161014f578063aacebbe3116100c1578063dd62ed3e1161007a578063dd62ed3e1461098f578063e2f45605146109cc578063f11a24d3146109f7578063f2fde38b14610a22578063f637434214610a4b578063f9d0831a14610a765761027d565b8063aacebbe31461086f578063b62496f514610898578063c0246668146108d5578063c17b5b8c146108fe578063d257b34f14610927578063d85ba063146109645761027d565b80639a7a23d6116101135780639a7a23d61461074b5780639c3b4fdc146107745780639fccce321461079f578063a0d82dc5146107ca578063a457c2d7146107f5578063a9059cbb146108325761027d565b80638095d564146106765780638da5cb5b1461069f5780638ea5220f146106ca57806392136913146106f557806395d89b41146107205761027d565b806339509351116101e85780636a486a8e116101ac5780636a486a8e1461056457806370a082311461058f578063715018a6146105cc57806375f0a874146105e357806379d28eff1461060e5780637bce5a041461064b5761027d565b8063395093511461047d57806349bd5a5e146104ba5780634fbee193146104e557806351bc3c85146105225780635663ee3d146105395761027d565b80631816467f1161023a5780631816467f1461036b5780631a8145bb146103945780631f3fed8f146103bf57806323b872dd146103ea57806327c8f83514610427578063313ce567146104525761027d565b806306fdde0314610282578063095ea7b3146102ad5780631694505e146102ea578063180b0d7e1461031557806318160ddd146103405761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a9f565b6040516102a49190613363565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061341e565b610b31565b6040516102e19190613479565b60405180910390f35b3480156102f657600080fd5b506102ff610b4f565b60405161030c91906134f3565b60405180910390f35b34801561032157600080fd5b5061032a610b73565b604051610337919061351d565b60405180910390f35b34801561034c57600080fd5b50610355610b79565b604051610362919061351d565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613538565b610b83565b005b3480156103a057600080fd5b506103a9610cda565b6040516103b6919061351d565b60405180910390f35b3480156103cb57600080fd5b506103d4610ce0565b6040516103e1919061351d565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613565565b610ce6565b60405161041e9190613479565b60405180910390f35b34801561043357600080fd5b5061043c610dbf565b60405161044991906135c7565b60405180910390f35b34801561045e57600080fd5b50610467610dc5565b60405161047491906135fe565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f919061341e565b610dce565b6040516104b19190613479565b60405180910390f35b3480156104c657600080fd5b506104cf610e81565b6040516104dc91906135c7565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190613538565b610ea5565b6040516105199190613479565b60405180910390f35b34801561052e57600080fd5b50610537610efb565b005b34801561054557600080fd5b5061054e610fd4565b60405161055b919061351d565b60405180910390f35b34801561057057600080fd5b50610579610fda565b604051610586919061351d565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613538565b610fe0565b6040516105c3919061351d565b60405180910390f35b3480156105d857600080fd5b506105e1611028565b005b3480156105ef57600080fd5b506105f8611180565b60405161060591906135c7565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190613619565b6111a6565b6040516106429190613479565b60405180910390f35b34801561065757600080fd5b5061066061124f565b60405161066d919061351d565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613646565b611255565b005b3480156106ab57600080fd5b506106b4611329565b6040516106c191906135c7565b60405180910390f35b3480156106d657600080fd5b506106df611353565b6040516106ec91906135c7565b60405180910390f35b34801561070157600080fd5b5061070a611379565b604051610717919061351d565b60405180910390f35b34801561072c57600080fd5b5061073561137f565b6040516107429190613363565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d91906136c5565b611411565b005b34801561078057600080fd5b50610789611544565b604051610796919061351d565b60405180910390f35b3480156107ab57600080fd5b506107b461154a565b6040516107c1919061351d565b60405180910390f35b3480156107d657600080fd5b506107df611550565b6040516107ec919061351d565b60405180910390f35b34801561080157600080fd5b5061081c6004803603810190610817919061341e565b611556565b6040516108299190613479565b60405180910390f35b34801561083e57600080fd5b506108596004803603810190610854919061341e565b611623565b6040516108669190613479565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613538565b611641565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190613538565b611798565b6040516108cc9190613479565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f791906136c5565b6117b8565b005b34801561090a57600080fd5b5061092560048036038101906109209190613646565b6118f8565b005b34801561093357600080fd5b5061094e60048036038101906109499190613619565b6119cc565b60405161095b9190613479565b60405180910390f35b34801561097057600080fd5b50610979611b3c565b604051610986919061351d565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613705565b611b42565b6040516109c3919061351d565b60405180910390f35b3480156109d857600080fd5b506109e1611bc9565b6040516109ee919061351d565b60405180910390f35b348015610a0357600080fd5b50610a0c611bcf565b604051610a19919061351d565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190613538565b611bd5565b005b348015610a5757600080fd5b50610a60611d9b565b604051610a6d919061351d565b60405180910390f35b348015610a8257600080fd5b50610a9d6004803603810190610a989190613538565b611da1565b005b606060038054610aae90613774565b80601f0160208091040260200160405190810160405280929190818152602001828054610ada90613774565b8015610b275780601f10610afc57610100808354040283529160200191610b27565b820191906000526020600020905b815481529060010190602001808311610b0a57829003601f168201915b5050505050905090565b6000610b45610b3e61202c565b8484612034565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60125481565b6000600254905090565b610b8b61202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906137f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b6000610cf38484846121fd565b610db484610cff61202c565b610daf856040518060600160405280602881526020016142d060289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d6561202c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127bd9092919063ffffffff16565b612034565b600190509392505050565b61dead81565b60006012905090565b6000610e77610ddb61202c565b84610e728560016000610dec61202c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fce90919063ffffffff16565b612034565b6001905092915050565b7f0000000000000000000000005fc14695137bae93e45b2cc2fd37ffd0473f7a0b81565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f0361202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906137f1565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550610fb76001612821565b6000600560146101000a81548160ff021916908315150217905550565b60095481565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906137f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006111b061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906137f1565b60405180910390fd5b8160098190555060019050919050565b600b5481565b61125d61202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906137f1565b60405180910390fd5b82600b8190555081600c8190555080600d81905550600d54600c54600b546113149190613840565b61131e9190613840565b600a81905550505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60606004805461138e90613774565b80601f01602080910402602001604051908101604052809291908181526020018280546113ba90613774565b80156114075780601f106113dc57610100808354040283529160200191611407565b820191906000526020600020905b8154815290600101906020018083116113ea57829003601f168201915b5050505050905090565b61141961202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f906137f1565b60405180910390fd5b7f0000000000000000000000005fc14695137bae93e45b2cc2fd37ffd0473f7a0b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906138e6565b60405180910390fd5b6115408282612b10565b5050565b600d5481565b60155481565b60115481565b600061161961156361202c565b84611614856040518060600160405280602581526020016142f8602591396001600061158d61202c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127bd9092919063ffffffff16565b612034565b6001905092915050565b600061163761163061202c565b84846121fd565b6001905092915050565b61164961202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906137f1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b6117c061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906137f1565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118ec9190613479565b60405180910390a25050565b61190061202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906137f1565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f546119b79190613840565b6119c19190613840565b600e81905550505050565b60006119d661202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c906137f1565b60405180910390fd5b620186a06001611a73610b79565b611a7d9190613906565b611a879190613977565b821015611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613a1a565b60405180910390fd5b6103e86005611ad6610b79565b611ae09190613906565b611aea9190613977565b821115611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613aac565b60405180910390fd5b8160088190555060019050919050565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600c5481565b611bdd61202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906137f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613b3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b611da961202c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906137f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ebf57611e74611329565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611eb9573d6000803e3d6000fd5b50611fcb565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611eff91906135c7565b602060405180830381865afa158015611f1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f409190613b73565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611f66611329565b836040518363ffffffff1660e01b8152600401611f84929190613ba0565b6020604051808303816000875af1158015611fa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc79190613bde565b5050505b50565b6000808284611fdd9190613840565b905083811015612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990613c57565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a90613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990613d7b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121f0919061351d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290613e9f565b60405180910390fd5b600081036122f4576122ef83836000612bb1565b6127b8565b60006122ff30610fe0565b9050600060085482101590508080156123255750600560149054906101000a900460ff16155b801561237b5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123d15750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124275750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561246d576001600560146101000a81548160ff0219169083151502179055506124516000612821565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125235750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561252d57600090505b600081156127a857601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561259057506000600e54115b1561265e576125be6012546125b0600e5488612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600e54601054826125d19190613906565b6125db9190613977565b601460008282546125ec9190613840565b92505081905550600e54601154826126049190613906565b61260e9190613977565b6015600082825461261f9190613840565b92505081905550600e54600f54826126379190613906565b6126419190613977565b601360008282546126529190613840565b92505081905550612784565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126b957506000600a54115b15612783576126e76012546126d9600a5488612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600a54600c54826126fa9190613906565b6127049190613977565b601460008282546127159190613840565b92505081905550600a54600d548261272d9190613906565b6127379190613977565b601560008282546127489190613840565b92505081905550600a54600b54826127609190613906565b61276a9190613977565b6013600082825461277b9190613840565b925050819055505b5b600081111561279957612798873083612bb1565b5b80856127a59190613ebf565b94505b6127b3878787612bb1565b505050505b505050565b6000838311158290612805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fc9190613363565b60405180910390fd5b50600083856128149190613ebf565b9050809150509392505050565b600061282c30610fe0565b905060006015546013546014546128439190613840565b61284d9190613840565b905060008315801561286a575060008314806128695750600082145b5b1561287757505050612b0d565b83158015612886575060095483115b156128915760095492505b6000600283601454866128a49190613906565b6128ae9190613977565b6128b89190613977565b905060006128cf8286612f0890919063ffffffff16565b905060004790506128df82612f52565b60006128f48247612f0890919063ffffffff16565b9050600061291f8761291160135485612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600061294a8861293c60155486612e4490919063ffffffff16565b612ebe90919063ffffffff16565b9050600081838561295b9190613ebf565b6129659190613ebf565b9050600060148190555060006013819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516129c590613f24565b60006040518083038185875af1925050503d8060008114612a02576040519150601f19603f3d011682016040523d82523d6000602084013e612a07565b606091505b505080985050600087118015612a1d5750600081115b15612a6a57612a2c878261318f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601454604051612a6193929190613f39565b60405180910390a15b6000831115612b0257600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ab990613f24565b60006040518083038185875af1925050503d8060008114612af6576040519150601f19603f3d011682016040523d82523d6000602084013e612afb565b606091505b5050809850505b505050505050505050505b50565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8690613e9f565b60405180910390fd5b612c9a83838361326b565b612d05816040518060600160405280602681526020016142aa602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127bd9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d98816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fce90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e37919061351d565b60405180910390a3505050565b6000808303612e565760009050612eb8565b60008284612e649190613906565b9050828482612e739190613977565b14612eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaa90613fe2565b60405180910390fd5b809150505b92915050565b6000612f0083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613270565b905092915050565b6000612f4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506127bd565b905092915050565b6000600267ffffffffffffffff811115612f6f57612f6e614002565b5b604051908082528060200260200182016040528015612f9d5781602001602082028036833780820191505090505b5090503081600081518110612fb557612fb4614031565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561305a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307e9190614075565b8160018151811061309257613091614031565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130f7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612034565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161315995949392919061419b565b600060405180830381600087803b15801561317357600080fd5b505af1158015613187573d6000803e3d6000fd5b505050505050565b6131ba307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612034565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613221969594939291906141f5565b60606040518083038185885af115801561323f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132649190614256565b5050505050565b505050565b600080831182906132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae9190613363565b60405180910390fd5b50600083856132c69190613977565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561330d5780820151818401526020810190506132f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000613335826132d3565b61333f81856132de565b935061334f8185602086016132ef565b61335881613319565b840191505092915050565b6000602082019050818103600083015261337d818461332a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133b58261338a565b9050919050565b6133c5816133aa565b81146133d057600080fd5b50565b6000813590506133e2816133bc565b92915050565b6000819050919050565b6133fb816133e8565b811461340657600080fd5b50565b600081359050613418816133f2565b92915050565b6000806040838503121561343557613434613385565b5b6000613443858286016133d3565b925050602061345485828601613409565b9150509250929050565b60008115159050919050565b6134738161345e565b82525050565b600060208201905061348e600083018461346a565b92915050565b6000819050919050565b60006134b96134b46134af8461338a565b613494565b61338a565b9050919050565b60006134cb8261349e565b9050919050565b60006134dd826134c0565b9050919050565b6134ed816134d2565b82525050565b600060208201905061350860008301846134e4565b92915050565b613517816133e8565b82525050565b6000602082019050613532600083018461350e565b92915050565b60006020828403121561354e5761354d613385565b5b600061355c848285016133d3565b91505092915050565b60008060006060848603121561357e5761357d613385565b5b600061358c868287016133d3565b935050602061359d868287016133d3565b92505060406135ae86828701613409565b9150509250925092565b6135c1816133aa565b82525050565b60006020820190506135dc60008301846135b8565b92915050565b600060ff82169050919050565b6135f8816135e2565b82525050565b600060208201905061361360008301846135ef565b92915050565b60006020828403121561362f5761362e613385565b5b600061363d84828501613409565b91505092915050565b60008060006060848603121561365f5761365e613385565b5b600061366d86828701613409565b935050602061367e86828701613409565b925050604061368f86828701613409565b9150509250925092565b6136a28161345e565b81146136ad57600080fd5b50565b6000813590506136bf81613699565b92915050565b600080604083850312156136dc576136db613385565b5b60006136ea858286016133d3565b92505060206136fb858286016136b0565b9150509250929050565b6000806040838503121561371c5761371b613385565b5b600061372a858286016133d3565b925050602061373b858286016133d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061378c57607f821691505b60208210810361379f5761379e613745565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137db6020836132de565b91506137e6826137a5565b602082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061384b826133e8565b9150613856836133e8565b925082820190508082111561386e5761386d613811565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138d06039836132de565b91506138db82613874565b604082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b6000613911826133e8565b915061391c836133e8565b925082820261392a816133e8565b9150828204841483151761394157613940613811565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613982826133e8565b915061398d836133e8565b92508261399d5761399c613948565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613a046035836132de565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613a966034836132de565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b286026836132de565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b600081519050613b6d816133f2565b92915050565b600060208284031215613b8957613b88613385565b5b6000613b9784828501613b5e565b91505092915050565b6000604082019050613bb560008301856135b8565b613bc2602083018461350e565b9392505050565b600081519050613bd881613699565b92915050565b600060208284031215613bf457613bf3613385565b5b6000613c0284828501613bc9565b91505092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613c41601b836132de565b9150613c4c82613c0b565b602082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613cd36024836132de565b9150613cde82613c77565b604082019050919050565b60006020820190508181036000830152613d0281613cc6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d656022836132de565b9150613d7082613d09565b604082019050919050565b60006020820190508181036000830152613d9481613d58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613df76025836132de565b9150613e0282613d9b565b604082019050919050565b60006020820190508181036000830152613e2681613dea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e896023836132de565b9150613e9482613e2d565b604082019050919050565b60006020820190508181036000830152613eb881613e7c565b9050919050565b6000613eca826133e8565b9150613ed5836133e8565b9250828203905081811115613eed57613eec613811565b5b92915050565b600081905092915050565b50565b6000613f0e600083613ef3565b9150613f1982613efe565b600082019050919050565b6000613f2f82613f01565b9150819050919050565b6000606082019050613f4e600083018661350e565b613f5b602083018561350e565b613f68604083018461350e565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fcc6021836132de565b9150613fd782613f70565b604082019050919050565b60006020820190508181036000830152613ffb81613fbf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061406f816133bc565b92915050565b60006020828403121561408b5761408a613385565b5b600061409984828501614060565b91505092915050565b6000819050919050565b60006140c76140c26140bd846140a2565b613494565b6133e8565b9050919050565b6140d7816140ac565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614112816133aa565b82525050565b60006141248383614109565b60208301905092915050565b6000602082019050919050565b6000614148826140dd565b61415281856140e8565b935061415d836140f9565b8060005b8381101561418e5781516141758882614118565b975061418083614130565b925050600181019050614161565b5085935050505092915050565b600060a0820190506141b0600083018861350e565b6141bd60208301876140ce565b81810360408301526141cf818661413d565b90506141de60608301856135b8565b6141eb608083018461350e565b9695505050505050565b600060c08201905061420a60008301896135b8565b614217602083018861350e565b61422460408301876140ce565b61423160608301866140ce565b61423e60808301856135b8565b61424b60a083018461350e565b979650505050505050565b60008060006060848603121561426f5761426e613385565b5b600061427d86828701613b5e565b935050602061428e86828701613b5e565b925050604061429f86828701613b5e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208e8ece54afdbcae987475415a40cdd168ffbf378312768273f306342f7e7434b64736f6c63430008120033
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.