ERC-20
Overview
Max Total Supply
100,000,000 WRAPT
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,995,974.119541958458142256 WRAPTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
WrappedTurkey
Compiler Version
v0.8.16+commit.07a7930e
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.16; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/token/ERC20/utils/SafeERC20.sol"; import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol"; import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol"; /* @ ##(/* ,.,,(%%%%// (#*....., ,,,,..,,,.#/% ,, #( .. .,,*,*/ //,,,,.,,,*/ //(#(/%&@#@ //,..,.* ,,(.,*//,*/,*,**#/**,.*** #/.*/(,,(#( // . ..*,,*,,,.,*,,,/*/,*(*,,(*##,,,,@ /#*(,.,,*,*( //(... ..*.,#/*..**,(* *#*/#/////,.*/*,, .,/,**,, /( /*....(.,*(,.,./,****,*(,*##/(*... .,,., *&//,,/*(* ....(,,,.,........//((#% .,. .%,(.((###&(%%(/(*/ //...../,,.#*/,*,/,.*/%%#... . *((.*#@%&##&&&&%(**/// /*. . ,.((,./*((../#%&#.., /*,(*((/%#/(/((((&#%@ ,,,.//% /*...,.,((*(( ../%##% ,. //(((#(#/,,/,#@./(@(//%%. ***#&,/%# // ....//.,/##/**%%&#(. . /(,&,(,(%,&.(.&./,%*.((,. &((%%&(#(& // ./#/**##*./%#/%*.. . %*(*,*&.##,&.#//((/... ..&%%%/%#/(#### ,. .....,*((,(/,((%/#(/ /./*#,(/(*##.(%,// #* /*#/.//&/&(%#%%&### (......(//,(# /,.//#(#. /*#(/, .(. *#**(*,,.**.*(.,## ,(&%//.* //,.%##%& * /../*(& **(%(##/, .,.(, ..,/,%**%(,*,// (/@#%(%#.%&..#, (#*,. ..,, * .,..,.**,/#*#.,#(*. ,/ & . .&.,&.,/*&*@#.@*@&# / ( ,/*#/,/.,,..,.,. . # ,*,,,,(/ ,,,. *###. , .. ..*.** (. &,(&%&/ ,%% ,,.,... % .....(*.,.#@,,.. %.##%%%#* ,, ,..,. (&.(% &(* #/.. ,*%%/*(,,., &.. (##..%%%%##%%%%#%* ( .. /.@,( .. ,*#%%%% (# (.,/%( (%,..#%#%/ @%%#/#%#//**,. . ,. ,(* .* .. . .( *% (*,/(/%(%(,,,#,,,,,.......@, .# &*,**, .( . ( *(.#(/#*(#(.... . . . ,..#.. , , ..,.# /,/%,%%(#/ ,... ,, . .... ,*,. . ,///(#% //. ,. . *, ,,#(/ # ,. ,.,. . ,/*/ //.... , . //.( ,. * .../ /* ,,/ // ,.,( //* .*/ //* *,/*/ //,/ *.,, //(*//,/ / */ /*🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃 🦃 ╔╗╔╗╔╗ ╔╗╔════╗ ╔╗ 🦃 🦃 ║║║║║║ ║║║╔╗╔╗║ ║║ 🦃 🦃 ║║║║║║╔═╗╔══╗ ╔══╗╔══╗╔══╗╔═╝║╚╝║║╚╝╔╗╔╗╔═╗║║╔╗╔══╗╔╗ ╔╗ 🦃 🦃 ║╚╝╚╝║║╔╝╚ ╗║ ║╔╗║║╔╗║║╔╗║║╔╗║ ║║ ║║║║║╔╝║╚╝╝║╔╗║║║ ║║ 🦃 🦃 ╚╗╔╗╔╝║║ ║╚╝╚╗║╚╝║║╚╝║║║═╣║╚╝║ ╔╝╚╗ ║╚╝║║║ ║╔╗╗║║═╣║╚═╝║ 🦃 🦃 ╚╝╚╝ ╚╝ ╚═══╝║╔═╝║╔═╝╚══╝╚══╝ ╚══╝ ╚══╝╚╝ ╚╝╚╝╚══╝╚═╗╔╝ 🦃 🦃 ║║ ║║ ╔═╝║ 🦃 🦃 ╚╝ ╚╝ ╚══╝ 🦃 🦃 🦃 🦃 🦃 🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃🦃*/ /* Telegram: https://t.me/WrappedTurkey_ERC20 Twitter: https://twitter.com/WrappedTurkey1 Website: https://wrappedturkey.com Medium: https://link.medium.com/bSLh5ooiQvb */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract WrappedTurkey is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 1; bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Wrapped Turkey", "WRAPT") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 3; uint256 _buyDevFee = 0; uint256 _buyLiquidityFee = 2; uint256 _sellMarketingFee = 3; uint256 _sellDevFee = 0; uint256 _sellLiquidityFee = 2; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = 2_000_000 * 1e18; maxWallet = 2_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xDdF8B540D5071aa362731301ecc9f163Aa5116be); devWallet = address(0xDdF8B540D5071aa362731301ecc9f163Aa5116be); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 50, "Must keep fees at 50% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 50, "Must keep fees at 50% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600e81526020017f57726170706564205475726b65790000000000000000000000000000000000008152506040518060400160405280600581526020017f5752415054000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d7f565b50806004908162000139919062000d7f565b5050506200015c62000150620005c660201b60201c565b620005ce60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ed0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ed0565b6040518363ffffffff1660e01b8152600401620002db92919062000f13565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ed0565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069460201b60201c565b6200037e60a05160016200077e60201b60201c565b600060039050600080600290506000600390506000806002905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006008819055506a01a784379d99db42000000600a81905550612710600582620003de919062000f6f565b620003ea919062000fff565b6009819055508660158190555084601681905550856017819055506017546016546015546200041a919062001037565b62000426919062001037565b6014819055508360198190555081601a8190555082601b81905550601b54601a5460195462000456919062001037565b62000462919062001037565b60188190555073ddf8b540d5071aa362731301ecc9f163aa5116be600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ddf8b540d5071aa362731301ecc9f163aa5116be600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000534620005266200081f60201b60201c565b60016200084960201b60201c565b620005473060016200084960201b60201c565b6200055c61dead60016200084960201b60201c565b6200057e620005706200081f60201b60201c565b60016200069460201b60201c565b620005913060016200069460201b60201c565b620005a661dead60016200069460201b60201c565b620005b833826200098360201b60201c565b5050505050505050620011cf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a4620005c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006ca6200081f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071a90620010d3565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000859620005c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087f6200081f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cf90620010d3565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000977919062001112565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ec906200117f565b60405180910390fd5b62000a096000838362000afb60201b60201c565b806002600082825462000a1d919062001037565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a74919062001037565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000adb9190620011b2565b60405180910390a362000af76000838362000b0060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8757607f821691505b60208210810362000b9d5762000b9c62000b3f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc8565b62000c13868362000bc8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c6062000c5a62000c548462000c2b565b62000c35565b62000c2b565b9050919050565b6000819050919050565b62000c7c8362000c3f565b62000c9462000c8b8262000c67565b84845462000bd5565b825550505050565b600090565b62000cab62000c9c565b62000cb881848462000c71565b505050565b5b8181101562000ce05762000cd460008262000ca1565b60018101905062000cbe565b5050565b601f82111562000d2f5762000cf98162000ba3565b62000d048462000bb8565b8101602085101562000d14578190505b62000d2c62000d238562000bb8565b83018262000cbd565b50505b505050565b600082821c905092915050565b600062000d546000198460080262000d34565b1980831691505092915050565b600062000d6f838362000d41565b9150826002028217905092915050565b62000d8a8262000b05565b67ffffffffffffffff81111562000da65762000da562000b10565b5b62000db2825462000b6e565b62000dbf82828562000ce4565b600060209050601f83116001811462000df7576000841562000de2578287015190505b62000dee858262000d61565b86555062000e5e565b601f19841662000e078662000ba3565b60005b8281101562000e315784890151825560018201915060208501945060208101905062000e0a565b8683101562000e51578489015162000e4d601f89168262000d41565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e988262000e6b565b9050919050565b62000eaa8162000e8b565b811462000eb657600080fd5b50565b60008151905062000eca8162000e9f565b92915050565b60006020828403121562000ee95762000ee862000e66565b5b600062000ef98482850162000eb9565b91505092915050565b62000f0d8162000e8b565b82525050565b600060408201905062000f2a600083018562000f02565b62000f39602083018462000f02565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f7c8262000c2b565b915062000f898362000c2b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fc55762000fc462000f40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200100c8262000c2b565b9150620010198362000c2b565b9250826200102c576200102b62000fd0565b5b828204905092915050565b6000620010448262000c2b565b9150620010518362000c2b565b92508282019050808211156200106c576200106b62000f40565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010bb60208362001072565b9150620010c88262001083565b602082019050919050565b60006020820190508181036000830152620010ee81620010ac565b9050919050565b60008115159050919050565b6200110c81620010f5565b82525050565b600060208201905062001129600083018462001101565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001167601f8362001072565b915062001174826200112f565b602082019050919050565b600060208201905081810360008301526200119a8162001158565b9050919050565b620011ac8162000c2b565b82525050565b6000602082019050620011c96000830184620011a1565b92915050565b60805160a051615a5562001257600039600081816112b401528181611ac40152818161259d015281816126540152818161268101528181612d4c01528181613e4e01528181613f070152613f34015260008181610f9501528181612cf4015281816140aa0152818161418b015281816141b20152818161424e01526142750152615a556000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143b4565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061446f565b610f51565b60405161041c91906144ca565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906144e5565b610f74565b60405161045991906144ca565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190614571565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af919061459b565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906144e5565b610fc1565b005b3480156104ed57600080fd5b506104f66110fd565b604051610503919061459b565b60405180910390f35b34801561051857600080fd5b50610521611103565b60405161052e919061459b565b60405180910390f35b34801561054357600080fd5b5061054c611109565b604051610559919061459b565b60405180910390f35b34801561056e57600080fd5b5061057761110f565b604051610584919061459b565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145b6565b611115565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906145e3565b611224565b6040516105ea91906144ca565b60405180910390f35b3480156105ff57600080fd5b50610608611253565b6040516106159190614645565b60405180910390f35b34801561062a57600080fd5b50610633611259565b604051610640919061459b565b60405180910390f35b34801561065557600080fd5b5061065e61125f565b60405161066b91906144ca565b60405180910390f35b34801561068057600080fd5b50610689611272565b604051610696919061467c565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061446f565b61127b565b6040516106d391906144ca565b60405180910390f35b3480156106e857600080fd5b506106f16112b2565b6040516106fe9190614645565b60405180910390f35b34801561071357600080fd5b5061071c6112d6565b60405161072991906144ca565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906144e5565b6112e9565b60405161076691906144ca565b60405180910390f35b34801561077b57600080fd5b5061078461133f565b604051610791919061459b565b60405180910390f35b3480156107a657600080fd5b506107af611345565b6040516107bc91906144ca565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906144e5565b611358565b6040516107f9919061459b565b60405180910390f35b34801561080e57600080fd5b506108176113a0565b005b34801561082557600080fd5b50610840600480360381019061083b91906146c3565b611428565b005b34801561084e57600080fd5b50610857611568565b60405161086491906144ca565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614716565b611608565b005b3480156108a257600080fd5b506108ab6116df565b6040516108b89190614645565b60405180910390f35b3480156108cd57600080fd5b506108d6611705565b6040516108e3919061459b565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614756565b61170b565b005b34801561092157600080fd5b5061092a61180a565b005b34801561093857600080fd5b506109416118c5565b60405161094e9190614645565b60405180910390f35b34801561096357600080fd5b5061096c6118ef565b6040516109799190614645565b60405180910390f35b34801561098e57600080fd5b50610997611915565b6040516109a4919061459b565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906147a9565b61191b565b005b3480156109e257600080fd5b506109eb6119b4565b6040516109f891906143b4565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614716565b611a46565b005b348015610a3657600080fd5b50610a3f611b5e565b604051610a4c919061459b565b60405180910390f35b348015610a6157600080fd5b50610a6a611b64565b604051610a77919061459b565b60405180910390f35b348015610a8c57600080fd5b50610a95611b6a565b604051610aa2919061459b565b60405180910390f35b348015610ab757600080fd5b50610ac0611b70565b604051610acd919061459b565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061446f565b611b76565b604051610b0a91906144ca565b60405180910390f35b348015610b1f57600080fd5b50610b28611bed565b604051610b35919061459b565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061446f565b611bf3565b604051610b7291906144ca565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906144e5565b611c16565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906144e5565b611d52565b604051610bd891906144ca565b60405180910390f35b348015610bed57600080fd5b50610bf6611d72565b604051610c0391906144ca565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614716565b611d85565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614756565b611eaa565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145b6565b611fa9565b005b348015610c9357600080fd5b50610c9c6120b8565b604051610ca991906144ca565b60405180910390f35b348015610cbe57600080fd5b50610cc76120cb565b604051610cd4919061459b565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145b6565b6120d1565b604051610d1191906144ca565b60405180910390f35b348015610d2657600080fd5b50610d2f612226565b604051610d3c919061459b565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906147d6565b61222c565b604051610d79919061459b565b60405180910390f35b348015610d8e57600080fd5b50610d976122b3565b604051610da4919061459b565b60405180910390f35b348015610db957600080fd5b50610dc26122b9565b604051610dcf91906144ca565b60405180910390f35b348015610de457600080fd5b50610ded612359565b604051610dfa919061459b565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906144e5565b61235f565b005b348015610e3857600080fd5b50610e41612456565b604051610e4e919061459b565b60405180910390f35b348015610e6357600080fd5b50610e6c61245c565b604051610e79919061459b565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145b6565b612462565b604051610eb691906144ca565b60405180910390f35b606060038054610ece90614845565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614845565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c61273a565b9050610f69818585612742565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc961273a565b73ffffffffffffffffffffffffffffffffffffffff16610fe76118c5565b73ffffffffffffffffffffffffffffffffffffffff161461103d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611034906148c2565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61111d61273a565b73ffffffffffffffffffffffffffffffffffffffff1661113b6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906148c2565b60405180910390fd5b670de0b6b3a76400006103e860016111a7610fb7565b6111b19190614911565b6111bb919061499a565b6111c5919061499a565b811015611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90614a3d565b60405180910390fd5b670de0b6b3a76400008161121b9190614911565b60088190555050565b60008061122f61273a565b905061123c85828561290b565b611247858585612997565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061128661273a565b90506112a7818585611298858961222c565b6112a29190614a5d565b612742565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a861273a565b73ffffffffffffffffffffffffffffffffffffffff166113c66118c5565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611413906148c2565b60405180910390fd5b611426600061372c565b565b61143061273a565b73ffffffffffffffffffffffffffffffffffffffff1661144e6118c5565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906148c2565b60405180910390fd5b6102588310156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090614b03565b60405180910390fd5b6103e882111580156114fc575060008210155b61153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614b95565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061157261273a565b73ffffffffffffffffffffffffffffffffffffffff166115906118c5565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906148c2565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61161061273a565b73ffffffffffffffffffffffffffffffffffffffff1661162e6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b906148c2565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61171361273a565b73ffffffffffffffffffffffffffffffffffffffff166117316118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e906148c2565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546117af9190614a5d565b6117b99190614a5d565b60148190555060326014541115611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90614c01565b60405180910390fd5b505050565b61181261273a565b73ffffffffffffffffffffffffffffffffffffffff166118306118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d906148c2565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61192361273a565b73ffffffffffffffffffffffffffffffffffffffff166119416118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e906148c2565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119c390614845565b80601f01602080910402602001604051908101604052809291908181526020018280546119ef90614845565b8015611a3c5780601f10611a1157610100808354040283529160200191611a3c565b820191906000526020600020905b815481529060010190602001808311611a1f57829003601f168201915b5050505050905090565b611a4e61273a565b73ffffffffffffffffffffffffffffffffffffffff16611a6c6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906148c2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614c93565b60405180910390fd5b611b5a82826137f2565b5050565b60175481565b60105481565b601e5481565b601b5481565b600080611b8161273a565b90506000611b8f828661222c565b905083811015611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90614d25565b60405180910390fd5b611be18286868403612742565b60019250505092915050565b600e5481565b600080611bfe61273a565b9050611c0b818585612997565b600191505092915050565b611c1e61273a565b73ffffffffffffffffffffffffffffffffffffffff16611c3c6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906148c2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d8d61273a565b73ffffffffffffffffffffffffffffffffffffffff16611dab6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df8906148c2565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e9e91906144ca565b60405180910390a25050565b611eb261273a565b73ffffffffffffffffffffffffffffffffffffffff16611ed06118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d906148c2565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f4e9190614a5d565b611f589190614a5d565b60188190555060326018541115611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614c01565b60405180910390fd5b505050565b611fb161273a565b73ffffffffffffffffffffffffffffffffffffffff16611fcf6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906148c2565b60405180910390fd5b670de0b6b3a76400006103e8600561203b610fb7565b6120459190614911565b61204f919061499a565b612059919061499a565b81101561209b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209290614db7565b60405180910390fd5b670de0b6b3a7640000816120af9190614911565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120db61273a565b73ffffffffffffffffffffffffffffffffffffffff166120f96118c5565b73ffffffffffffffffffffffffffffffffffffffff161461214f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612146906148c2565b60405180910390fd5b620186a0600161215d610fb7565b6121679190614911565b612171919061499a565b8210156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90614e49565b60405180910390fd5b6103e860056121c0610fb7565b6121ca9190614911565b6121d4919061499a565b821115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90614edb565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122c361273a565b73ffffffffffffffffffffffffffffffffffffffff166122e16118c5565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e906148c2565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61236761273a565b73ffffffffffffffffffffffffffffffffffffffff166123856118c5565b73ffffffffffffffffffffffffffffffffffffffff16146123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d2906148c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190614f6d565b60405180910390fd5b6124538161372c565b50565b601a5481565b600a5481565b600061246c61273a565b73ffffffffffffffffffffffffffffffffffffffff1661248a6118c5565b73ffffffffffffffffffffffffffffffffffffffff16146124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d7906148c2565b60405180910390fd5b600f546010546124f09190614a5d565b4211612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614fd9565b60405180910390fd5b6103e8821115612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d9061506b565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016125d89190614645565b602060405180830381865afa1580156125f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261991906150a0565b90506000612644612710612636868561389390919063ffffffff16565b6138a990919063ffffffff16565b9050600081111561267d5761267c7f000000000000000000000000000000000000000000000000000000000000000061dead836138bf565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126ea57600080fd5b505af11580156126fe573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a89061513f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612817906151d1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128fe919061459b565b60405180910390a3505050565b6000612917848461222c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146129915781811015612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a9061523d565b60405180910390fd5b6129908484848403612742565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd906152cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6c90615361565b60405180910390fd5b60008103612a8e57612a89838360006138bf565b613727565b601160009054906101000a900460ff161561315157612aab6118c5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b195750612ae96118c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b525750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ba55750600560149054906101000a900460ff16155b1561315057601160019054906101000a900460ff16612c9f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c5f5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c95906153cd565b60405180910390fd5b5b601360009054906101000a900460ff1615612e6757612cbc6118c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d4357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d9b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e665743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1890615485565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fb157600854811115612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b90615517565b60405180910390fd5b600a54612f6083611358565b82612f6b9190614a5d565b1115612fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa390615583565b60405180910390fd5b61314f565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130545750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130a35760085481111561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309590615615565b60405180910390fd5b61314e565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661314d57600a5461310083611358565b8261310b9190614a5d565b111561314c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314390615583565b60405180910390fd5b5b5b5b5b5b600061315c30611358565b9050600060095482101590508080156131815750601160029054906101000a900460ff165b801561319a5750600560149054906101000a900460ff16155b80156131f05750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132465750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561329c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132e0576001600560146101000a81548160ff0219169083151502179055506132c4613b3e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133465750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561335e5750600c60009054906101000a900460ff165b80156133795750600d54600e546133759190614a5d565b4210155b80156133cf5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133de576133dc613e25565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134945750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561349e57600090505b6000811561371757602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561350157506000601854115b156135ce5761352e60646135206018548861389390919063ffffffff16565b6138a990919063ffffffff16565b9050601854601a54826135419190614911565b61354b919061499a565b601d600082825461355c9190614a5d565b92505081905550601854601b54826135749190614911565b61357e919061499a565b601e600082825461358f9190614a5d565b92505081905550601854601954826135a79190614911565b6135b1919061499a565b601c60008282546135c29190614a5d565b925050819055506136f3565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362957506000601454115b156136f25761365660646136486014548861389390919063ffffffff16565b6138a990919063ffffffff16565b9050601454601654826136699190614911565b613673919061499a565b601d60008282546136849190614a5d565b925050819055506014546017548261369c9190614911565b6136a6919061499a565b601e60008282546136b79190614a5d565b92505081905550601454601554826136cf9190614911565b6136d9919061499a565b601c60008282546136ea9190614a5d565b925050819055505b5b6000811115613708576137078730836138bf565b5b80856137149190615635565b94505b6137228787876138bf565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138a19190614911565b905092915050565b600081836138b7919061499a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361392e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613925906152cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361399d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399490615361565b60405180910390fd5b6139a8838383613feb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a25906156db565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ac19190614a5d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b25919061459b565b60405180910390a3613b38848484613ff0565b50505050565b6000613b4930611358565b90506000601e54601c54601d54613b609190614a5d565b613b6a9190614a5d565b9050600080831480613b7c5750600082145b15613b8957505050613e23565b6014600954613b989190614911565b831115613bb1576014600954613bae9190614911565b92505b6000600283601d5486613bc49190614911565b613bce919061499a565b613bd8919061499a565b90506000613bef8286613ff590919063ffffffff16565b90506000479050613bff8261400b565b6000613c148247613ff590919063ffffffff16565b90506000613c3f87613c31601c548561389390919063ffffffff16565b6138a990919063ffffffff16565b90506000613c6a88613c5c601e548661389390919063ffffffff16565b6138a990919063ffffffff16565b90506000818385613c7b9190615635565b613c859190615635565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613ce59061572c565b60006040518083038185875af1925050503d8060008114613d22576040519150601f19603f3d011682016040523d82523d6000602084013e613d27565b606091505b505080985050600087118015613d3d5750600081115b15613d8a57613d4c8782614248565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d8193929190615741565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dd09061572c565b60006040518083038185875af1925050503d8060008114613e0d576040519150601f19603f3d011682016040523d82523d6000602084013e613e12565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e899190614645565b602060405180830381865afa158015613ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eca91906150a0565b90506000613ef7612710613ee9600b548561389390919063ffffffff16565b6138a990919063ffffffff16565b90506000811115613f3057613f2f7f000000000000000000000000000000000000000000000000000000000000000061dead836138bf565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f9d57600080fd5b505af1158015613fb1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140039190615635565b905092915050565b6000600267ffffffffffffffff81111561402857614027615778565b5b6040519080825280602002602001820160405280156140565781602001602082028036833780820191505090505b509050308160008151811061406e5761406d6157a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614113573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061413791906157eb565b8160018151811061414b5761414a6157a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141b0307f000000000000000000000000000000000000000000000000000000000000000084612742565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614212959493929190615911565b600060405180830381600087803b15801561422c57600080fd5b505af1158015614240573d6000803e3d6000fd5b505050505050565b614273307f000000000000000000000000000000000000000000000000000000000000000084612742565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142da9695949392919061596b565b60606040518083038185885af11580156142f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061431d91906159cc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561435e578082015181840152602081019050614343565b60008484015250505050565b6000601f19601f8301169050919050565b600061438682614324565b614390818561432f565b93506143a0818560208601614340565b6143a98161436a565b840191505092915050565b600060208201905081810360008301526143ce818461437b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614406826143db565b9050919050565b614416816143fb565b811461442157600080fd5b50565b6000813590506144338161440d565b92915050565b6000819050919050565b61444c81614439565b811461445757600080fd5b50565b60008135905061446981614443565b92915050565b60008060408385031215614486576144856143d6565b5b600061449485828601614424565b92505060206144a58582860161445a565b9150509250929050565b60008115159050919050565b6144c4816144af565b82525050565b60006020820190506144df60008301846144bb565b92915050565b6000602082840312156144fb576144fa6143d6565b5b600061450984828501614424565b91505092915050565b6000819050919050565b600061453761453261452d846143db565b614512565b6143db565b9050919050565b60006145498261451c565b9050919050565b600061455b8261453e565b9050919050565b61456b81614550565b82525050565b60006020820190506145866000830184614562565b92915050565b61459581614439565b82525050565b60006020820190506145b0600083018461458c565b92915050565b6000602082840312156145cc576145cb6143d6565b5b60006145da8482850161445a565b91505092915050565b6000806000606084860312156145fc576145fb6143d6565b5b600061460a86828701614424565b935050602061461b86828701614424565b925050604061462c8682870161445a565b9150509250925092565b61463f816143fb565b82525050565b600060208201905061465a6000830184614636565b92915050565b600060ff82169050919050565b61467681614660565b82525050565b6000602082019050614691600083018461466d565b92915050565b6146a0816144af565b81146146ab57600080fd5b50565b6000813590506146bd81614697565b92915050565b6000806000606084860312156146dc576146db6143d6565b5b60006146ea8682870161445a565b93505060206146fb8682870161445a565b925050604061470c868287016146ae565b9150509250925092565b6000806040838503121561472d5761472c6143d6565b5b600061473b85828601614424565b925050602061474c858286016146ae565b9150509250929050565b60008060006060848603121561476f5761476e6143d6565b5b600061477d8682870161445a565b935050602061478e8682870161445a565b925050604061479f8682870161445a565b9150509250925092565b6000602082840312156147bf576147be6143d6565b5b60006147cd848285016146ae565b91505092915050565b600080604083850312156147ed576147ec6143d6565b5b60006147fb85828601614424565b925050602061480c85828601614424565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061485d57607f821691505b6020821081036148705761486f614816565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ac60208361432f565b91506148b782614876565b602082019050919050565b600060208201905081810360008301526148db8161489f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061491c82614439565b915061492783614439565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149605761495f6148e2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149a582614439565b91506149b083614439565b9250826149c0576149bf61496b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614a27602f8361432f565b9150614a32826149cb565b604082019050919050565b60006020820190508181036000830152614a5681614a1a565b9050919050565b6000614a6882614439565b9150614a7383614439565b9250828201905080821115614a8b57614a8a6148e2565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614aed60338361432f565b9150614af882614a91565b604082019050919050565b60006020820190508181036000830152614b1c81614ae0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b7f60308361432f565b9150614b8a82614b23565b604082019050919050565b60006020820190508181036000830152614bae81614b72565b9050919050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b6000614beb601d8361432f565b9150614bf682614bb5565b602082019050919050565b60006020820190508181036000830152614c1a81614bde565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c7d60398361432f565b9150614c8882614c21565b604082019050919050565b60006020820190508181036000830152614cac81614c70565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d0f60258361432f565b9150614d1a82614cb3565b604082019050919050565b60006020820190508181036000830152614d3e81614d02565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614da160248361432f565b9150614dac82614d45565b604082019050919050565b60006020820190508181036000830152614dd081614d94565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e3360358361432f565b9150614e3e82614dd7565b604082019050919050565b60006020820190508181036000830152614e6281614e26565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614ec560348361432f565b9150614ed082614e69565b604082019050919050565b60006020820190508181036000830152614ef481614eb8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f5760268361432f565b9150614f6282614efb565b604082019050919050565b60006020820190508181036000830152614f8681614f4a565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fc360208361432f565b9150614fce82614f8d565b602082019050919050565b60006020820190508181036000830152614ff281614fb6565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615055602a8361432f565b915061506082614ff9565b604082019050919050565b6000602082019050818103600083015261508481615048565b9050919050565b60008151905061509a81614443565b92915050565b6000602082840312156150b6576150b56143d6565b5b60006150c48482850161508b565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061512960248361432f565b9150615134826150cd565b604082019050919050565b600060208201905081810360008301526151588161511c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151bb60228361432f565b91506151c68261515f565b604082019050919050565b600060208201905081810360008301526151ea816151ae565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615227601d8361432f565b9150615232826151f1565b602082019050919050565b600060208201905081810360008301526152568161521a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152b960258361432f565b91506152c48261525d565b604082019050919050565b600060208201905081810360008301526152e8816152ac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061534b60238361432f565b9150615356826152ef565b604082019050919050565b6000602082019050818103600083015261537a8161533e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006153b760168361432f565b91506153c282615381565b602082019050919050565b600060208201905081810360008301526153e6816153aa565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061546f60498361432f565b915061547a826153ed565b606082019050919050565b6000602082019050818103600083015261549e81615462565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061550160358361432f565b915061550c826154a5565b604082019050919050565b60006020820190508181036000830152615530816154f4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061556d60138361432f565b915061557882615537565b602082019050919050565b6000602082019050818103600083015261559c81615560565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155ff60368361432f565b915061560a826155a3565b604082019050919050565b6000602082019050818103600083015261562e816155f2565b9050919050565b600061564082614439565b915061564b83614439565b9250828203905081811115615663576156626148e2565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006156c560268361432f565b91506156d082615669565b604082019050919050565b600060208201905081810360008301526156f4816156b8565b9050919050565b600081905092915050565b50565b60006157166000836156fb565b915061572182615706565b600082019050919050565b600061573782615709565b9150819050919050565b6000606082019050615756600083018661458c565b615763602083018561458c565b615770604083018461458c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506157e58161440d565b92915050565b600060208284031215615801576158006143d6565b5b600061580f848285016157d6565b91505092915050565b6000819050919050565b600061583d61583861583384615818565b614512565b614439565b9050919050565b61584d81615822565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615888816143fb565b82525050565b600061589a838361587f565b60208301905092915050565b6000602082019050919050565b60006158be82615853565b6158c8818561585e565b93506158d38361586f565b8060005b838110156159045781516158eb888261588e565b97506158f6836158a6565b9250506001810190506158d7565b5085935050505092915050565b600060a082019050615926600083018861458c565b6159336020830187615844565b818103604083015261594581866158b3565b90506159546060830185614636565b615961608083018461458c565b9695505050505050565b600060c0820190506159806000830189614636565b61598d602083018861458c565b61599a6040830187615844565b6159a76060830186615844565b6159b46080830185614636565b6159c160a083018461458c565b979650505050505050565b6000806000606084860312156159e5576159e46143d6565b5b60006159f38682870161508b565b9350506020615a048682870161508b565b9250506040615a158682870161508b565b915050925092509256fea264697066735822122040090cb1754267e5c4a3f1ba40cf55013f7029d3d3415290996e3643db1c558464736f6c63430008100033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143b4565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061446f565b610f51565b60405161041c91906144ca565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906144e5565b610f74565b60405161045991906144ca565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190614571565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af919061459b565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906144e5565b610fc1565b005b3480156104ed57600080fd5b506104f66110fd565b604051610503919061459b565b60405180910390f35b34801561051857600080fd5b50610521611103565b60405161052e919061459b565b60405180910390f35b34801561054357600080fd5b5061054c611109565b604051610559919061459b565b60405180910390f35b34801561056e57600080fd5b5061057761110f565b604051610584919061459b565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145b6565b611115565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906145e3565b611224565b6040516105ea91906144ca565b60405180910390f35b3480156105ff57600080fd5b50610608611253565b6040516106159190614645565b60405180910390f35b34801561062a57600080fd5b50610633611259565b604051610640919061459b565b60405180910390f35b34801561065557600080fd5b5061065e61125f565b60405161066b91906144ca565b60405180910390f35b34801561068057600080fd5b50610689611272565b604051610696919061467c565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061446f565b61127b565b6040516106d391906144ca565b60405180910390f35b3480156106e857600080fd5b506106f16112b2565b6040516106fe9190614645565b60405180910390f35b34801561071357600080fd5b5061071c6112d6565b60405161072991906144ca565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906144e5565b6112e9565b60405161076691906144ca565b60405180910390f35b34801561077b57600080fd5b5061078461133f565b604051610791919061459b565b60405180910390f35b3480156107a657600080fd5b506107af611345565b6040516107bc91906144ca565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906144e5565b611358565b6040516107f9919061459b565b60405180910390f35b34801561080e57600080fd5b506108176113a0565b005b34801561082557600080fd5b50610840600480360381019061083b91906146c3565b611428565b005b34801561084e57600080fd5b50610857611568565b60405161086491906144ca565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614716565b611608565b005b3480156108a257600080fd5b506108ab6116df565b6040516108b89190614645565b60405180910390f35b3480156108cd57600080fd5b506108d6611705565b6040516108e3919061459b565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614756565b61170b565b005b34801561092157600080fd5b5061092a61180a565b005b34801561093857600080fd5b506109416118c5565b60405161094e9190614645565b60405180910390f35b34801561096357600080fd5b5061096c6118ef565b6040516109799190614645565b60405180910390f35b34801561098e57600080fd5b50610997611915565b6040516109a4919061459b565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906147a9565b61191b565b005b3480156109e257600080fd5b506109eb6119b4565b6040516109f891906143b4565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614716565b611a46565b005b348015610a3657600080fd5b50610a3f611b5e565b604051610a4c919061459b565b60405180910390f35b348015610a6157600080fd5b50610a6a611b64565b604051610a77919061459b565b60405180910390f35b348015610a8c57600080fd5b50610a95611b6a565b604051610aa2919061459b565b60405180910390f35b348015610ab757600080fd5b50610ac0611b70565b604051610acd919061459b565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061446f565b611b76565b604051610b0a91906144ca565b60405180910390f35b348015610b1f57600080fd5b50610b28611bed565b604051610b35919061459b565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061446f565b611bf3565b604051610b7291906144ca565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906144e5565b611c16565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906144e5565b611d52565b604051610bd891906144ca565b60405180910390f35b348015610bed57600080fd5b50610bf6611d72565b604051610c0391906144ca565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614716565b611d85565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614756565b611eaa565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145b6565b611fa9565b005b348015610c9357600080fd5b50610c9c6120b8565b604051610ca991906144ca565b60405180910390f35b348015610cbe57600080fd5b50610cc76120cb565b604051610cd4919061459b565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145b6565b6120d1565b604051610d1191906144ca565b60405180910390f35b348015610d2657600080fd5b50610d2f612226565b604051610d3c919061459b565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906147d6565b61222c565b604051610d79919061459b565b60405180910390f35b348015610d8e57600080fd5b50610d976122b3565b604051610da4919061459b565b60405180910390f35b348015610db957600080fd5b50610dc26122b9565b604051610dcf91906144ca565b60405180910390f35b348015610de457600080fd5b50610ded612359565b604051610dfa919061459b565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906144e5565b61235f565b005b348015610e3857600080fd5b50610e41612456565b604051610e4e919061459b565b60405180910390f35b348015610e6357600080fd5b50610e6c61245c565b604051610e79919061459b565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145b6565b612462565b604051610eb691906144ca565b60405180910390f35b606060038054610ece90614845565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614845565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c61273a565b9050610f69818585612742565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc961273a565b73ffffffffffffffffffffffffffffffffffffffff16610fe76118c5565b73ffffffffffffffffffffffffffffffffffffffff161461103d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611034906148c2565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61111d61273a565b73ffffffffffffffffffffffffffffffffffffffff1661113b6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906148c2565b60405180910390fd5b670de0b6b3a76400006103e860016111a7610fb7565b6111b19190614911565b6111bb919061499a565b6111c5919061499a565b811015611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90614a3d565b60405180910390fd5b670de0b6b3a76400008161121b9190614911565b60088190555050565b60008061122f61273a565b905061123c85828561290b565b611247858585612997565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061128661273a565b90506112a7818585611298858961222c565b6112a29190614a5d565b612742565b600191505092915050565b7f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a861273a565b73ffffffffffffffffffffffffffffffffffffffff166113c66118c5565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611413906148c2565b60405180910390fd5b611426600061372c565b565b61143061273a565b73ffffffffffffffffffffffffffffffffffffffff1661144e6118c5565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906148c2565b60405180910390fd5b6102588310156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090614b03565b60405180910390fd5b6103e882111580156114fc575060008210155b61153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614b95565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061157261273a565b73ffffffffffffffffffffffffffffffffffffffff166115906118c5565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906148c2565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61161061273a565b73ffffffffffffffffffffffffffffffffffffffff1661162e6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b906148c2565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61171361273a565b73ffffffffffffffffffffffffffffffffffffffff166117316118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e906148c2565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546117af9190614a5d565b6117b99190614a5d565b60148190555060326014541115611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90614c01565b60405180910390fd5b505050565b61181261273a565b73ffffffffffffffffffffffffffffffffffffffff166118306118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d906148c2565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61192361273a565b73ffffffffffffffffffffffffffffffffffffffff166119416118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e906148c2565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119c390614845565b80601f01602080910402602001604051908101604052809291908181526020018280546119ef90614845565b8015611a3c5780601f10611a1157610100808354040283529160200191611a3c565b820191906000526020600020905b815481529060010190602001808311611a1f57829003601f168201915b5050505050905090565b611a4e61273a565b73ffffffffffffffffffffffffffffffffffffffff16611a6c6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906148c2565b60405180910390fd5b7f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614c93565b60405180910390fd5b611b5a82826137f2565b5050565b60175481565b60105481565b601e5481565b601b5481565b600080611b8161273a565b90506000611b8f828661222c565b905083811015611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90614d25565b60405180910390fd5b611be18286868403612742565b60019250505092915050565b600e5481565b600080611bfe61273a565b9050611c0b818585612997565b600191505092915050565b611c1e61273a565b73ffffffffffffffffffffffffffffffffffffffff16611c3c6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906148c2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d8d61273a565b73ffffffffffffffffffffffffffffffffffffffff16611dab6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df8906148c2565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e9e91906144ca565b60405180910390a25050565b611eb261273a565b73ffffffffffffffffffffffffffffffffffffffff16611ed06118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d906148c2565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f4e9190614a5d565b611f589190614a5d565b60188190555060326018541115611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614c01565b60405180910390fd5b505050565b611fb161273a565b73ffffffffffffffffffffffffffffffffffffffff16611fcf6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906148c2565b60405180910390fd5b670de0b6b3a76400006103e8600561203b610fb7565b6120459190614911565b61204f919061499a565b612059919061499a565b81101561209b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209290614db7565b60405180910390fd5b670de0b6b3a7640000816120af9190614911565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120db61273a565b73ffffffffffffffffffffffffffffffffffffffff166120f96118c5565b73ffffffffffffffffffffffffffffffffffffffff161461214f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612146906148c2565b60405180910390fd5b620186a0600161215d610fb7565b6121679190614911565b612171919061499a565b8210156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90614e49565b60405180910390fd5b6103e860056121c0610fb7565b6121ca9190614911565b6121d4919061499a565b821115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90614edb565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122c361273a565b73ffffffffffffffffffffffffffffffffffffffff166122e16118c5565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e906148c2565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61236761273a565b73ffffffffffffffffffffffffffffffffffffffff166123856118c5565b73ffffffffffffffffffffffffffffffffffffffff16146123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d2906148c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190614f6d565b60405180910390fd5b6124538161372c565b50565b601a5481565b600a5481565b600061246c61273a565b73ffffffffffffffffffffffffffffffffffffffff1661248a6118c5565b73ffffffffffffffffffffffffffffffffffffffff16146124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d7906148c2565b60405180910390fd5b600f546010546124f09190614a5d565b4211612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614fd9565b60405180910390fd5b6103e8821115612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d9061506b565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d06040518263ffffffff1660e01b81526004016125d89190614645565b602060405180830381865afa1580156125f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261991906150a0565b90506000612644612710612636868561389390919063ffffffff16565b6138a990919063ffffffff16565b9050600081111561267d5761267c7f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d061dead836138bf565b5b60007f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126ea57600080fd5b505af11580156126fe573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a89061513f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612817906151d1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128fe919061459b565b60405180910390a3505050565b6000612917848461222c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146129915781811015612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a9061523d565b60405180910390fd5b6129908484848403612742565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd906152cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6c90615361565b60405180910390fd5b60008103612a8e57612a89838360006138bf565b613727565b601160009054906101000a900460ff161561315157612aab6118c5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b195750612ae96118c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b525750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ba55750600560149054906101000a900460ff16155b1561315057601160019054906101000a900460ff16612c9f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c5f5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c95906153cd565b60405180910390fd5b5b601360009054906101000a900460ff1615612e6757612cbc6118c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d4357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d9b57507f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e665743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1890615485565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fb157600854811115612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b90615517565b60405180910390fd5b600a54612f6083611358565b82612f6b9190614a5d565b1115612fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa390615583565b60405180910390fd5b61314f565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130545750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130a35760085481111561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309590615615565b60405180910390fd5b61314e565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661314d57600a5461310083611358565b8261310b9190614a5d565b111561314c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314390615583565b60405180910390fd5b5b5b5b5b5b600061315c30611358565b9050600060095482101590508080156131815750601160029054906101000a900460ff165b801561319a5750600560149054906101000a900460ff16155b80156131f05750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132465750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561329c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132e0576001600560146101000a81548160ff0219169083151502179055506132c4613b3e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133465750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561335e5750600c60009054906101000a900460ff165b80156133795750600d54600e546133759190614a5d565b4210155b80156133cf5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133de576133dc613e25565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134945750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561349e57600090505b6000811561371757602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561350157506000601854115b156135ce5761352e60646135206018548861389390919063ffffffff16565b6138a990919063ffffffff16565b9050601854601a54826135419190614911565b61354b919061499a565b601d600082825461355c9190614a5d565b92505081905550601854601b54826135749190614911565b61357e919061499a565b601e600082825461358f9190614a5d565b92505081905550601854601954826135a79190614911565b6135b1919061499a565b601c60008282546135c29190614a5d565b925050819055506136f3565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362957506000601454115b156136f25761365660646136486014548861389390919063ffffffff16565b6138a990919063ffffffff16565b9050601454601654826136699190614911565b613673919061499a565b601d60008282546136849190614a5d565b925050819055506014546017548261369c9190614911565b6136a6919061499a565b601e60008282546136b79190614a5d565b92505081905550601454601554826136cf9190614911565b6136d9919061499a565b601c60008282546136ea9190614a5d565b925050819055505b5b6000811115613708576137078730836138bf565b5b80856137149190615635565b94505b6137228787876138bf565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138a19190614911565b905092915050565b600081836138b7919061499a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361392e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613925906152cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361399d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399490615361565b60405180910390fd5b6139a8838383613feb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a25906156db565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ac19190614a5d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b25919061459b565b60405180910390a3613b38848484613ff0565b50505050565b6000613b4930611358565b90506000601e54601c54601d54613b609190614a5d565b613b6a9190614a5d565b9050600080831480613b7c5750600082145b15613b8957505050613e23565b6014600954613b989190614911565b831115613bb1576014600954613bae9190614911565b92505b6000600283601d5486613bc49190614911565b613bce919061499a565b613bd8919061499a565b90506000613bef8286613ff590919063ffffffff16565b90506000479050613bff8261400b565b6000613c148247613ff590919063ffffffff16565b90506000613c3f87613c31601c548561389390919063ffffffff16565b6138a990919063ffffffff16565b90506000613c6a88613c5c601e548661389390919063ffffffff16565b6138a990919063ffffffff16565b90506000818385613c7b9190615635565b613c859190615635565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613ce59061572c565b60006040518083038185875af1925050503d8060008114613d22576040519150601f19603f3d011682016040523d82523d6000602084013e613d27565b606091505b505080985050600087118015613d3d5750600081115b15613d8a57613d4c8782614248565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d8193929190615741565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dd09061572c565b60006040518083038185875af1925050503d8060008114613e0d576040519150601f19603f3d011682016040523d82523d6000602084013e613e12565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d06040518263ffffffff1660e01b8152600401613e899190614645565b602060405180830381865afa158015613ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eca91906150a0565b90506000613ef7612710613ee9600b548561389390919063ffffffff16565b6138a990919063ffffffff16565b90506000811115613f3057613f2f7f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d061dead836138bf565b5b60007f000000000000000000000000043c187630188bfb37150e5eb57cf27615ccb9d090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f9d57600080fd5b505af1158015613fb1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140039190615635565b905092915050565b6000600267ffffffffffffffff81111561402857614027615778565b5b6040519080825280602002602001820160405280156140565781602001602082028036833780820191505090505b509050308160008151811061406e5761406d6157a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614113573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061413791906157eb565b8160018151811061414b5761414a6157a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141b0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612742565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614212959493929190615911565b600060405180830381600087803b15801561422c57600080fd5b505af1158015614240573d6000803e3d6000fd5b505050505050565b614273307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612742565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142da9695949392919061596b565b60606040518083038185885af11580156142f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061431d91906159cc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561435e578082015181840152602081019050614343565b60008484015250505050565b6000601f19601f8301169050919050565b600061438682614324565b614390818561432f565b93506143a0818560208601614340565b6143a98161436a565b840191505092915050565b600060208201905081810360008301526143ce818461437b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614406826143db565b9050919050565b614416816143fb565b811461442157600080fd5b50565b6000813590506144338161440d565b92915050565b6000819050919050565b61444c81614439565b811461445757600080fd5b50565b60008135905061446981614443565b92915050565b60008060408385031215614486576144856143d6565b5b600061449485828601614424565b92505060206144a58582860161445a565b9150509250929050565b60008115159050919050565b6144c4816144af565b82525050565b60006020820190506144df60008301846144bb565b92915050565b6000602082840312156144fb576144fa6143d6565b5b600061450984828501614424565b91505092915050565b6000819050919050565b600061453761453261452d846143db565b614512565b6143db565b9050919050565b60006145498261451c565b9050919050565b600061455b8261453e565b9050919050565b61456b81614550565b82525050565b60006020820190506145866000830184614562565b92915050565b61459581614439565b82525050565b60006020820190506145b0600083018461458c565b92915050565b6000602082840312156145cc576145cb6143d6565b5b60006145da8482850161445a565b91505092915050565b6000806000606084860312156145fc576145fb6143d6565b5b600061460a86828701614424565b935050602061461b86828701614424565b925050604061462c8682870161445a565b9150509250925092565b61463f816143fb565b82525050565b600060208201905061465a6000830184614636565b92915050565b600060ff82169050919050565b61467681614660565b82525050565b6000602082019050614691600083018461466d565b92915050565b6146a0816144af565b81146146ab57600080fd5b50565b6000813590506146bd81614697565b92915050565b6000806000606084860312156146dc576146db6143d6565b5b60006146ea8682870161445a565b93505060206146fb8682870161445a565b925050604061470c868287016146ae565b9150509250925092565b6000806040838503121561472d5761472c6143d6565b5b600061473b85828601614424565b925050602061474c858286016146ae565b9150509250929050565b60008060006060848603121561476f5761476e6143d6565b5b600061477d8682870161445a565b935050602061478e8682870161445a565b925050604061479f8682870161445a565b9150509250925092565b6000602082840312156147bf576147be6143d6565b5b60006147cd848285016146ae565b91505092915050565b600080604083850312156147ed576147ec6143d6565b5b60006147fb85828601614424565b925050602061480c85828601614424565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061485d57607f821691505b6020821081036148705761486f614816565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ac60208361432f565b91506148b782614876565b602082019050919050565b600060208201905081810360008301526148db8161489f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061491c82614439565b915061492783614439565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149605761495f6148e2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149a582614439565b91506149b083614439565b9250826149c0576149bf61496b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614a27602f8361432f565b9150614a32826149cb565b604082019050919050565b60006020820190508181036000830152614a5681614a1a565b9050919050565b6000614a6882614439565b9150614a7383614439565b9250828201905080821115614a8b57614a8a6148e2565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614aed60338361432f565b9150614af882614a91565b604082019050919050565b60006020820190508181036000830152614b1c81614ae0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b7f60308361432f565b9150614b8a82614b23565b604082019050919050565b60006020820190508181036000830152614bae81614b72565b9050919050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b6000614beb601d8361432f565b9150614bf682614bb5565b602082019050919050565b60006020820190508181036000830152614c1a81614bde565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c7d60398361432f565b9150614c8882614c21565b604082019050919050565b60006020820190508181036000830152614cac81614c70565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d0f60258361432f565b9150614d1a82614cb3565b604082019050919050565b60006020820190508181036000830152614d3e81614d02565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614da160248361432f565b9150614dac82614d45565b604082019050919050565b60006020820190508181036000830152614dd081614d94565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e3360358361432f565b9150614e3e82614dd7565b604082019050919050565b60006020820190508181036000830152614e6281614e26565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614ec560348361432f565b9150614ed082614e69565b604082019050919050565b60006020820190508181036000830152614ef481614eb8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f5760268361432f565b9150614f6282614efb565b604082019050919050565b60006020820190508181036000830152614f8681614f4a565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fc360208361432f565b9150614fce82614f8d565b602082019050919050565b60006020820190508181036000830152614ff281614fb6565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615055602a8361432f565b915061506082614ff9565b604082019050919050565b6000602082019050818103600083015261508481615048565b9050919050565b60008151905061509a81614443565b92915050565b6000602082840312156150b6576150b56143d6565b5b60006150c48482850161508b565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061512960248361432f565b9150615134826150cd565b604082019050919050565b600060208201905081810360008301526151588161511c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151bb60228361432f565b91506151c68261515f565b604082019050919050565b600060208201905081810360008301526151ea816151ae565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615227601d8361432f565b9150615232826151f1565b602082019050919050565b600060208201905081810360008301526152568161521a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152b960258361432f565b91506152c48261525d565b604082019050919050565b600060208201905081810360008301526152e8816152ac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061534b60238361432f565b9150615356826152ef565b604082019050919050565b6000602082019050818103600083015261537a8161533e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006153b760168361432f565b91506153c282615381565b602082019050919050565b600060208201905081810360008301526153e6816153aa565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061546f60498361432f565b915061547a826153ed565b606082019050919050565b6000602082019050818103600083015261549e81615462565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061550160358361432f565b915061550c826154a5565b604082019050919050565b60006020820190508181036000830152615530816154f4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061556d60138361432f565b915061557882615537565b602082019050919050565b6000602082019050818103600083015261559c81615560565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155ff60368361432f565b915061560a826155a3565b604082019050919050565b6000602082019050818103600083015261562e816155f2565b9050919050565b600061564082614439565b915061564b83614439565b9250828203905081811115615663576156626148e2565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006156c560268361432f565b91506156d082615669565b604082019050919050565b600060208201905081810360008301526156f4816156b8565b9050919050565b600081905092915050565b50565b60006157166000836156fb565b915061572182615706565b600082019050919050565b600061573782615709565b9150819050919050565b6000606082019050615756600083018661458c565b615763602083018561458c565b615770604083018461458c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506157e58161440d565b92915050565b600060208284031215615801576158006143d6565b5b600061580f848285016157d6565b91505092915050565b6000819050919050565b600061583d61583861583384615818565b614512565b614439565b9050919050565b61584d81615822565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615888816143fb565b82525050565b600061589a838361587f565b60208301905092915050565b6000602082019050919050565b60006158be82615853565b6158c8818561585e565b93506158d38361586f565b8060005b838110156159045781516158eb888261588e565b97506158f6836158a6565b9250506001810190506158d7565b5085935050505092915050565b600060a082019050615926600083018861458c565b6159336020830187615844565b818103604083015261594581866158b3565b90506159546060830185614636565b615961608083018461458c565b9695505050505050565b600060c0820190506159806000830189614636565b61598d602083018861458c565b61599a6040830187615844565b6159a76060830186615844565b6159b46080830185614636565b6159c160a083018461458c565b979650505050505050565b6000806000606084860312156159e5576159e46143d6565b5b60006159f38682870161508b565b9350506020615a048682870161508b565b9250506040615a158682870161508b565b915050925092509256fea264697066735822122040090cb1754267e5c4a3f1ba40cf55013f7029d3d3415290996e3643db1c558464736f6c63430008100033
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.