ERC-20
Overview
Max Total Supply
1,000,000 KAT
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000225581243266208 KATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Katana
Compiler Version
v0.8.15+commit.e14f2714
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.15; import "./KatanaDividendToken.sol"; /* The Katana is made from many into one... it is a tool that must be forged from the struggle of the many. Strike the flame, stand together, and rise as legends! https://t.me/KatanaToken riseofkatana.com */ contract Katana is ERC20, Ownable { modifier onlyManager() { require( msg.sender == managerAddress, "Message sender must be the contract's Manager." ); _; } IRouter public router; address public pair; DividendTracker public dividendTracker; address public treasuryWallet = 0xAd989683483c6D72B3eb815f01ee0Ca14542C01e; address public devWallet = 0xAd989683483c6D72B3eb815f01ee0Ca14542C01e; uint256 public swapTokensAtAmount; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWallet; address public managerAddress= 0xAd989683483c6D72B3eb815f01ee0Ca14542C01e; mapping(address => bool) public _isBot; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedFromMaxWallet; mapping(address => bool) public automatedMarketMakerPairs; bool private swapping; bool public swapEnabled = false; bool public claimEnabled; bool public tradingEnabled; event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated( uint256 indexed newValue, uint256 indexed oldValue ); event SendDividends(uint256 tokensSwapped, uint256 amount); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); struct Taxes { uint256 rewards; uint256 treasury; uint256 dev; } Taxes public buyTaxes = Taxes(0, 0, 0); Taxes public sellTaxes = Taxes(0, 0, 0); uint256 public totalBuyTax = 0; uint256 public totalSellTax = 0; constructor(address _manager) ERC20("Katana", "KAT") { dividendTracker = new DividendTracker(); setSwapTokensAtAmount(5000); updateMaxWalletAmount(20000); setMaxBuyAndSell(20000, 20000); IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address _pair = IFactory(_router.factory()).createPair( address(this), _router.WETH() ); router = _router; pair = _pair; excludeFromFees(owner(), true); excludeFromFees(address(this), true); UpdateManagerAddress(_manager); excludeFromMaxWallet(_pair, true); excludeFromMaxWallet(address(dividendTracker), true); excludeFromMaxWallet(address(this), true); excludeFromMaxWallet(address(_router), true); _setAutomatedMarketMakerPair(_pair, true); dividendTracker.excludeFromDividends(address(dividendTracker), true); dividendTracker.excludeFromDividends(address(this), true); dividendTracker.excludeFromDividends(owner(), true); dividendTracker.excludeFromDividends(address(0xdead), true); dividendTracker.excludeFromDividends(address(_router), true); /* _mint is an internal function that is only called here, and cannot be called ever again */ _mint(owner(), 1000000 * (10**18)); } receive() external payable {} function updateDividendTracker(address newAddress) public onlyOwner { DividendTracker newDividendTracker = DividendTracker( payable(newAddress) ); newDividendTracker.excludeFromDividends( address(newDividendTracker), true ); newDividendTracker.excludeFromDividends(address(this), true); newDividendTracker.excludeFromDividends(address(router), true); dividendTracker = newDividendTracker; } function UpdateManagerAddress(address newmanager) public onlyOwner { managerAddress = newmanager; } function UpdateTreasuryAddress(address newtreasury) public onlyManager { treasuryWallet = newtreasury; } function excludeFromFees(address account, bool excluded) public onlyManager { require( _isExcludedFromFees[account] != excluded, " Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeFromMaxWallet(address account, bool excluded) public onlyManager { _isExcludedFromMaxWallet[account] = excluded; } function excludeMultipleAccountsFromFees( address[] calldata accounts, bool excluded ) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } /// @dev "true" to exlcude, "false" to include function excludeFromDividends(address account, bool value) external onlyOwner { dividendTracker.excludeFromDividends(account, value); } function setDevWallet(address newWallet) public onlyOwner { devWallet = newWallet; } function updateMaxWalletAmount(uint256 newNum) public onlyOwner { require(newNum > (10000 * 1), "Cannot set maxWallet lower than 1%"); maxWallet = newNum * (10**18); } function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell) public onlyOwner { require(maxBuy >= 10000, "Cannot set maxbuy lower than 1% "); require(maxSell >= 5000, "Cannot set maxsell lower than 0.5% "); maxBuyAmount = maxBuy * 10**18; maxSellAmount = maxSell * 10**18; } /// @notice Update the threshold to swap tokens for liquidity, /// treasury and dividends. function setSwapTokensAtAmount(uint256 amount) public onlyManager { require(amount < 250000, "Cannot set swaptokens higher then than 25% "); swapTokensAtAmount = amount * 10**18; } function setBuyTaxes( uint256 _rewards, uint256 _treasury, uint256 _dev ) external onlyManager { require(_rewards + _treasury + _dev <= 15, "Fee must be <= 15%"); buyTaxes = Taxes(_rewards, _treasury, _dev); totalBuyTax = _rewards + _treasury + _dev; } function setSellTaxes( uint256 _rewards, uint256 _treasury, uint256 _dev ) external onlyManager { require(_rewards + _treasury + _dev <= 15, "Fee must be <= 15%"); sellTaxes = Taxes(_rewards, _treasury, _dev); totalSellTax = _rewards + _treasury + _dev; } /// @notice Enable or disable internal swaps /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends function setSwapEnabled(bool _enabled) external onlyManager { swapEnabled = _enabled; } /// @notice Manual claim the dividends function claim() external { require(claimEnabled, "Claim not enabled"); dividendTracker.processAccount(payable(msg.sender)); } /// @notice Withdraw tokens sent by mistake. /// @param tokenAddress The address of the token to withdraw function rescueETH20Tokens(address tokenAddress) external onlyManager { IERC20(tokenAddress).transfer( owner(), IERC20(tokenAddress).balanceOf(address(this)) ); } /// @notice Send remaining ETH to treasuryWallet /// @dev It will send all ETH to treasuryWallet function forceSend() external onlyManager { (bool success, ) = payable(devWallet).call{ value: address(this).balance }(""); require(success, "Failed to send Ether to dev wallet"); } function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner { dividendTracker.trackerRescueETH20Tokens(owner(), tokenAddress); } function trackerForceSend() external onlyOwner { dividendTracker.trackerForceSend(owner()); } function updateRouter(address newRouter) external onlyOwner { router = IRouter(newRouter); } function activateTrading() external onlyOwner { require(!tradingEnabled, "Trading already enabled"); tradingEnabled = true; } function setClaimEnabled(bool state) external onlyManager { claimEnabled = state; } /// @param bot The bot address /// @param value "true" to blacklist, "false" to unblacklist function setBot(address bot, bool value) external onlyOwner { require(_isBot[bot] != value); _isBot[bot] = value; } function setBulkBot(address[] memory bots, bool value) external onlyOwner { for (uint256 i; i < bots.length; i++) { _isBot[bots[i]] = value; } } /// @dev Set new pairs created due to listing in new DEX function setAutomatedMarketMakerPair(address newPair, bool value) external onlyOwner { _setAutomatedMarketMakerPair(newPair, value); } function _setAutomatedMarketMakerPair(address newPair, bool value) private { require( automatedMarketMakerPairs[newPair] != value, "Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[newPair] = value; if (value) { dividendTracker.excludeFromDividends(newPair, true); } emit SetAutomatedMarketMakerPair(newPair, value); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountInfo(address account) external view returns ( address, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccount(account); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if ( !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping ) { require(tradingEnabled, "Trading not active"); require(!_isBot[from] && !_isBot[to], "Bye Bot"); if (automatedMarketMakerPairs[to]) { require( amount <= maxSellAmount, "You are exceeding maxSellAmount" ); } else if (automatedMarketMakerPairs[from]) require( amount <= maxBuyAmount, "You are exceeding maxBuyAmount" ); if (!_isExcludedFromMaxWallet[to]) { require( amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet" ); } } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && swapEnabled && automatedMarketMakerPairs[to] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; if (totalSellTax > 0) { swapAndLiquify(swapTokensAtAmount); } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]) takeFee = false; if (takeFee) { uint256 feeAmt; if (automatedMarketMakerPairs[to]) feeAmt = (amount * totalSellTax) / 100; else if (automatedMarketMakerPairs[from]) feeAmt = (amount * totalBuyTax) / 100; amount = amount - feeAmt; super._transfer(from, address(this), feeAmt); } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapAndLiquify(uint256 tokens) private { uint256 toSwap = tokens; //- tokensToAddLiquidityWith; swapTokensForETH(toSwap); uint256 contractrewardbalance = address(this).balance; uint256 totalTax = (totalSellTax); uint256 devAmt = (contractrewardbalance * sellTaxes.dev) / totalTax; if (devAmt > 0) { (bool success, ) = payable(devWallet).call{value: devAmt}(""); require(success, "Failed to send Ether to dev wallet"); } //Send ETH to dividends uint256 dividends = (contractrewardbalance * sellTaxes.rewards) / totalTax; if (dividends > 0) { (bool success, ) = payable(address(dividendTracker)).call{ value: dividends }(""); if (success) { dividendTracker.distributeDividends(dividends); emit SendDividends(tokens, dividends); } } uint256 treasuryAmt = (contractrewardbalance * sellTaxes.treasury) / totalTax; if (treasuryAmt > 0) { (bool success, ) = payable(treasuryWallet).call{value: treasuryAmt}( "" ); if (success) {} } } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } } contract DividendTracker is Ownable, DividendPayingToken { struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } mapping(address => bool) public excludedFromDividends; mapping(address => uint256) public lastClaimTimes; event ExcludeFromDividends(address indexed account, bool value); event Claim(address indexed account, uint256 amount); constructor() DividendPayingToken("Dividend_Tracker", "Dividend_Tracker") {} function trackerRescueETH20Tokens(address recipient, address tokenAddress) external onlyOwner { IERC20(tokenAddress).transfer( recipient, IERC20(tokenAddress).balanceOf(address(this)) ); } function trackerForceSend(address recipient) external onlyOwner { (bool success, ) = payable(recipient).call{ value: address(this).balance }(""); require(success, "Failed to send Ether to wallet"); } function _transfer( address, address, uint256 ) internal pure override { require(false, "Dividend_Tracker: No transfers allowed"); } function excludeFromDividends(address account, bool value) external onlyOwner { require(excludedFromDividends[account] != value); excludedFromDividends[account] = value; if (value == true) { _setBalance(account, 0); } else { _setBalance(account, balanceOf(account)); } emit ExcludeFromDividends(account, value); } function getAccount(address account) public view returns ( address, uint256, uint256, uint256, uint256 ) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function setBalance(address account, uint256 newBalance) external onlyOwner { if (excludedFromDividends[account]) { return; } _setBalance(account, newBalance); } function processAccount(address payable account) external onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount); return true; } return false; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./DividendPayingTokenInterface.sol"; import "./IDEX.sol"; library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; //address public LP_Token; receive() external payable {} // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; uint256 public totalDividendsWithdrawn; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} function distributeDividends(uint256 amount) public onlyOwner{ require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(user, _withdrawableDividend); (bool success, ) = payable(user).call{ value: _withdrawableDividend }(""); //bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); totalDividendsWithdrawn -= _withdrawableDividend; return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; interface IGoonNFT { function AddRewards ( ) external payable; function approve ( address to, uint256 tokenId ) external; function currentRewardPeriodId ( ) external view returns ( uint256 ); function managerAddress ( ) external view returns ( address ); function rewardCycle ( uint256 ) external view returns ( uint256 rewardsamount, uint256 time, uint256 currentsupply ); } interface IPair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function token0() external view returns (address); } interface IFactory{ function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); } interface IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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 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); }
// 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); }
{ "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":[{"internalType":"address","name":"_manager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"newmanager","type":"address"}],"name":"UpdateManagerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtreasury","type":"address"}],"name":"UpdateTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","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":"buyTaxes","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewards","type":"uint256"},{"internalType":"uint256","name":"_treasury","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewards","type":"uint256"},{"internalType":"uint256","name":"_treasury","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","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":"trackerForceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[{"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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405273ad989683483c6d72b3eb815f01ee0ca14542c01e600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ad989683483c6d72b3eb815f01ee0ca14542c01e600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ad989683483c6d72b3eb815f01ee0ca14542c01e600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601460016101000a81548160ff02191690831515021790555060405180606001604052806000815260200160008152602001600081525060156000820151816000015560208201518160010155604082015181600201555050604051806060016040528060008152602001600081526020016000815250601860008201518160000155602082015181600101556040820151816002015550506000601b556000601c55348015620001b557600080fd5b506040516200b33d3803806200b33d8339818101604052810190620001db9190620013f4565b6040518060400160405280600681526020017f4b6174616e6100000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b415400000000000000000000000000000000000000000000000000000000008152508160039081620002589190620016a0565b5080600490816200026a9190620016a0565b5050506200028d620002816200094960201b60201c565b6200095160201b60201c565b6040516200029b906200137c565b604051809103906000f080158015620002b8573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200030c61138862000a1760201b60201c565b6200031f614e2062000b1160201b60201c565b62000333614e208062000b8760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200039a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c09190620013f4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000428573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044e9190620013f4565b6040518363ffffffff1660e01b81526004016200046d92919062001798565b6020604051808303816000875af11580156200048d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b39190620013f4565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005596200054b62000c6360201b60201c565b600162000c8d60201b60201c565b6200056c30600162000c8d60201b60201c565b6200057d8362000e6060201b60201c565b6200059081600162000eb460201b60201c565b620005c5600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000eb460201b60201c565b620005d830600162000eb460201b60201c565b620005eb82600162000eb460201b60201c565b620005fe81600162000fa260201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b815260040162000680929190620017e2565b600060405180830381600087803b1580156200069b57600080fd5b505af1158015620006b0573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b815260040162000714929190620017e2565b600060405180830381600087803b1580156200072f57600080fd5b505af115801562000744573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200079662000c6360201b60201c565b60016040518363ffffffff1660e01b8152600401620007b7929190620017e2565b600060405180830381600087803b158015620007d257600080fd5b505af1158015620007e7573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a061dead60016040518363ffffffff1660e01b81526004016200084d929190620017e2565b600060405180830381600087803b1580156200086857600080fd5b505af11580156200087d573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401620008e1929190620017e2565b600060405180830381600087803b158015620008fc57600080fd5b505af115801562000911573d6000803e3d6000fd5b50505050620009406200092962000c6360201b60201c565b69d3c21bcecceda10000006200117460201b60201c565b50505062001e3e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000aaa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa19062001896565b60405180910390fd5b6203d090811062000af2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae9906200192e565b60405180910390fd5b670de0b6b3a76400008162000b0891906200197f565b600b8190555050565b62000b21620012e160201b60201c565b612710811162000b68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b5f9062001a56565b60405180910390fd5b670de0b6b3a76400008162000b7e91906200197f565b600e8190555050565b62000b97620012e160201b60201c565b61271082101562000bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd69062001ac8565b60405180910390fd5b61138881101562000c27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c1e9062001b60565b60405180910390fd5b670de0b6b3a76400008262000c3d91906200197f565b600c81905550670de0b6b3a76400008162000c5991906200197f565b600d819055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000d20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d179062001896565b60405180910390fd5b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000db5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dac9062001bf8565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000e54919062001c1a565b60405180910390a25050565b62000e70620012e160201b60201c565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000f47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f3e9062001896565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362001037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200102e9062001cad565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080156200112a57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401620010f5929190620017e2565b600060405180830381600087803b1580156200111057600080fd5b505af115801562001125573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620011e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011dd9062001d1f565b60405180910390fd5b620011fa600083836200137260201b60201c565b80600260008282546200120e919062001d41565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620012c1919062001daf565b60405180910390a3620012dd600083836200137760201b60201c565b5050565b620012f16200094960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200131762000c6360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013679062001e1c565b60405180910390fd5b565b505050565b505050565b61357b8062007dc283390190565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620013bc826200138f565b9050919050565b620013ce81620013af565b8114620013da57600080fd5b50565b600081519050620013ee81620013c3565b92915050565b6000602082840312156200140d576200140c6200138a565b5b60006200141d84828501620013dd565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620014a857607f821691505b602082108103620014be57620014bd62001460565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620014e9565b620015348683620014e9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620015816200157b62001575846200154c565b62001556565b6200154c565b9050919050565b6000819050919050565b6200159d8362001560565b620015b5620015ac8262001588565b848454620014f6565b825550505050565b600090565b620015cc620015bd565b620015d981848462001592565b505050565b5b818110156200160157620015f5600082620015c2565b600181019050620015df565b5050565b601f82111562001650576200161a81620014c4565b6200162584620014d9565b8101602085101562001635578190505b6200164d6200164485620014d9565b830182620015de565b50505b505050565b600082821c905092915050565b6000620016756000198460080262001655565b1980831691505092915050565b600062001690838362001662565b9150826002028217905092915050565b620016ab8262001426565b67ffffffffffffffff811115620016c757620016c662001431565b5b620016d382546200148f565b620016e082828562001605565b600060209050601f83116001811462001718576000841562001703578287015190505b6200170f858262001682565b8655506200177f565b601f1984166200172886620014c4565b60005b8281101562001752578489015182556001820191506020850194506020810190506200172b565b868310156200177257848901516200176e601f89168262001662565b8355505b6001600288020188555050505b505050505050565b6200179281620013af565b82525050565b6000604082019050620017af600083018562001787565b620017be602083018462001787565b9392505050565b60008115159050919050565b620017dc81620017c5565b82525050565b6000604082019050620017f9600083018562001787565b620018086020830184620017d1565b9392505050565b600082825260208201905092915050565b7f4d6573736167652073656e646572206d7573742062652074686520636f6e747260008201527f6163742773204d616e616765722e000000000000000000000000000000000000602082015250565b60006200187e602e836200180f565b91506200188b8262001820565b604082019050919050565b60006020820190508181036000830152620018b1816200186f565b9050919050565b7f43616e6e6f74207365742073776170746f6b656e73206869676865722074686560008201527f6e207468616e2032352520000000000000000000000000000000000000000000602082015250565b600062001916602b836200180f565b91506200192382620018b8565b604082019050919050565b60006020820190508181036000830152620019498162001907565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200198c826200154c565b915062001999836200154c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620019d557620019d462001950565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600062001a3e6022836200180f565b915062001a4b82620019e0565b604082019050919050565b6000602082019050818103600083015262001a718162001a2f565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b600062001ab06020836200180f565b915062001abd8262001a78565b602082019050919050565b6000602082019050818103600083015262001ae38162001aa1565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600062001b486023836200180f565b915062001b558262001aea565b604082019050919050565b6000602082019050818103600083015262001b7b8162001b39565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b600062001be0602b836200180f565b915062001bed8262001b82565b604082019050919050565b6000602082019050818103600083015262001c138162001bd1565b9050919050565b600060208201905062001c316000830184620017d1565b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b600062001c956038836200180f565b915062001ca28262001c37565b604082019050919050565b6000602082019050818103600083015262001cc88162001c86565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001d07601f836200180f565b915062001d148262001ccf565b602082019050919050565b6000602082019050818103600083015262001d3a8162001cf8565b9050919050565b600062001d4e826200154c565b915062001d5b836200154c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001d935762001d9262001950565b5b828201905092915050565b62001da9816200154c565b82525050565b600060208201905062001dc6600083018462001d9e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001e046020836200180f565b915062001e118262001dcc565b602082019050919050565b6000602082019050818103600083015262001e378162001df5565b9050919050565b615f748062001e4e6000396000f3fe6080604052600436106103bc5760003560e01c80637b510fe8116101f2578063b62496f51161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e13578063f66895a314610e3c578063f887ea4014610e69578063f8b45b0514610e94576103c3565b8063dd62ed3e14610d6b578063e01af92c14610da8578063e11c336814610dd1578063e2f4560514610de8576103c3565b8063c492f046116100dc578063c492f04614610cc5578063c851cc3214610cee578063cf73a1bc14610d17578063d2fcc00114610d42576103c3565b8063b62496f514610c0d578063b83b297f14610c4a578063c024666814610c73578063c18bc19514610c9c576103c3565b806395d89b4111610185578063a8b9d24011610154578063a8b9d24014610b2d578063a9059cbb14610b6a578063abb8105214610ba7578063afa4f3b214610be4576103c3565b806395d89b4114610a715780639a7a23d614610a9c578063a457c2d714610ac5578063a8aa1b3114610b02576103c3565b80638c9684f9116101c15780638c9684f9146109c95780638da5cb5b146109f25780638ea5220f14610a1d57806392929a0914610a48576103c3565b80637b510fe814610907578063864701a51461094857806388bdd9be1461097557806388e765ff1461099e576103c3565b806330bb4cff116102e25780634e71d92d116102755780636ddd1713116102445780636ddd17131461085f57806370a082311461088a578063715018a6146108c757806379b447bd146108de576103c3565b80634e71d92d146107a35780634fbee193146107ba57806366d602ae146107f75780636843cd8414610822576103c3565b806339509351116102b157806339509351146106e55780634626402b1461072257806346469afb1461074d5780634ada218b14610778576103c3565b806330bb4cff1461063d57806330d36c1d14610668578063313ce56714610691578063342aa8b5146106bc576103c3565b80631662d5641161035a5780631f53ac02116103295780631f53ac021461058157806323b872dd146105aa5780632866ed21146105e75780632c1f521614610612576103c3565b80631662d564146104d957806318160ddd146105025780631870517a1461052d5780631bff789814610556576103c3565b8063095ea7b311610396578063095ea7b3146104455780630a78097d146104825780630bd05b69146104ab57806312b77e8a146104c2576103c3565b80630483f7a0146103c857806306fdde03146103f1578063087332141461041c576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103ef60048036038101906103ea9190614459565b610ebf565b005b3480156103fd57600080fd5b50610406610f5a565b6040516104139190614532565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061458a565b610fec565b005b34801561045157600080fd5b5061046c600480360381019061046791906145dd565b611136565b604051610479919061462c565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190614647565b611159565b005b3480156104b757600080fd5b506104c06112eb565b005b3480156104ce57600080fd5b506104d7611360565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190614647565b6114c1565b005b34801561050e57600080fd5b5061051761150d565b6040516105249190614683565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f919061458a565b611517565b005b34801561056257600080fd5b5061056b611661565b6040516105789190614683565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190614647565b611667565b005b3480156105b657600080fd5b506105d160048036038101906105cc919061469e565b6116b3565b6040516105de919061462c565b60405180910390f35b3480156105f357600080fd5b506105fc6116e2565b604051610609919061462c565b60405180910390f35b34801561061e57600080fd5b506106276116f5565b6040516106349190614750565b60405180910390f35b34801561064957600080fd5b5061065261171b565b60405161065f9190614683565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190614647565b6117b3565b005b34801561069d57600080fd5b506106a6611887565b6040516106b39190614787565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190614459565b611890565b005b3480156106f157600080fd5b5061070c600480360381019061070791906145dd565b61194f565b604051610719919061462c565b60405180910390f35b34801561072e57600080fd5b50610737611986565b60405161074491906147b1565b60405180910390f35b34801561075957600080fd5b506107626119ac565b60405161076f9190614683565b60405180910390f35b34801561078457600080fd5b5061078d6119b2565b60405161079a919061462c565b60405180910390f35b3480156107af57600080fd5b506107b86119c5565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190614647565b611ab5565b6040516107ee919061462c565b60405180910390f35b34801561080357600080fd5b5061080c611b0b565b6040516108199190614683565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614647565b611b11565b6040516108569190614683565b60405180910390f35b34801561086b57600080fd5b50610874611bb6565b604051610881919061462c565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190614647565b611bc9565b6040516108be9190614683565b60405180910390f35b3480156108d357600080fd5b506108dc611c11565b005b3480156108ea57600080fd5b50610905600480360381019061090091906147cc565b611c25565b005b34801561091357600080fd5b5061092e60048036038101906109299190614647565b611cef565b60405161093f95949392919061480c565b60405180910390f35b34801561095457600080fd5b5061095d611da6565b60405161096c9392919061485f565b60405180910390f35b34801561098157600080fd5b5061099c60048036038101906109979190614647565b611dbe565b005b3480156109aa57600080fd5b506109b3611f7c565b6040516109c09190614683565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb9190614647565b611f82565b005b3480156109fe57600080fd5b50610a07612023565b604051610a1491906147b1565b60405180910390f35b348015610a2957600080fd5b50610a3261204d565b604051610a3f91906147b1565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190614896565b612073565b005b348015610a7d57600080fd5b50610a86612120565b604051610a939190614532565b60405180910390f35b348015610aa857600080fd5b50610ac36004803603810190610abe9190614459565b6121b2565b005b348015610ad157600080fd5b50610aec6004803603810190610ae791906145dd565b6121c8565b604051610af9919061462c565b60405180910390f35b348015610b0e57600080fd5b50610b1761223f565b604051610b2491906147b1565b60405180910390f35b348015610b3957600080fd5b50610b546004803603810190610b4f9190614647565b612265565b604051610b619190614683565b60405180910390f35b348015610b7657600080fd5b50610b916004803603810190610b8c91906145dd565b61230a565b604051610b9e919061462c565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc99190614647565b61232d565b604051610bdb919061462c565b60405180910390f35b348015610bf057600080fd5b50610c0b6004803603810190610c0691906148c3565b61234d565b005b348015610c1957600080fd5b50610c346004803603810190610c2f9190614647565b61243f565b604051610c41919061462c565b60405180910390f35b348015610c5657600080fd5b50610c716004803603810190610c6c9190614a38565b61245f565b005b348015610c7f57600080fd5b50610c9a6004803603810190610c959190614459565b6124fc565b005b348015610ca857600080fd5b50610cc36004803603810190610cbe91906148c3565b6126c7565b005b348015610cd157600080fd5b50610cec6004803603810190610ce79190614aef565b612730565b005b348015610cfa57600080fd5b50610d156004803603810190610d109190614647565b612818565b005b348015610d2357600080fd5b50610d2c612864565b604051610d3991906147b1565b60405180910390f35b348015610d4e57600080fd5b50610d696004803603810190610d649190614459565b61288a565b005b348015610d7757600080fd5b50610d926004803603810190610d8d9190614b4f565b612975565b604051610d9f9190614683565b60405180910390f35b348015610db457600080fd5b50610dcf6004803603810190610dca9190614896565b6129fc565b005b348015610ddd57600080fd5b50610de6612aa9565b005b348015610df457600080fd5b50610dfd612b47565b604051610e0a9190614683565b60405180910390f35b348015610e1f57600080fd5b50610e3a6004803603810190610e359190614647565b612b4d565b005b348015610e4857600080fd5b50610e51612bd0565b604051610e609392919061485f565b60405180910390f35b348015610e7557600080fd5b50610e7e612be8565b604051610e8b9190614bc2565b60405180910390f35b348015610ea057600080fd5b50610ea9612c0e565b604051610eb69190614683565b60405180910390f35b610ec7612c14565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610f24929190614bdd565b600060405180830381600087803b158015610f3e57600080fd5b505af1158015610f52573d6000803e3d6000fd5b505050505050565b606060038054610f6990614c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9590614c35565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390614cd8565b60405180910390fd5b600f81838561108b9190614d27565b6110959190614d27565b11156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614dc9565b60405180910390fd5b60405180606001604052808481526020018381526020018281525060186000820151816000015560208201518160010155604082015181600201559050508082846111219190614d27565b61112b9190614d27565b601c81905550505050565b600080611141612c92565b905061114e818585612c9a565b600191505092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614cd8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61120d612023565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124691906147b1565b602060405180830381865afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112879190614dfe565b6040518363ffffffff1660e01b81526004016112a4929190614e2b565b6020604051808303816000875af11580156112c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e79190614e69565b5050565b6112f3612c14565b601460039054906101000a900460ff1615611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90614ee2565b60405180910390fd5b6001601460036101000a81548160ff021916908315150217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614cd8565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161143890614f33565b60006040518083038185875af1925050503d8060008114611475576040519150601f19603f3d011682016040523d82523d6000602084013e61147a565b606091505b50509050806114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614fba565b60405180910390fd5b50565b6114c9612c14565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614cd8565b60405180910390fd5b600f8183856115b69190614d27565b6115c09190614d27565b1115611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614dc9565b60405180910390fd5b604051806060016040528084815260200183815260200182815250601560008201518160000155602082015181600101556040820151816002015590505080828461164c9190614d27565b6116569190614d27565b601b81905550505050565b601c5481565b61166f612c14565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806116be612c92565b90506116cb858285612e63565b6116d6858585612eef565b60019150509392505050565b601460029054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ae9190614dfe565b905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614cd8565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b611898612c14565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036118f457600080fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061195a612c92565b905061197b81858561196c8589612975565b6119769190614d27565b612c9a565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b601460039054906101000a900460ff1681565b601460029054906101000a900460ff16611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90615026565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611a6f9190615067565b6020604051808303816000875af1158015611a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab29190614e69565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611b6e91906147b1565b602060405180830381865afa158015611b8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611baf9190614dfe565b9050919050565b601460019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c19612c14565b611c236000613901565b565b611c2d612c14565b612710821015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906150ce565b60405180910390fd5b611388811015611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90615160565b60405180910390fd5b670de0b6b3a764000082611ccb9190615180565b600c81905550670de0b6b3a764000081611ce59190615180565b600d819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611d5291906147b1565b60a060405180830381865afa158015611d6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9391906151ef565b9450945094509450945091939590929450565b60158060000154908060010154908060020154905083565b611dc6612c14565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b8152600401611e07929190614bdd565b600060405180830381600087803b158015611e2157600080fd5b505af1158015611e35573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401611e75929190614bdd565b600060405180830381600087803b158015611e8f57600080fd5b505af1158015611ea3573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401611f05929190614bdd565b600060405180830381600087803b158015611f1f57600080fd5b505af1158015611f33573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600c5481565b611f8a612c14565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823611fd0612023565b836040518363ffffffff1660e01b8152600401611fee92919061526a565b600060405180830381600087803b15801561200857600080fd5b505af115801561201c573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614cd8565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b60606004805461212f90614c35565b80601f016020809104026020016040519081016040528092919081815260200182805461215b90614c35565b80156121a85780601f1061217d576101008083540402835291602001916121a8565b820191906000526020600020905b81548152906001019060200180831161218b57829003601f168201915b5050505050905090565b6121ba612c14565b6121c482826139c7565b5050565b6000806121d3612c92565b905060006121e18286612975565b905083811015612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90615305565b60405180910390fd5b6122338286868403612c9a565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016122c291906147b1565b602060405180830381865afa1580156122df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123039190614dfe565b9050919050565b600080612315612c92565b9050612322818585612eef565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614cd8565b60405180910390fd5b6203d0908110612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990615397565b60405180910390fd5b670de0b6b3a7640000816124369190615180565b600b8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b612467612c14565b60005b82518110156124f757816010600085848151811061248b5761248a6153b7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806124ef906153e6565b91505061246a565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614cd8565b60405180910390fd5b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361261e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612615906154a0565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516126bb919061462c565b60405180910390a25050565b6126cf612c14565b6127108111612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90615532565b60405180910390fd5b670de0b6b3a7640000816127279190615180565b600e8190555050565b612738612c14565b60005b838390508110156127d757816011600086868581811061275e5761275d6153b7565b5b90506020020160208101906127739190614647565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806127cf906153e6565b91505061273b565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161280b93929190615615565b60405180910390a1505050565b612820612c14565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614cd8565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390614cd8565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b612ab1612c14565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633b36a1d7612af7612023565b6040518263ffffffff1660e01b8152600401612b1391906147b1565b600060405180830381600087803b158015612b2d57600080fd5b505af1158015612b41573d6000803e3d6000fd5b50505050565b600b5481565b612b55612c14565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbb906156b9565b60405180910390fd5b612bcd81613901565b50565b60188060000154908060010154908060020154905083565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b612c1c612c92565b73ffffffffffffffffffffffffffffffffffffffff16612c3a612023565b73ffffffffffffffffffffffffffffffffffffffff1614612c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8790615725565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d00906157b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f90615849565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612e569190614683565b60405180910390a3505050565b6000612e6f8484612975565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612ee95781811015612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed2906158b5565b60405180910390fd5b612ee88484848403612c9a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5590615947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906159d9565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156130715750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561308a5750601460009054906101000a900460ff16155b156133a157601460039054906101000a900460ff166130de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d590615a45565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156131825750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b890615ab1565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561325d57600d54811115613258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324f90615b1d565b60405180910390fd5b6132f6565b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156132f557600c548111156132f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132eb90615b89565b60405180910390fd5b5b5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133a057600e5461335383611bc9565b8261335e9190614d27565b111561339f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339690615bf5565b60405180910390fd5b5b5b600081036133ba576133b583836000613b91565b6138fc565b60006133c530611bc9565b90506000600b5482101590508080156133eb5750601460009054906101000a900460ff16155b80156134035750601460019054906101000a900460ff165b80156134585750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134ae5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135045750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613557576001601460006101000a81548160ff0219169083151502179055506000601c54111561353b5761353a600b54613e07565b5b6000601460006101000a81548160ff0219169083151502179055505b6000601460009054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061360d5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561361757600090505b601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136bb5750601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136c557600090505b80156137cb576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613740576064601c548661372f9190615180565b6137399190615c44565b90506137b0565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137af576064601b54866137a29190615180565b6137ac9190615c44565b90505b5b80856137bc9190615c75565b94506137c9873083613b91565b505b6137d6868686613b91565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761381e89611bc9565b6040518363ffffffff1660e01b815260040161383b929190614e2b565b600060405180830381600087803b15801561385557600080fd5b505af1925050508015613866575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866138af88611bc9565b6040518363ffffffff1660e01b81526004016138cc929190614e2b565b600060405180830381600087803b1580156138e657600080fd5b505af19250505080156138f7575060015b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5090615d1b565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015613b4757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401613b14929190614bdd565b600060405180830381600087803b158015613b2e57600080fd5b505af1158015613b42573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf790615947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c66906159d9565b60405180910390fd5b613c7a838383614162565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf790615dad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613dee9190614683565b60405180910390a3613e01848484614167565b50505050565b6000819050613e158161416c565b60004790506000601c54905060008160186002015484613e359190615180565b613e3f9190615c44565b90506000811115613f1a576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e9290614f33565b60006040518083038185875af1925050503d8060008114613ecf576040519150601f19603f3d011682016040523d82523d6000602084013e613ed4565b606091505b5050905080613f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0f90614fba565b60405180910390fd5b505b60008260186000015485613f2e9190615180565b613f389190615c44565b905060008111156140a0576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f8b90614f33565b60006040518083038185875af1925050503d8060008114613fc8576040519150601f19603f3d011682016040523d82523d6000602084013e613fcd565b606091505b50509050801561409e57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791836040518263ffffffff1660e01b81526004016140329190614683565b600060405180830381600087803b15801561404c57600080fd5b505af1158015614060573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38783604051614095929190615dcd565b60405180910390a15b505b600083601860010154866140b49190615180565b6140be9190615c44565b90506000811115614159576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161411190614f33565b60006040518083038185875af1925050503d806000811461414e576040519150601f19603f3d011682016040523d82523d6000602084013e614153565b606091505b50509050505b50505050505050565b505050565b505050565b6000600267ffffffffffffffff811115614189576141886148f5565b5b6040519080825280602002602001820160405280156141b75781602001602082028036833780820191505090505b50905030816000815181106141cf576141ce6153b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061429a9190615df6565b816001815181106142ae576142ad6153b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061431530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612c9a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614379959493929190615ee4565b600060405180830381600087803b15801561439357600080fd5b505af11580156143a7573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ee826143c3565b9050919050565b6143fe816143e3565b811461440957600080fd5b50565b60008135905061441b816143f5565b92915050565b60008115159050919050565b61443681614421565b811461444157600080fd5b50565b6000813590506144538161442d565b92915050565b600080604083850312156144705761446f6143b9565b5b600061447e8582860161440c565b925050602061448f85828601614444565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144d35780820151818401526020810190506144b8565b838111156144e2576000848401525b50505050565b6000601f19601f8301169050919050565b600061450482614499565b61450e81856144a4565b935061451e8185602086016144b5565b614527816144e8565b840191505092915050565b6000602082019050818103600083015261454c81846144f9565b905092915050565b6000819050919050565b61456781614554565b811461457257600080fd5b50565b6000813590506145848161455e565b92915050565b6000806000606084860312156145a3576145a26143b9565b5b60006145b186828701614575565b93505060206145c286828701614575565b92505060406145d386828701614575565b9150509250925092565b600080604083850312156145f4576145f36143b9565b5b60006146028582860161440c565b925050602061461385828601614575565b9150509250929050565b61462681614421565b82525050565b6000602082019050614641600083018461461d565b92915050565b60006020828403121561465d5761465c6143b9565b5b600061466b8482850161440c565b91505092915050565b61467d81614554565b82525050565b60006020820190506146986000830184614674565b92915050565b6000806000606084860312156146b7576146b66143b9565b5b60006146c58682870161440c565b93505060206146d68682870161440c565b92505060406146e786828701614575565b9150509250925092565b6000819050919050565b600061471661471161470c846143c3565b6146f1565b6143c3565b9050919050565b6000614728826146fb565b9050919050565b600061473a8261471d565b9050919050565b61474a8161472f565b82525050565b60006020820190506147656000830184614741565b92915050565b600060ff82169050919050565b6147818161476b565b82525050565b600060208201905061479c6000830184614778565b92915050565b6147ab816143e3565b82525050565b60006020820190506147c660008301846147a2565b92915050565b600080604083850312156147e3576147e26143b9565b5b60006147f185828601614575565b925050602061480285828601614575565b9150509250929050565b600060a08201905061482160008301886147a2565b61482e6020830187614674565b61483b6040830186614674565b6148486060830185614674565b6148556080830184614674565b9695505050505050565b60006060820190506148746000830186614674565b6148816020830185614674565b61488e6040830184614674565b949350505050565b6000602082840312156148ac576148ab6143b9565b5b60006148ba84828501614444565b91505092915050565b6000602082840312156148d9576148d86143b9565b5b60006148e784828501614575565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61492d826144e8565b810181811067ffffffffffffffff8211171561494c5761494b6148f5565b5b80604052505050565b600061495f6143af565b905061496b8282614924565b919050565b600067ffffffffffffffff82111561498b5761498a6148f5565b5b602082029050602081019050919050565b600080fd5b60006149b46149af84614970565b614955565b905080838252602082019050602084028301858111156149d7576149d661499c565b5b835b81811015614a0057806149ec888261440c565b8452602084019350506020810190506149d9565b5050509392505050565b600082601f830112614a1f57614a1e6148f0565b5b8135614a2f8482602086016149a1565b91505092915050565b60008060408385031215614a4f57614a4e6143b9565b5b600083013567ffffffffffffffff811115614a6d57614a6c6143be565b5b614a7985828601614a0a565b9250506020614a8a85828601614444565b9150509250929050565b600080fd5b60008083601f840112614aaf57614aae6148f0565b5b8235905067ffffffffffffffff811115614acc57614acb614a94565b5b602083019150836020820283011115614ae857614ae761499c565b5b9250929050565b600080600060408486031215614b0857614b076143b9565b5b600084013567ffffffffffffffff811115614b2657614b256143be565b5b614b3286828701614a99565b93509350506020614b4586828701614444565b9150509250925092565b60008060408385031215614b6657614b656143b9565b5b6000614b748582860161440c565b9250506020614b858582860161440c565b9150509250929050565b6000614b9a826146fb565b9050919050565b6000614bac82614b8f565b9050919050565b614bbc81614ba1565b82525050565b6000602082019050614bd76000830184614bb3565b92915050565b6000604082019050614bf260008301856147a2565b614bff602083018461461d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c4d57607f821691505b602082108103614c6057614c5f614c06565b5b50919050565b7f4d6573736167652073656e646572206d7573742062652074686520636f6e747260008201527f6163742773204d616e616765722e000000000000000000000000000000000000602082015250565b6000614cc2602e836144a4565b9150614ccd82614c66565b604082019050919050565b60006020820190508181036000830152614cf181614cb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d3282614554565b9150614d3d83614554565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d7257614d71614cf8565b5b828201905092915050565b7f466565206d757374206265203c3d203135250000000000000000000000000000600082015250565b6000614db36012836144a4565b9150614dbe82614d7d565b602082019050919050565b60006020820190508181036000830152614de281614da6565b9050919050565b600081519050614df88161455e565b92915050565b600060208284031215614e1457614e136143b9565b5b6000614e2284828501614de9565b91505092915050565b6000604082019050614e4060008301856147a2565b614e4d6020830184614674565b9392505050565b600081519050614e638161442d565b92915050565b600060208284031215614e7f57614e7e6143b9565b5b6000614e8d84828501614e54565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000614ecc6017836144a4565b9150614ed782614e96565b602082019050919050565b60006020820190508181036000830152614efb81614ebf565b9050919050565b600081905092915050565b50565b6000614f1d600083614f02565b9150614f2882614f0d565b600082019050919050565b6000614f3e82614f10565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fa46022836144a4565b9150614faf82614f48565b604082019050919050565b60006020820190508181036000830152614fd381614f97565b9050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b60006150106011836144a4565b915061501b82614fda565b602082019050919050565b6000602082019050818103600083015261503f81615003565b9050919050565b6000615051826143c3565b9050919050565b61506181615046565b82525050565b600060208201905061507c6000830184615058565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006150b86020836144a4565b91506150c382615082565b602082019050919050565b600060208201905081810360008301526150e7816150ab565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600061514a6023836144a4565b9150615155826150ee565b604082019050919050565b600060208201905081810360008301526151798161513d565b9050919050565b600061518b82614554565b915061519683614554565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151cf576151ce614cf8565b5b828202905092915050565b6000815190506151e9816143f5565b92915050565b600080600080600060a0868803121561520b5761520a6143b9565b5b6000615219888289016151da565b955050602061522a88828901614de9565b945050604061523b88828901614de9565b935050606061524c88828901614de9565b925050608061525d88828901614de9565b9150509295509295909350565b600060408201905061527f60008301856147a2565b61528c60208301846147a2565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152ef6025836144a4565b91506152fa82615293565b604082019050919050565b6000602082019050818103600083015261531e816152e2565b9050919050565b7f43616e6e6f74207365742073776170746f6b656e73206869676865722074686560008201527f6e207468616e2032352520000000000000000000000000000000000000000000602082015250565b6000615381602b836144a4565b915061538c82615325565b604082019050919050565b600060208201905081810360008301526153b081615374565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153f182614554565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361542357615422614cf8565b5b600182019050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b600061548a602b836144a4565b91506154958261542e565b604082019050919050565b600060208201905081810360008301526154b98161547d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600061551c6022836144a4565b9150615527826154c0565b604082019050919050565b6000602082019050818103600083015261554b8161550f565b9050919050565b600082825260208201905092915050565b6000819050919050565b615576816143e3565b82525050565b6000615588838361556d565b60208301905092915050565b60006155a3602084018461440c565b905092915050565b6000602082019050919050565b60006155c48385615552565b93506155cf82615563565b8060005b85811015615608576155e58284615594565b6155ef888261557c565b97506155fa836155ab565b9250506001810190506155d3565b5085925050509392505050565b600060408201905081810360008301526156308185876155b8565b905061563f602083018461461d565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156a36026836144a4565b91506156ae82615647565b604082019050919050565b600060208201905081810360008301526156d281615696565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061570f6020836144a4565b915061571a826156d9565b602082019050919050565b6000602082019050818103600083015261573e81615702565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157a16024836144a4565b91506157ac82615745565b604082019050919050565b600060208201905081810360008301526157d081615794565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006158336022836144a4565b915061583e826157d7565b604082019050919050565b6000602082019050818103600083015261586281615826565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061589f601d836144a4565b91506158aa82615869565b602082019050919050565b600060208201905081810360008301526158ce81615892565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006159316025836144a4565b915061593c826158d5565b604082019050919050565b6000602082019050818103600083015261596081615924565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006159c36023836144a4565b91506159ce82615967565b604082019050919050565b600060208201905081810360008301526159f2816159b6565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000615a2f6012836144a4565b9150615a3a826159f9565b602082019050919050565b60006020820190508181036000830152615a5e81615a22565b9050919050565b7f4279652020426f74000000000000000000000000000000000000000000000000600082015250565b6000615a9b6008836144a4565b9150615aa682615a65565b602082019050919050565b60006020820190508181036000830152615aca81615a8e565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000615b07601f836144a4565b9150615b1282615ad1565b602082019050919050565b60006020820190508181036000830152615b3681615afa565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000615b73601e836144a4565b9150615b7e82615b3d565b602082019050919050565b60006020820190508181036000830152615ba281615b66565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000615bdf601b836144a4565b9150615bea82615ba9565b602082019050919050565b60006020820190508181036000830152615c0e81615bd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c4f82614554565b9150615c5a83614554565b925082615c6a57615c69615c15565b5b828204905092915050565b6000615c8082614554565b9150615c8b83614554565b925082821015615c9e57615c9d614cf8565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000615d056038836144a4565b9150615d1082615ca9565b604082019050919050565b60006020820190508181036000830152615d3481615cf8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615d976026836144a4565b9150615da282615d3b565b604082019050919050565b60006020820190508181036000830152615dc681615d8a565b9050919050565b6000604082019050615de26000830185614674565b615def6020830184614674565b9392505050565b600060208284031215615e0c57615e0b6143b9565b5b6000615e1a848285016151da565b91505092915050565b6000819050919050565b6000615e48615e43615e3e84615e23565b6146f1565b614554565b9050919050565b615e5881615e2d565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000615e9182615e5e565b615e9b8185615552565b9350615ea683615e69565b8060005b83811015615ed7578151615ebe888261557c565b9750615ec983615e79565b925050600181019050615eaa565b5085935050505092915050565b600060a082019050615ef96000830188614674565b615f066020830187615e4f565b8181036040830152615f188186615e86565b9050615f2760608301856147a2565b615f346080830184614674565b969550505050505056fea26469706673582212200a286e4fcf48a9bd27738558d7828ee57f29910fbd46d95264d2ee02ffcde55364736f6c634300080f003360806040523480156200001157600080fd5b506040518060400160405280601081526020017f4469766964656e645f547261636b6572000000000000000000000000000000008152506040518060400160405280601081526020017f4469766964656e645f547261636b6572000000000000000000000000000000008152508181816003908162000091919062000416565b508060049081620000a3919062000416565b505050620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021e57607f821691505b602082108103620002345762000233620001d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002aa86836200025f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f7620002f1620002eb84620002c2565b620002cc565b620002c2565b9050919050565b6000819050919050565b6200031383620002d6565b6200032b6200032282620002fe565b8484546200026c565b825550505050565b600090565b6200034262000333565b6200034f81848462000308565b505050565b5b8181101562000377576200036b60008262000338565b60018101905062000355565b5050565b601f821115620003c65762000390816200023a565b6200039b846200024f565b81016020851015620003ab578190505b620003c3620003ba856200024f565b83018262000354565b50505b505050565b600082821c905092915050565b6000620003eb60001984600802620003cb565b1980831691505092915050565b6000620004068383620003d8565b9150826002028217905092915050565b62000421826200019c565b67ffffffffffffffff8111156200043d576200043c620001a7565b5b62000449825462000205565b620004568282856200037b565b600060209050601f8311600181146200048e576000841562000479578287015190505b620004858582620003f8565b865550620004f5565b601f1984166200049e866200023a565b60005b82811015620004c857848901518255600182019150602085019450602081019050620004a1565b86831015620004e85784890151620004e4601f891682620003d8565b8355505b6001600288020188555050505b505050505050565b61306e806200050d6000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e146106f5578063e30443bc14610732578063f2fde38b1461075b578063fbcbc0f114610784576101d8565b8063a457c2d714610601578063a8b9d2401461063e578063a9059cbb1461067b578063aafd847a146106b8576101d8565b80638da5cb5b116100d15780638da5cb5b1461054357806391b89fba1461056e57806395d89b41146105ab5780639e1e0661146105d6576101d8565b8063715018a6146104c4578063807ab4f7146104db57806385a6b3ae14610518576101d8565b8063313ce5671161016f578063497ec8231161013e578063497ec8231461040a5780634e7b827f146104335780636a4740021461047057806370a0823114610487576101d8565b8063313ce567146103505780633243c7911461037b57806339509351146103a45780633b36a1d7146103e1576101d8565b806318160ddd116101ab57806318160ddd1461026e578063226cfa3d1461029957806323b872dd146102d657806327ce014714610313576101d8565b80630483f7a0146101dd57806306fdde0314610206578063095ea7b314610231576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906121c3565b6107c5565b005b34801561021257600080fd5b5061021b610901565b604051610228919061229c565b60405180910390f35b34801561023d57600080fd5b50610258600480360381019061025391906122f4565b610993565b6040516102659190612343565b60405180910390f35b34801561027a57600080fd5b506102836109b6565b604051610290919061236d565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612388565b6109c0565b6040516102cd919061236d565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906123b5565b6109d8565b60405161030a9190612343565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190612388565b610a07565b604051610347919061236d565b60405180910390f35b34801561035c57600080fd5b50610365610aaa565b6040516103729190612424565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061243f565b610ab3565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906122f4565b610b95565b6040516103d89190612343565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612388565b610bcc565b005b34801561041657600080fd5b50610431600480360381019061042c919061246c565b610c84565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612388565b610d88565b6040516104679190612343565b60405180910390f35b34801561047c57600080fd5b50610485610da8565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612388565b610db4565b6040516104bb919061236d565b60405180910390f35b3480156104d057600080fd5b506104d9610dfc565b005b3480156104e757600080fd5b5061050260048036038101906104fd91906124ea565b610e10565b60405161050f9190612343565b60405180910390f35b34801561052457600080fd5b5061052d610ed7565b60405161053a919061236d565b60405180910390f35b34801561054f57600080fd5b50610558610edd565b6040516105659190612526565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190612388565b610f07565b6040516105a2919061236d565b60405180910390f35b3480156105b757600080fd5b506105c0610f19565b6040516105cd919061229c565b60405180910390f35b3480156105e257600080fd5b506105eb610fab565b6040516105f8919061236d565b60405180910390f35b34801561060d57600080fd5b50610628600480360381019061062391906122f4565b610fb1565b6040516106359190612343565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612388565b611028565b604051610672919061236d565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906122f4565b61108b565b6040516106af9190612343565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190612388565b6110ae565b6040516106ec919061236d565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061246c565b6110f7565b604051610729919061236d565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906122f4565b61117e565b005b34801561076757600080fd5b50610782600480360381019061077d9190612388565b6111e6565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612388565b611269565b6040516107bc959493929190612541565b60405180910390f35b6107cd611349565b801515600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361082957600080fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600115158115150361089c576108978260006113c7565b6108af565b6108ae826108a984610db4565b6113c7565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516108f59190612343565b60405180910390a25050565b606060038054610910906125c3565b80601f016020809104026020016040519081016040528092919081815260200182805461093c906125c3565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b60008061099e611434565b90506109ab81858561143c565b600191505092915050565b6000600254905090565b600c6020528060005260406000206000915090505481565b6000806109e3611434565b90506109f0858285611605565b6109fb858585611691565b60019150509392505050565b6000700100000000000000000000000000000000610a99610a94600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a86610a81610a7088610db4565b6006546116d790919063ffffffff16565b611751565b61176e90919063ffffffff16565b6117b9565b610aa39190612652565b9050919050565b60006012905090565b610abb611349565b6000610ac56109b6565b11610acf57600080fd5b6000811115610b9257610b22610ae36109b6565b610b07700100000000000000000000000000000000846116d790919063ffffffff16565b610b119190612652565b6006546117d090919063ffffffff16565b6006819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051610b6e919061236d565b60405180910390a2610b8b816009546117d090919063ffffffff16565b6009819055505b50565b600080610ba0611434565b9050610bc1818585610bb285896110f7565b610bbc9190612683565b61143c565b600191505092915050565b610bd4611349565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610bfa9061270a565b60006040518083038185875af1925050503d8060008114610c37576040519150601f19603f3d011682016040523d82523d6000602084013e610c3c565b606091505b5050905080610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c779061276b565b60405180910390fd5b5050565b610c8c611349565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ce29190612526565b602060405180830381865afa158015610cff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2391906127a0565b6040518363ffffffff1660e01b8152600401610d409291906127cd565b6020604051808303816000875af1158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d83919061280b565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b610db13361182e565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e04611349565b610e0e6000611a80565b565b6000610e1a611349565b6000610e258361182e565b90506000811115610ecc5742600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610eba919061236d565b60405180910390a26001915050610ed2565b60009150505b919050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610f1282611028565b9050919050565b606060048054610f28906125c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f54906125c3565b8015610fa15780601f10610f7657610100808354040283529160200191610fa1565b820191906000526020600020905b815481529060010190602001808311610f8457829003601f168201915b5050505050905090565b600a5481565b600080610fbc611434565b90506000610fca82866110f7565b90508381101561100f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611006906128aa565b60405180910390fd5b61101c828686840361143c565b60019250505092915050565b6000611084600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107684610a07565b611b4690919063ffffffff16565b9050919050565b600080611096611434565b90506110a3818585611691565b600191505092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611186611349565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111e2576111e182826113c7565b5b5050565b6111ee611349565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112549061293c565b60405180910390fd5b61126681611a80565b50565b60008060008060006112796120ea565b86816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506112ba87611028565b8160200181815250506112cc87610a07565b816040018181525050600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548160600181815250508060000151816020015182604001518360600151600a54955095509550955095505091939590929450565b611351611434565b73ffffffffffffffffffffffffffffffffffffffff1661136f610edd565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906129a8565b60405180910390fd5b565b60006113d283610db4565b9050808211156114035760006113f18284611b4690919063ffffffff16565b90506113fd8482611b90565b5061142f565b8082101561142e5760006114208383611b4690919063ffffffff16565b905061142c8482611c4f565b505b5b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290612a3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612acc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115f8919061236d565b60405180910390a3505050565b600061161184846110f7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461168b578181101561167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490612b38565b60405180910390fd5b61168a848484840361143c565b5b50505050565b60006116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990612bca565b60405180910390fd5b505050565b60008083036116e9576000905061174b565b600082846116f79190612bea565b90508284826117069190612652565b14611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612cb6565b60405180910390fd5b809150505b92915050565b600080829050600081121561176557600080fd5b80915050919050565b600080828461177d9190612ce0565b9050600083121580156117905750838112155b806117a657506000831280156117a557508381125b5b6117af57600080fd5b8091505092915050565b6000808212156117c857600080fd5b819050919050565b60008082846117df9190612683565b905083811015611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90612dc0565b60405180910390fd5b8091505092915050565b60008061183a83611028565b90506000811115611a755761189781600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117d090919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a60008282546118ec9190612683565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d82604051611939919061236d565b60405180910390a260008373ffffffffffffffffffffffffffffffffffffffff16826040516119679061270a565b60006040518083038185875af1925050503d80600081146119a4576040519150601f19603f3d011682016040523d82523d6000602084013e6119a9565b606091505b5050905080611a6b57611a0482600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4690919063ffffffff16565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a6000828254611a599190612de0565b92505081905550600092505050611a7b565b8192505050611a7b565b60009150505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b8883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d0e565b905092915050565b611b9a8282611d72565b611c08611bba611bb5836006546116d790919063ffffffff16565b611751565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec890919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611c598282611f13565b611cc7611c79611c74836006546116d790919063ffffffff16565b611751565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176e90919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d919061229c565b60405180910390fd5b5060008385611d659190612de0565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890612e60565b60405180910390fd5b611ded600083836120e0565b8060026000828254611dff9190612683565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611eb0919061236d565b60405180910390a3611ec4600083836120e5565b5050565b6000808284611ed79190612e80565b905060008312158015611eea5750838113155b80611f005750600083128015611eff57508381135b5b611f0957600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990612f86565b60405180910390fd5b611f8e826000836120e0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613018565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120c7919061236d565b60405180910390a36120db836000846120e5565b505050565b505050565b505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121588261212d565b9050919050565b6121688161214d565b811461217357600080fd5b50565b6000813590506121858161215f565b92915050565b60008115159050919050565b6121a08161218b565b81146121ab57600080fd5b50565b6000813590506121bd81612197565b92915050565b600080604083850312156121da576121d9612128565b5b60006121e885828601612176565b92505060206121f9858286016121ae565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561223d578082015181840152602081019050612222565b8381111561224c576000848401525b50505050565b6000601f19601f8301169050919050565b600061226e82612203565b612278818561220e565b935061228881856020860161221f565b61229181612252565b840191505092915050565b600060208201905081810360008301526122b68184612263565b905092915050565b6000819050919050565b6122d1816122be565b81146122dc57600080fd5b50565b6000813590506122ee816122c8565b92915050565b6000806040838503121561230b5761230a612128565b5b600061231985828601612176565b925050602061232a858286016122df565b9150509250929050565b61233d8161218b565b82525050565b60006020820190506123586000830184612334565b92915050565b612367816122be565b82525050565b6000602082019050612382600083018461235e565b92915050565b60006020828403121561239e5761239d612128565b5b60006123ac84828501612176565b91505092915050565b6000806000606084860312156123ce576123cd612128565b5b60006123dc86828701612176565b93505060206123ed86828701612176565b92505060406123fe868287016122df565b9150509250925092565b600060ff82169050919050565b61241e81612408565b82525050565b60006020820190506124396000830184612415565b92915050565b60006020828403121561245557612454612128565b5b6000612463848285016122df565b91505092915050565b6000806040838503121561248357612482612128565b5b600061249185828601612176565b92505060206124a285828601612176565b9150509250929050565b60006124b78261212d565b9050919050565b6124c7816124ac565b81146124d257600080fd5b50565b6000813590506124e4816124be565b92915050565b600060208284031215612500576124ff612128565b5b600061250e848285016124d5565b91505092915050565b6125208161214d565b82525050565b600060208201905061253b6000830184612517565b92915050565b600060a0820190506125566000830188612517565b612563602083018761235e565b612570604083018661235e565b61257d606083018561235e565b61258a608083018461235e565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125db57607f821691505b6020821081036125ee576125ed612594565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061265d826122be565b9150612668836122be565b925082612678576126776125f4565b5b828204905092915050565b600061268e826122be565b9150612699836122be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126ce576126cd612623565b5b828201905092915050565b600081905092915050565b50565b60006126f46000836126d9565b91506126ff826126e4565b600082019050919050565b6000612715826126e7565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f2077616c6c65740000600082015250565b6000612755601e8361220e565b91506127608261271f565b602082019050919050565b6000602082019050818103600083015261278481612748565b9050919050565b60008151905061279a816122c8565b92915050565b6000602082840312156127b6576127b5612128565b5b60006127c48482850161278b565b91505092915050565b60006040820190506127e26000830185612517565b6127ef602083018461235e565b9392505050565b60008151905061280581612197565b92915050565b60006020828403121561282157612820612128565b5b600061282f848285016127f6565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061289460258361220e565b915061289f82612838565b604082019050919050565b600060208201905081810360008301526128c381612887565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061292660268361220e565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061299260208361220e565b915061299d8261295c565b602082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a2460248361220e565b9150612a2f826129c8565b604082019050919050565b60006020820190508181036000830152612a5381612a17565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab660228361220e565b9150612ac182612a5a565b604082019050919050565b60006020820190508181036000830152612ae581612aa9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b22601d8361220e565b9150612b2d82612aec565b602082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f4469766964656e645f547261636b65723a204e6f207472616e7366657273206160008201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b6000612bb460268361220e565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b6000612bf5826122be565b9150612c00836122be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3957612c38612623565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca060218361220e565b9150612cab82612c44565b604082019050919050565b60006020820190508181036000830152612ccf81612c93565b9050919050565b6000819050919050565b6000612ceb82612cd6565b9150612cf683612cd6565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615612d3157612d30612623565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615612d6957612d68612623565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612daa601b8361220e565b9150612db582612d74565b602082019050919050565b60006020820190508181036000830152612dd981612d9d565b9050919050565b6000612deb826122be565b9150612df6836122be565b925082821015612e0957612e08612623565b5b828203905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612e4a601f8361220e565b9150612e5582612e14565b602082019050919050565b60006020820190508181036000830152612e7981612e3d565b9050919050565b6000612e8b82612cd6565b9150612e9683612cd6565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615612ed157612ed0612623565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615612f0957612f08612623565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f7060218361220e565b9150612f7b82612f14565b604082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061300260228361220e565b915061300d82612fa6565b604082019050919050565b6000602082019050818103600083015261303181612ff5565b905091905056fea2646970667358221220b2d6360dfba880aa3e7e3d92b404ba222b7ef58bf9c8a3c984fe44d69319644f64736f6c634300080f0033000000000000000000000000ad989683483c6d72b3eb815f01ee0ca14542c01e
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80637b510fe8116101f2578063b62496f51161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e13578063f66895a314610e3c578063f887ea4014610e69578063f8b45b0514610e94576103c3565b8063dd62ed3e14610d6b578063e01af92c14610da8578063e11c336814610dd1578063e2f4560514610de8576103c3565b8063c492f046116100dc578063c492f04614610cc5578063c851cc3214610cee578063cf73a1bc14610d17578063d2fcc00114610d42576103c3565b8063b62496f514610c0d578063b83b297f14610c4a578063c024666814610c73578063c18bc19514610c9c576103c3565b806395d89b4111610185578063a8b9d24011610154578063a8b9d24014610b2d578063a9059cbb14610b6a578063abb8105214610ba7578063afa4f3b214610be4576103c3565b806395d89b4114610a715780639a7a23d614610a9c578063a457c2d714610ac5578063a8aa1b3114610b02576103c3565b80638c9684f9116101c15780638c9684f9146109c95780638da5cb5b146109f25780638ea5220f14610a1d57806392929a0914610a48576103c3565b80637b510fe814610907578063864701a51461094857806388bdd9be1461097557806388e765ff1461099e576103c3565b806330bb4cff116102e25780634e71d92d116102755780636ddd1713116102445780636ddd17131461085f57806370a082311461088a578063715018a6146108c757806379b447bd146108de576103c3565b80634e71d92d146107a35780634fbee193146107ba57806366d602ae146107f75780636843cd8414610822576103c3565b806339509351116102b157806339509351146106e55780634626402b1461072257806346469afb1461074d5780634ada218b14610778576103c3565b806330bb4cff1461063d57806330d36c1d14610668578063313ce56714610691578063342aa8b5146106bc576103c3565b80631662d5641161035a5780631f53ac02116103295780631f53ac021461058157806323b872dd146105aa5780632866ed21146105e75780632c1f521614610612576103c3565b80631662d564146104d957806318160ddd146105025780631870517a1461052d5780631bff789814610556576103c3565b8063095ea7b311610396578063095ea7b3146104455780630a78097d146104825780630bd05b69146104ab57806312b77e8a146104c2576103c3565b80630483f7a0146103c857806306fdde03146103f1578063087332141461041c576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103ef60048036038101906103ea9190614459565b610ebf565b005b3480156103fd57600080fd5b50610406610f5a565b6040516104139190614532565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061458a565b610fec565b005b34801561045157600080fd5b5061046c600480360381019061046791906145dd565b611136565b604051610479919061462c565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190614647565b611159565b005b3480156104b757600080fd5b506104c06112eb565b005b3480156104ce57600080fd5b506104d7611360565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190614647565b6114c1565b005b34801561050e57600080fd5b5061051761150d565b6040516105249190614683565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f919061458a565b611517565b005b34801561056257600080fd5b5061056b611661565b6040516105789190614683565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190614647565b611667565b005b3480156105b657600080fd5b506105d160048036038101906105cc919061469e565b6116b3565b6040516105de919061462c565b60405180910390f35b3480156105f357600080fd5b506105fc6116e2565b604051610609919061462c565b60405180910390f35b34801561061e57600080fd5b506106276116f5565b6040516106349190614750565b60405180910390f35b34801561064957600080fd5b5061065261171b565b60405161065f9190614683565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190614647565b6117b3565b005b34801561069d57600080fd5b506106a6611887565b6040516106b39190614787565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190614459565b611890565b005b3480156106f157600080fd5b5061070c600480360381019061070791906145dd565b61194f565b604051610719919061462c565b60405180910390f35b34801561072e57600080fd5b50610737611986565b60405161074491906147b1565b60405180910390f35b34801561075957600080fd5b506107626119ac565b60405161076f9190614683565b60405180910390f35b34801561078457600080fd5b5061078d6119b2565b60405161079a919061462c565b60405180910390f35b3480156107af57600080fd5b506107b86119c5565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190614647565b611ab5565b6040516107ee919061462c565b60405180910390f35b34801561080357600080fd5b5061080c611b0b565b6040516108199190614683565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614647565b611b11565b6040516108569190614683565b60405180910390f35b34801561086b57600080fd5b50610874611bb6565b604051610881919061462c565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190614647565b611bc9565b6040516108be9190614683565b60405180910390f35b3480156108d357600080fd5b506108dc611c11565b005b3480156108ea57600080fd5b50610905600480360381019061090091906147cc565b611c25565b005b34801561091357600080fd5b5061092e60048036038101906109299190614647565b611cef565b60405161093f95949392919061480c565b60405180910390f35b34801561095457600080fd5b5061095d611da6565b60405161096c9392919061485f565b60405180910390f35b34801561098157600080fd5b5061099c60048036038101906109979190614647565b611dbe565b005b3480156109aa57600080fd5b506109b3611f7c565b6040516109c09190614683565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb9190614647565b611f82565b005b3480156109fe57600080fd5b50610a07612023565b604051610a1491906147b1565b60405180910390f35b348015610a2957600080fd5b50610a3261204d565b604051610a3f91906147b1565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190614896565b612073565b005b348015610a7d57600080fd5b50610a86612120565b604051610a939190614532565b60405180910390f35b348015610aa857600080fd5b50610ac36004803603810190610abe9190614459565b6121b2565b005b348015610ad157600080fd5b50610aec6004803603810190610ae791906145dd565b6121c8565b604051610af9919061462c565b60405180910390f35b348015610b0e57600080fd5b50610b1761223f565b604051610b2491906147b1565b60405180910390f35b348015610b3957600080fd5b50610b546004803603810190610b4f9190614647565b612265565b604051610b619190614683565b60405180910390f35b348015610b7657600080fd5b50610b916004803603810190610b8c91906145dd565b61230a565b604051610b9e919061462c565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc99190614647565b61232d565b604051610bdb919061462c565b60405180910390f35b348015610bf057600080fd5b50610c0b6004803603810190610c0691906148c3565b61234d565b005b348015610c1957600080fd5b50610c346004803603810190610c2f9190614647565b61243f565b604051610c41919061462c565b60405180910390f35b348015610c5657600080fd5b50610c716004803603810190610c6c9190614a38565b61245f565b005b348015610c7f57600080fd5b50610c9a6004803603810190610c959190614459565b6124fc565b005b348015610ca857600080fd5b50610cc36004803603810190610cbe91906148c3565b6126c7565b005b348015610cd157600080fd5b50610cec6004803603810190610ce79190614aef565b612730565b005b348015610cfa57600080fd5b50610d156004803603810190610d109190614647565b612818565b005b348015610d2357600080fd5b50610d2c612864565b604051610d3991906147b1565b60405180910390f35b348015610d4e57600080fd5b50610d696004803603810190610d649190614459565b61288a565b005b348015610d7757600080fd5b50610d926004803603810190610d8d9190614b4f565b612975565b604051610d9f9190614683565b60405180910390f35b348015610db457600080fd5b50610dcf6004803603810190610dca9190614896565b6129fc565b005b348015610ddd57600080fd5b50610de6612aa9565b005b348015610df457600080fd5b50610dfd612b47565b604051610e0a9190614683565b60405180910390f35b348015610e1f57600080fd5b50610e3a6004803603810190610e359190614647565b612b4d565b005b348015610e4857600080fd5b50610e51612bd0565b604051610e609392919061485f565b60405180910390f35b348015610e7557600080fd5b50610e7e612be8565b604051610e8b9190614bc2565b60405180910390f35b348015610ea057600080fd5b50610ea9612c0e565b604051610eb69190614683565b60405180910390f35b610ec7612c14565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610f24929190614bdd565b600060405180830381600087803b158015610f3e57600080fd5b505af1158015610f52573d6000803e3d6000fd5b505050505050565b606060038054610f6990614c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9590614c35565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390614cd8565b60405180910390fd5b600f81838561108b9190614d27565b6110959190614d27565b11156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614dc9565b60405180910390fd5b60405180606001604052808481526020018381526020018281525060186000820151816000015560208201518160010155604082015181600201559050508082846111219190614d27565b61112b9190614d27565b601c81905550505050565b600080611141612c92565b905061114e818585612c9a565b600191505092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614cd8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61120d612023565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124691906147b1565b602060405180830381865afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112879190614dfe565b6040518363ffffffff1660e01b81526004016112a4929190614e2b565b6020604051808303816000875af11580156112c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e79190614e69565b5050565b6112f3612c14565b601460039054906101000a900460ff1615611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90614ee2565b60405180910390fd5b6001601460036101000a81548160ff021916908315150217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614cd8565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161143890614f33565b60006040518083038185875af1925050503d8060008114611475576040519150601f19603f3d011682016040523d82523d6000602084013e61147a565b606091505b50509050806114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614fba565b60405180910390fd5b50565b6114c9612c14565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614cd8565b60405180910390fd5b600f8183856115b69190614d27565b6115c09190614d27565b1115611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614dc9565b60405180910390fd5b604051806060016040528084815260200183815260200182815250601560008201518160000155602082015181600101556040820151816002015590505080828461164c9190614d27565b6116569190614d27565b601b81905550505050565b601c5481565b61166f612c14565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806116be612c92565b90506116cb858285612e63565b6116d6858585612eef565b60019150509392505050565b601460029054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ae9190614dfe565b905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614cd8565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b611898612c14565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036118f457600080fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061195a612c92565b905061197b81858561196c8589612975565b6119769190614d27565b612c9a565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b601460039054906101000a900460ff1681565b601460029054906101000a900460ff16611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90615026565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611a6f9190615067565b6020604051808303816000875af1158015611a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab29190614e69565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611b6e91906147b1565b602060405180830381865afa158015611b8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611baf9190614dfe565b9050919050565b601460019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c19612c14565b611c236000613901565b565b611c2d612c14565b612710821015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906150ce565b60405180910390fd5b611388811015611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90615160565b60405180910390fd5b670de0b6b3a764000082611ccb9190615180565b600c81905550670de0b6b3a764000081611ce59190615180565b600d819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611d5291906147b1565b60a060405180830381865afa158015611d6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9391906151ef565b9450945094509450945091939590929450565b60158060000154908060010154908060020154905083565b611dc6612c14565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b8152600401611e07929190614bdd565b600060405180830381600087803b158015611e2157600080fd5b505af1158015611e35573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401611e75929190614bdd565b600060405180830381600087803b158015611e8f57600080fd5b505af1158015611ea3573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401611f05929190614bdd565b600060405180830381600087803b158015611f1f57600080fd5b505af1158015611f33573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600c5481565b611f8a612c14565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823611fd0612023565b836040518363ffffffff1660e01b8152600401611fee92919061526a565b600060405180830381600087803b15801561200857600080fd5b505af115801561201c573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614cd8565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b60606004805461212f90614c35565b80601f016020809104026020016040519081016040528092919081815260200182805461215b90614c35565b80156121a85780601f1061217d576101008083540402835291602001916121a8565b820191906000526020600020905b81548152906001019060200180831161218b57829003601f168201915b5050505050905090565b6121ba612c14565b6121c482826139c7565b5050565b6000806121d3612c92565b905060006121e18286612975565b905083811015612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90615305565b60405180910390fd5b6122338286868403612c9a565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016122c291906147b1565b602060405180830381865afa1580156122df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123039190614dfe565b9050919050565b600080612315612c92565b9050612322818585612eef565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614cd8565b60405180910390fd5b6203d0908110612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990615397565b60405180910390fd5b670de0b6b3a7640000816124369190615180565b600b8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b612467612c14565b60005b82518110156124f757816010600085848151811061248b5761248a6153b7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806124ef906153e6565b91505061246a565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614cd8565b60405180910390fd5b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361261e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612615906154a0565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516126bb919061462c565b60405180910390a25050565b6126cf612c14565b6127108111612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90615532565b60405180910390fd5b670de0b6b3a7640000816127279190615180565b600e8190555050565b612738612c14565b60005b838390508110156127d757816011600086868581811061275e5761275d6153b7565b5b90506020020160208101906127739190614647565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806127cf906153e6565b91505061273b565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161280b93929190615615565b60405180910390a1505050565b612820612c14565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614cd8565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390614cd8565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b612ab1612c14565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633b36a1d7612af7612023565b6040518263ffffffff1660e01b8152600401612b1391906147b1565b600060405180830381600087803b158015612b2d57600080fd5b505af1158015612b41573d6000803e3d6000fd5b50505050565b600b5481565b612b55612c14565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbb906156b9565b60405180910390fd5b612bcd81613901565b50565b60188060000154908060010154908060020154905083565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b612c1c612c92565b73ffffffffffffffffffffffffffffffffffffffff16612c3a612023565b73ffffffffffffffffffffffffffffffffffffffff1614612c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8790615725565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d00906157b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f90615849565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612e569190614683565b60405180910390a3505050565b6000612e6f8484612975565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612ee95781811015612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed2906158b5565b60405180910390fd5b612ee88484848403612c9a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5590615947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906159d9565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156130715750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561308a5750601460009054906101000a900460ff16155b156133a157601460039054906101000a900460ff166130de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d590615a45565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156131825750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b890615ab1565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561325d57600d54811115613258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324f90615b1d565b60405180910390fd5b6132f6565b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156132f557600c548111156132f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132eb90615b89565b60405180910390fd5b5b5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133a057600e5461335383611bc9565b8261335e9190614d27565b111561339f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339690615bf5565b60405180910390fd5b5b5b600081036133ba576133b583836000613b91565b6138fc565b60006133c530611bc9565b90506000600b5482101590508080156133eb5750601460009054906101000a900460ff16155b80156134035750601460019054906101000a900460ff165b80156134585750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134ae5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135045750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613557576001601460006101000a81548160ff0219169083151502179055506000601c54111561353b5761353a600b54613e07565b5b6000601460006101000a81548160ff0219169083151502179055505b6000601460009054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061360d5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561361757600090505b601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136bb5750601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136c557600090505b80156137cb576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613740576064601c548661372f9190615180565b6137399190615c44565b90506137b0565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137af576064601b54866137a29190615180565b6137ac9190615c44565b90505b5b80856137bc9190615c75565b94506137c9873083613b91565b505b6137d6868686613b91565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761381e89611bc9565b6040518363ffffffff1660e01b815260040161383b929190614e2b565b600060405180830381600087803b15801561385557600080fd5b505af1925050508015613866575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866138af88611bc9565b6040518363ffffffff1660e01b81526004016138cc929190614e2b565b600060405180830381600087803b1580156138e657600080fd5b505af19250505080156138f7575060015b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5090615d1b565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015613b4757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401613b14929190614bdd565b600060405180830381600087803b158015613b2e57600080fd5b505af1158015613b42573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf790615947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c66906159d9565b60405180910390fd5b613c7a838383614162565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf790615dad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613dee9190614683565b60405180910390a3613e01848484614167565b50505050565b6000819050613e158161416c565b60004790506000601c54905060008160186002015484613e359190615180565b613e3f9190615c44565b90506000811115613f1a576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e9290614f33565b60006040518083038185875af1925050503d8060008114613ecf576040519150601f19603f3d011682016040523d82523d6000602084013e613ed4565b606091505b5050905080613f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0f90614fba565b60405180910390fd5b505b60008260186000015485613f2e9190615180565b613f389190615c44565b905060008111156140a0576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f8b90614f33565b60006040518083038185875af1925050503d8060008114613fc8576040519150601f19603f3d011682016040523d82523d6000602084013e613fcd565b606091505b50509050801561409e57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791836040518263ffffffff1660e01b81526004016140329190614683565b600060405180830381600087803b15801561404c57600080fd5b505af1158015614060573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38783604051614095929190615dcd565b60405180910390a15b505b600083601860010154866140b49190615180565b6140be9190615c44565b90506000811115614159576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161411190614f33565b60006040518083038185875af1925050503d806000811461414e576040519150601f19603f3d011682016040523d82523d6000602084013e614153565b606091505b50509050505b50505050505050565b505050565b505050565b6000600267ffffffffffffffff811115614189576141886148f5565b5b6040519080825280602002602001820160405280156141b75781602001602082028036833780820191505090505b50905030816000815181106141cf576141ce6153b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061429a9190615df6565b816001815181106142ae576142ad6153b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061431530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612c9a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614379959493929190615ee4565b600060405180830381600087803b15801561439357600080fd5b505af11580156143a7573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ee826143c3565b9050919050565b6143fe816143e3565b811461440957600080fd5b50565b60008135905061441b816143f5565b92915050565b60008115159050919050565b61443681614421565b811461444157600080fd5b50565b6000813590506144538161442d565b92915050565b600080604083850312156144705761446f6143b9565b5b600061447e8582860161440c565b925050602061448f85828601614444565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144d35780820151818401526020810190506144b8565b838111156144e2576000848401525b50505050565b6000601f19601f8301169050919050565b600061450482614499565b61450e81856144a4565b935061451e8185602086016144b5565b614527816144e8565b840191505092915050565b6000602082019050818103600083015261454c81846144f9565b905092915050565b6000819050919050565b61456781614554565b811461457257600080fd5b50565b6000813590506145848161455e565b92915050565b6000806000606084860312156145a3576145a26143b9565b5b60006145b186828701614575565b93505060206145c286828701614575565b92505060406145d386828701614575565b9150509250925092565b600080604083850312156145f4576145f36143b9565b5b60006146028582860161440c565b925050602061461385828601614575565b9150509250929050565b61462681614421565b82525050565b6000602082019050614641600083018461461d565b92915050565b60006020828403121561465d5761465c6143b9565b5b600061466b8482850161440c565b91505092915050565b61467d81614554565b82525050565b60006020820190506146986000830184614674565b92915050565b6000806000606084860312156146b7576146b66143b9565b5b60006146c58682870161440c565b93505060206146d68682870161440c565b92505060406146e786828701614575565b9150509250925092565b6000819050919050565b600061471661471161470c846143c3565b6146f1565b6143c3565b9050919050565b6000614728826146fb565b9050919050565b600061473a8261471d565b9050919050565b61474a8161472f565b82525050565b60006020820190506147656000830184614741565b92915050565b600060ff82169050919050565b6147818161476b565b82525050565b600060208201905061479c6000830184614778565b92915050565b6147ab816143e3565b82525050565b60006020820190506147c660008301846147a2565b92915050565b600080604083850312156147e3576147e26143b9565b5b60006147f185828601614575565b925050602061480285828601614575565b9150509250929050565b600060a08201905061482160008301886147a2565b61482e6020830187614674565b61483b6040830186614674565b6148486060830185614674565b6148556080830184614674565b9695505050505050565b60006060820190506148746000830186614674565b6148816020830185614674565b61488e6040830184614674565b949350505050565b6000602082840312156148ac576148ab6143b9565b5b60006148ba84828501614444565b91505092915050565b6000602082840312156148d9576148d86143b9565b5b60006148e784828501614575565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61492d826144e8565b810181811067ffffffffffffffff8211171561494c5761494b6148f5565b5b80604052505050565b600061495f6143af565b905061496b8282614924565b919050565b600067ffffffffffffffff82111561498b5761498a6148f5565b5b602082029050602081019050919050565b600080fd5b60006149b46149af84614970565b614955565b905080838252602082019050602084028301858111156149d7576149d661499c565b5b835b81811015614a0057806149ec888261440c565b8452602084019350506020810190506149d9565b5050509392505050565b600082601f830112614a1f57614a1e6148f0565b5b8135614a2f8482602086016149a1565b91505092915050565b60008060408385031215614a4f57614a4e6143b9565b5b600083013567ffffffffffffffff811115614a6d57614a6c6143be565b5b614a7985828601614a0a565b9250506020614a8a85828601614444565b9150509250929050565b600080fd5b60008083601f840112614aaf57614aae6148f0565b5b8235905067ffffffffffffffff811115614acc57614acb614a94565b5b602083019150836020820283011115614ae857614ae761499c565b5b9250929050565b600080600060408486031215614b0857614b076143b9565b5b600084013567ffffffffffffffff811115614b2657614b256143be565b5b614b3286828701614a99565b93509350506020614b4586828701614444565b9150509250925092565b60008060408385031215614b6657614b656143b9565b5b6000614b748582860161440c565b9250506020614b858582860161440c565b9150509250929050565b6000614b9a826146fb565b9050919050565b6000614bac82614b8f565b9050919050565b614bbc81614ba1565b82525050565b6000602082019050614bd76000830184614bb3565b92915050565b6000604082019050614bf260008301856147a2565b614bff602083018461461d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c4d57607f821691505b602082108103614c6057614c5f614c06565b5b50919050565b7f4d6573736167652073656e646572206d7573742062652074686520636f6e747260008201527f6163742773204d616e616765722e000000000000000000000000000000000000602082015250565b6000614cc2602e836144a4565b9150614ccd82614c66565b604082019050919050565b60006020820190508181036000830152614cf181614cb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d3282614554565b9150614d3d83614554565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d7257614d71614cf8565b5b828201905092915050565b7f466565206d757374206265203c3d203135250000000000000000000000000000600082015250565b6000614db36012836144a4565b9150614dbe82614d7d565b602082019050919050565b60006020820190508181036000830152614de281614da6565b9050919050565b600081519050614df88161455e565b92915050565b600060208284031215614e1457614e136143b9565b5b6000614e2284828501614de9565b91505092915050565b6000604082019050614e4060008301856147a2565b614e4d6020830184614674565b9392505050565b600081519050614e638161442d565b92915050565b600060208284031215614e7f57614e7e6143b9565b5b6000614e8d84828501614e54565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000614ecc6017836144a4565b9150614ed782614e96565b602082019050919050565b60006020820190508181036000830152614efb81614ebf565b9050919050565b600081905092915050565b50565b6000614f1d600083614f02565b9150614f2882614f0d565b600082019050919050565b6000614f3e82614f10565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fa46022836144a4565b9150614faf82614f48565b604082019050919050565b60006020820190508181036000830152614fd381614f97565b9050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b60006150106011836144a4565b915061501b82614fda565b602082019050919050565b6000602082019050818103600083015261503f81615003565b9050919050565b6000615051826143c3565b9050919050565b61506181615046565b82525050565b600060208201905061507c6000830184615058565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006150b86020836144a4565b91506150c382615082565b602082019050919050565b600060208201905081810360008301526150e7816150ab565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600061514a6023836144a4565b9150615155826150ee565b604082019050919050565b600060208201905081810360008301526151798161513d565b9050919050565b600061518b82614554565b915061519683614554565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151cf576151ce614cf8565b5b828202905092915050565b6000815190506151e9816143f5565b92915050565b600080600080600060a0868803121561520b5761520a6143b9565b5b6000615219888289016151da565b955050602061522a88828901614de9565b945050604061523b88828901614de9565b935050606061524c88828901614de9565b925050608061525d88828901614de9565b9150509295509295909350565b600060408201905061527f60008301856147a2565b61528c60208301846147a2565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152ef6025836144a4565b91506152fa82615293565b604082019050919050565b6000602082019050818103600083015261531e816152e2565b9050919050565b7f43616e6e6f74207365742073776170746f6b656e73206869676865722074686560008201527f6e207468616e2032352520000000000000000000000000000000000000000000602082015250565b6000615381602b836144a4565b915061538c82615325565b604082019050919050565b600060208201905081810360008301526153b081615374565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153f182614554565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361542357615422614cf8565b5b600182019050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b600061548a602b836144a4565b91506154958261542e565b604082019050919050565b600060208201905081810360008301526154b98161547d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600061551c6022836144a4565b9150615527826154c0565b604082019050919050565b6000602082019050818103600083015261554b8161550f565b9050919050565b600082825260208201905092915050565b6000819050919050565b615576816143e3565b82525050565b6000615588838361556d565b60208301905092915050565b60006155a3602084018461440c565b905092915050565b6000602082019050919050565b60006155c48385615552565b93506155cf82615563565b8060005b85811015615608576155e58284615594565b6155ef888261557c565b97506155fa836155ab565b9250506001810190506155d3565b5085925050509392505050565b600060408201905081810360008301526156308185876155b8565b905061563f602083018461461d565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156a36026836144a4565b91506156ae82615647565b604082019050919050565b600060208201905081810360008301526156d281615696565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061570f6020836144a4565b915061571a826156d9565b602082019050919050565b6000602082019050818103600083015261573e81615702565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157a16024836144a4565b91506157ac82615745565b604082019050919050565b600060208201905081810360008301526157d081615794565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006158336022836144a4565b915061583e826157d7565b604082019050919050565b6000602082019050818103600083015261586281615826565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061589f601d836144a4565b91506158aa82615869565b602082019050919050565b600060208201905081810360008301526158ce81615892565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006159316025836144a4565b915061593c826158d5565b604082019050919050565b6000602082019050818103600083015261596081615924565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006159c36023836144a4565b91506159ce82615967565b604082019050919050565b600060208201905081810360008301526159f2816159b6565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000615a2f6012836144a4565b9150615a3a826159f9565b602082019050919050565b60006020820190508181036000830152615a5e81615a22565b9050919050565b7f4279652020426f74000000000000000000000000000000000000000000000000600082015250565b6000615a9b6008836144a4565b9150615aa682615a65565b602082019050919050565b60006020820190508181036000830152615aca81615a8e565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000615b07601f836144a4565b9150615b1282615ad1565b602082019050919050565b60006020820190508181036000830152615b3681615afa565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000615b73601e836144a4565b9150615b7e82615b3d565b602082019050919050565b60006020820190508181036000830152615ba281615b66565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000615bdf601b836144a4565b9150615bea82615ba9565b602082019050919050565b60006020820190508181036000830152615c0e81615bd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c4f82614554565b9150615c5a83614554565b925082615c6a57615c69615c15565b5b828204905092915050565b6000615c8082614554565b9150615c8b83614554565b925082821015615c9e57615c9d614cf8565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000615d056038836144a4565b9150615d1082615ca9565b604082019050919050565b60006020820190508181036000830152615d3481615cf8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615d976026836144a4565b9150615da282615d3b565b604082019050919050565b60006020820190508181036000830152615dc681615d8a565b9050919050565b6000604082019050615de26000830185614674565b615def6020830184614674565b9392505050565b600060208284031215615e0c57615e0b6143b9565b5b6000615e1a848285016151da565b91505092915050565b6000819050919050565b6000615e48615e43615e3e84615e23565b6146f1565b614554565b9050919050565b615e5881615e2d565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000615e9182615e5e565b615e9b8185615552565b9350615ea683615e69565b8060005b83811015615ed7578151615ebe888261557c565b9750615ec983615e79565b925050600181019050615eaa565b5085935050505092915050565b600060a082019050615ef96000830188614674565b615f066020830187615e4f565b8181036040830152615f188186615e86565b9050615f2760608301856147a2565b615f346080830184614674565b969550505050505056fea26469706673582212200a286e4fcf48a9bd27738558d7828ee57f29910fbd46d95264d2ee02ffcde55364736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ad989683483c6d72b3eb815f01ee0ca14542c01e
-----Decoded View---------------
Arg [0] : _manager (address): 0xAd989683483c6D72B3eb815f01ee0Ca14542C01e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ad989683483c6d72b3eb815f01ee0ca14542c01e
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.