ERC-20
Overview
Max Total Supply
100,000,000 GEN
Holders
460
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000009310573 GENValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.17+commit.8df45f5f
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.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract Token is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public revShareWallet; address public teamWallet; uint256 public maxTradingAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 constant FEE_BASE = 1000; // uint256 public buyTotalFees; // buy fee uint256 public sellTotalFees; // sell fee uint256 public revShareFee; uint256 public liquidityFee; uint256 public teamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTradingAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Genesis Bot", "GEN") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTrading(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTrading(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = 100_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05%: 50_000 maxTradingAmount = (totalSupply * 20) / 10000; // 0.2%: 100_000 maxWallet = (totalSupply * 100) / 10000; // 1%: 1_000_000 // Fee distribute // 20% for Liquid, 40% for Team, 40% for Rev liquidityFee = 200; revShareFee = 400; teamFee = 400; // 5% fee for buy/sell buyTotalFees = 50; sellTotalFees = 50; revShareWallet = 0x751F5dD416045B4D6c6274FbC124a5439c3E6b13; teamWallet = msg.sender; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTrading(owner(), true); excludeFromMaxTrading(address(this), true); excludeFromMaxTrading(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function startNow() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTradingAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTradingAmount lower than 0.1%" ); maxTradingAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTrading(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTradingAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateFees( uint256 buyTotalFees_, uint256 sellTotalFees_ ) external onlyOwner { require( buyTotalFees_ <= 50 && sellTotalFees_ <= 50, "Buy/sell fees must be <= 50." ); buyTotalFees = buyTotalFees_; sellTotalFees = sellTotalFees_; } function updateFeeDistribution( uint256 revShareFee_, uint256 liquidityFee_ ) external onlyOwner { require(revShareFee_ + liquidityFee_ <= FEE_BASE, "Wrong Input"); revShareFee = revShareFee_; liquidityFee = liquidityFee_; teamFee = FEE_BASE - revShareFee_ - liquidityFee_; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet( address newRevShareWallet ) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[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"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTradingAmount[to] ) { //when buy require( amount <= maxTradingAmount, "Buy transfer amount exceeds the maxTradingAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTradingAmount[from] ) { //when sell require( amount <= maxTradingAmount, "Sell transfer amount exceeds the maxTradingAmount." ); } else if (!_isExcludedMaxTradingAmount[to]) { //when transfer require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(FEE_BASE); tokensForLiquidity += (fees * liquidityFee) / FEE_BASE; tokensForTeam += (fees * teamFee) / FEE_BASE; tokensForRevShare += (fees * revShareFee) / FEE_BASE; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(FEE_BASE); tokensForLiquidity += (fees * liquidityFee) / FEE_BASE; tokensForTeam += (fees * teamFee) / FEE_BASE; tokensForRevShare += (fees * revShareFee) / FEE_BASE; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function _addLiquidity() external onlyOwner { addLiquidity(balanceOf(address(this)), address(this).balance); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div( totalTokensToSwap - (tokensForLiquidity / 2) ); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div( totalTokensToSwap - (tokensForLiquidity / 2) ); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{ value: address(this).balance }(""); } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 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.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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 (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"_addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTradingAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTradingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNow","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":"teamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"revShareFee_","type":"uint256"},{"internalType":"uint256","name":"liquidityFee_","type":"uint256"}],"name":"updateFeeDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTotalFees_","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees_","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTradingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f47656e6573697320426f740000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47454e00000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000c7d565b5080600490816200010d919062000c7d565b50505062000130620001246200053c60201b60201c565b6200054460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200060a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000dce565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000dce565b6040518363ffffffff1660e01b8152600401620002af92919062000e11565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000dce565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200060a60201b60201c565b6200035260a05160016200067560201b60201c565b60006a52b7d2dcc80cd2e4000000905061271060058262000374919062000e6d565b62000380919062000ee7565b60098190555061271060148262000398919062000e6d565b620003a4919062000ee7565b600881905550612710606482620003bc919062000e6d565b620003c8919062000ee7565b600a8190555060c8601081905550610190600f819055506101906011819055506032600d819055506032600e8190555073751f5dd416045b4d6c6274fbc124a5439c3e6b13600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b0620004a26200071660201b60201c565b60016200074060201b60201c565b620004c33060016200074060201b60201c565b620004d861dead60016200074060201b60201c565b620004fa620004ec6200071660201b60201c565b60016200060a60201b60201c565b6200050d3060016200060a60201b60201c565b6200052261dead60016200060a60201b60201c565b620005343382620007fb60201b60201c565b5050620010b7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200061a6200096860201b60201c565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007506200096860201b60201c565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007ef919062000f3c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200086d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008649062000fba565b60405180910390fd5b6200088160008383620009f960201b60201c565b806002600082825462000895919062000fdc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000948919062001028565b60405180910390a36200096460008383620009fe60201b60201c565b5050565b620009786200053c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200099e6200071660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ee9062001095565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a8557607f821691505b60208210810362000a9b5762000a9a62000a3d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ac6565b62000b11868362000ac6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b5e62000b5862000b528462000b29565b62000b33565b62000b29565b9050919050565b6000819050919050565b62000b7a8362000b3d565b62000b9262000b898262000b65565b84845462000ad3565b825550505050565b600090565b62000ba962000b9a565b62000bb681848462000b6f565b505050565b5b8181101562000bde5762000bd260008262000b9f565b60018101905062000bbc565b5050565b601f82111562000c2d5762000bf78162000aa1565b62000c028462000ab6565b8101602085101562000c12578190505b62000c2a62000c218562000ab6565b83018262000bbb565b50505b505050565b600082821c905092915050565b600062000c526000198460080262000c32565b1980831691505092915050565b600062000c6d838362000c3f565b9150826002028217905092915050565b62000c888262000a03565b67ffffffffffffffff81111562000ca45762000ca362000a0e565b5b62000cb0825462000a6c565b62000cbd82828562000be2565b600060209050601f83116001811462000cf5576000841562000ce0578287015190505b62000cec858262000c5f565b86555062000d5c565b601f19841662000d058662000aa1565b60005b8281101562000d2f5784890151825560018201915060208501945060208101905062000d08565b8683101562000d4f578489015162000d4b601f89168262000c3f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d968262000d69565b9050919050565b62000da88162000d89565b811462000db457600080fd5b50565b60008151905062000dc88162000d9d565b92915050565b60006020828403121562000de75762000de662000d64565b5b600062000df78482850162000db7565b91505092915050565b62000e0b8162000d89565b82525050565b600060408201905062000e28600083018562000e00565b62000e37602083018462000e00565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e7a8262000b29565b915062000e878362000b29565b925082820262000e978162000b29565b9150828204841483151762000eb15762000eb062000e3e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ef48262000b29565b915062000f018362000b29565b92508262000f145762000f1362000eb8565b5b828204905092915050565b60008115159050919050565b62000f368162000f1f565b82525050565b600060208201905062000f53600083018462000f2b565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fa2601f8362000f59565b915062000faf8262000f6a565b602082019050919050565b6000602082019050818103600083015262000fd58162000f93565b9050919050565b600062000fe98262000b29565b915062000ff68362000b29565b925082820190508082111562001011576200101062000e3e565b5b92915050565b620010228162000b29565b82525050565b60006020820190506200103f600083018462001017565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107d60208362000f59565b91506200108a8262001045565b602082019050919050565b60006020820190508181036000830152620010b0816200106e565b9050919050565b60805160a05161509262001115600039600081816110b0015281816115e501528181611ca70152611ec4015260008181610eae01528181612f2001528181612f47015281816137dc015281816138bd01526138e401526150926000f3fe6080604052600436106103855760003560e01c8063782c4e99116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f8b45b051161006f578063f8b45b0514610cfb578063f9f92be414610d26578063fde83a3414610d4f578063fe575a8714610d7a5761038c565b8063dd62ed3e14610c41578063e19b282314610c7e578063e2f4560514610ca7578063f2fde38b14610cd25761038c565b8063c18bc195116100dc578063c18bc19514610b85578063d257b34f14610bae578063d7c94efd14610beb578063d85ba06314610c165761038c565b8063bbc0c74214610b08578063bc205ad314610b33578063c024666814610b5c5761038c565b806398118cb41161016f578063a457c2d711610149578063a457c2d714610a28578063a9059cbb14610a65578063adee28ff14610aa2578063b62496f514610acb5761038c565b806398118cb41461099757806399524bbe146109c25780639a7a23d6146109ff5761038c565b80638da5cb5b116101ab5780638da5cb5b146108ed578063924de9b71461091857806395d89b411461094157806396ea32da1461096c5761038c565b8063782c4e99146108705780637ca8448a1461089b5780637cb332bb146108c45761038c565b8063422b5bf5116102b65780636a486a8e11610254578063715018a611610223578063715018a6146107da57806372cacded146107f1578063751039fc1461081c57806375e3661e146108475761038c565b80636a486a8e1461071e5780636db79437146107495780636ddd17131461077257806370a082311461079d5761038c565b80634fbee193116102905780634fbee1931461067657806359927044146106b35780635f189361146106de57806364f99f82146106f55761038c565b8063422b5bf5146105f757806349bd5a5e146106205780634a62bb651461064b5761038c565b806324b9f3c11161032357806338377d0a116102fd57806338377d0a1461054f5780633950935114610578578063395d3384146105b55780633dc599ff146105cc5761038c565b806324b9f3c1146104ce57806327c8f835146104f9578063313ce567146105245761038c565b80631694505e1161035f5780631694505e1461041057806318160ddd1461043b5780631a8145bb1461046657806323b872dd146104915761038c565b806306fdde0314610391578063095ea7b3146103bc5780630e3db9f2146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610db7565b6040516103b39190613a0a565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613ac5565b610e49565b6040516103f09190613b20565b60405180910390f35b34801561040557600080fd5b5061040e610e6c565b005b34801561041c57600080fd5b50610425610eac565b6040516104329190613b9a565b60405180910390f35b34801561044757600080fd5b50610450610ed0565b60405161045d9190613bc4565b60405180910390f35b34801561047257600080fd5b5061047b610eda565b6040516104889190613bc4565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613bdf565b610ee0565b6040516104c59190613b20565b60405180910390f35b3480156104da57600080fd5b506104e3610f0f565b6040516104f09190613bc4565b60405180910390f35b34801561050557600080fd5b5061050e610f15565b60405161051b9190613c41565b60405180910390f35b34801561053057600080fd5b50610539610f1b565b6040516105469190613c78565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613c93565b610f24565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613ac5565b610fbf565b6040516105ac9190613b20565b60405180910390f35b3480156105c157600080fd5b506105ca610ff6565b005b3480156105d857600080fd5b506105e1611012565b6040516105ee9190613b20565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613cc0565b611025565b005b34801561062c57600080fd5b506106356110ae565b6040516106429190613c41565b60405180910390f35b34801561065757600080fd5b506106606110d2565b60405161066d9190613b20565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613d00565b6110e5565b6040516106aa9190613b20565b60405180910390f35b3480156106bf57600080fd5b506106c861113b565b6040516106d59190613c41565b60405180910390f35b3480156106ea57600080fd5b506106f3611161565b005b34801561070157600080fd5b5061071c60048036038101906107179190613d59565b611186565b005b34801561072a57600080fd5b506107336111e9565b6040516107409190613bc4565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613cc0565b6111ef565b005b34801561077e57600080fd5b5061078761125a565b6040516107949190613b20565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613d00565b61126d565b6040516107d19190613bc4565b60405180910390f35b3480156107e657600080fd5b506107ef6112b5565b005b3480156107fd57600080fd5b506108066112c9565b6040516108139190613bc4565b60405180910390f35b34801561082857600080fd5b506108316112cf565b60405161083e9190613b20565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190613d00565b6112fb565b005b34801561087c57600080fd5b5061088561135e565b6040516108929190613c41565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613d00565b611384565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613d00565b611406565b005b3480156108f957600080fd5b506109026114ce565b60405161090f9190613c41565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613d99565b6114f8565b005b34801561094d57600080fd5b5061095661151d565b6040516109639190613a0a565b60405180910390f35b34801561097857600080fd5b506109816115af565b60405161098e9190613bc4565b60405180910390f35b3480156109a357600080fd5b506109ac6115b5565b6040516109b99190613bc4565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613d00565b6115bb565b6040516109f69190613b20565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613d59565b6115db565b005b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190613ac5565b61167f565b604051610a5c9190613b20565b60405180910390f35b348015610a7157600080fd5b50610a8c6004803603810190610a879190613ac5565b6116f6565b604051610a999190613b20565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac49190613d00565b611719565b005b348015610ad757600080fd5b50610af26004803603810190610aed9190613d00565b6117e1565b604051610aff9190613b20565b60405180910390f35b348015610b1457600080fd5b50610b1d611801565b604051610b2a9190613b20565b60405180910390f35b348015610b3f57600080fd5b50610b5a6004803603810190610b559190613dc6565b611814565b005b348015610b6857600080fd5b50610b836004803603810190610b7e9190613d59565b61198d565b005b348015610b9157600080fd5b50610bac6004803603810190610ba79190613c93565b611a3e565b005b348015610bba57600080fd5b50610bd56004803603810190610bd09190613c93565b611ad9565b604051610be29190613b20565b60405180910390f35b348015610bf757600080fd5b50610c00611bba565b604051610c0d9190613bc4565b60405180910390f35b348015610c2257600080fd5b50610c2b611bc0565b604051610c389190613bc4565b60405180910390f35b348015610c4d57600080fd5b50610c686004803603810190610c639190613dc6565b611bc6565b604051610c759190613bc4565b60405180910390f35b348015610c8a57600080fd5b50610ca56004803603810190610ca09190613d00565b611c4d565b005b348015610cb357600080fd5b50610cbc611ddb565b604051610cc99190613bc4565b60405180910390f35b348015610cde57600080fd5b50610cf96004803603810190610cf49190613d00565b611de1565b005b348015610d0757600080fd5b50610d10611e64565b604051610d1d9190613bc4565b60405180910390f35b348015610d3257600080fd5b50610d4d6004803603810190610d489190613d00565b611e6a565b005b348015610d5b57600080fd5b50610d64611ff8565b604051610d719190613bc4565b60405180910390f35b348015610d8657600080fd5b50610da16004803603810190610d9c9190613d00565b611ffe565b604051610dae9190613b20565b60405180910390f35b606060038054610dc690613e35565b80601f0160208091040260200160405190810160405280929190818152602001828054610df290613e35565b8015610e3f5780601f10610e1457610100808354040283529160200191610e3f565b820191906000526020600020905b815481529060010190602001808311610e2257829003601f168201915b5050505050905090565b600080610e54612054565b9050610e6181858561205c565b600191505092915050565b610e74612225565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60135481565b600080610eeb612054565b9050610ef88582856122a3565b610f0385858561232f565b60019150509392505050565b60125481565b61dead81565b60006012905090565b610f2c612225565b670de0b6b3a76400006103e86001610f42610ed0565b610f4c9190613e95565b610f569190613f06565b610f609190613f06565b811015610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613fa9565b60405180910390fd5b670de0b6b3a764000081610fb69190613e95565b60088190555050565b600080610fca612054565b9050610feb818585610fdc8589611bc6565b610fe69190613fc9565b61205c565b600191505092915050565b610ffe612225565b61101061100a3061126d565b47612f1a565b565b600b60039054906101000a900460ff1681565b61102d612225565b6103e8818361103c9190613fc9565b111561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614049565b60405180910390fd5b81600f819055508060108190555080826103e861109a9190614069565b6110a49190614069565b6011819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611169612225565b6001600b60036101000a81548160ff021916908315150217905550565b61118e612225565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b6111f7612225565b60328211158015611209575060328111155b611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906140e9565b60405180910390fd5b81600d8190555080600e819055505050565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd612225565b6112c76000612ffb565b565b600f5481565b60006112d9612225565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611303612225565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61138c612225565b60008173ffffffffffffffffffffffffffffffffffffffff16476040516113b29061413a565b60006040518083038185875af1925050503d80600081146113ef576040519150601f19603f3d011682016040523d82523d6000602084013e6113f4565b606091505b505090508061140257600080fd5b5050565b61140e612225565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611500612225565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461152c90613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461155890613e35565b80156115a55780601f1061157a576101008083540402835291602001916115a5565b820191906000526020600020905b81548152906001019060200180831161158857829003601f168201915b5050505050905090565b60085481565b60105481565b60166020528060005260406000206000915054906101000a900460ff1681565b6115e3612225565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906141c1565b60405180910390fd5b61167b82826130c1565b5050565b60008061168a612054565b905060006116988286611bc6565b9050838110156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614253565b60405180910390fd5b6116ea828686840361205c565b60019250505092915050565b600080611701612054565b905061170e81858561232f565b600191505092915050565b611721612225565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61181c612225565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906142bf565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118c69190613c41565b602060405180830381865afa1580156118e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190791906142f4565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611944929190614321565b6020604051808303816000875af1158015611963573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611987919061435f565b50505050565b611995612225565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a329190613b20565b60405180910390a25050565b611a46612225565b670de0b6b3a76400006103e8600a611a5c610ed0565b611a669190613e95565b611a709190613f06565b611a7a9190613f06565b811015611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab3906143fe565b60405180910390fd5b670de0b6b3a764000081611ad09190613e95565b600a8190555050565b6000611ae3612225565b620186a06001611af1610ed0565b611afb9190613e95565b611b059190613f06565b821015611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614490565b60405180910390fd5b6103e86005611b54610ed0565b611b5e9190613e95565b611b689190613f06565b821115611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190614522565b60405180910390fd5b8160098190555060019050919050565b60115481565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611c55612225565b600b60039054906101000a900460ff1615611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c906145b4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611d415750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614646565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60095481565b611de9612225565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f906146d8565b60405180910390fd5b611e6181612ffb565b50565b600a5481565b611e72612225565b600b60039054906101000a900460ff1615611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb9906145b4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611f5e5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490614646565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60145481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c29061476a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612131906147fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122189190613bc4565b60405180910390a3505050565b61222d612054565b73ffffffffffffffffffffffffffffffffffffffff1661224b6114ce565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890614868565b60405180910390fd5b565b60006122af8484611bc6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612329578181101561231b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612312906148d4565b60405180910390fd5b612328848484840361205c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361240d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612404906149f8565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561249a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249190614a64565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614ad0565b60405180910390fd5b600081036125405761253b83836000613162565b612f15565b600b60009054906101000a900460ff1615612a3b5761255d6114ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125cb575061259b6114ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126045750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561263e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126575750600560149054906101000a900460ff16155b15612a3a57600b60019054906101000a900460ff1661275157601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127115750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614b3c565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f45750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289b5760085481111561283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283590614bce565b60405180910390fd5b600a5461284a8361126d565b826128559190613fc9565b1115612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90614c3a565b60405180910390fd5b612a39565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561293e5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298d57600854811115612988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297f90614ccc565b60405180910390fd5b612a38565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a3757600a546129ea8361126d565b826129f59190613fc9565b1115612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90614c3a565b60405180910390fd5b5b5b5b5b5b6000612a463061126d565b905060006009548210159050808015612a6b5750600b60029054906101000a900460ff165b8015612a845750600560149054906101000a900460ff16155b8015612ada5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b305750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b865750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bca576001600560146101000a81548160ff021916908315150217905550612bae6133d8565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c805750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c8a57600090505b60008115612f0557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ced57506000600e54115b15612dbb57612d1b6103e8612d0d600e54886136f190919063ffffffff16565b61370790919063ffffffff16565b90506103e860105482612d2e9190613e95565b612d389190613f06565b60136000828254612d499190613fc9565b925050819055506103e860115482612d619190613e95565b612d6b9190613f06565b60146000828254612d7c9190613fc9565b925050819055506103e8600f5482612d949190613e95565b612d9e9190613f06565b60126000828254612daf9190613fc9565b92505081905550612ee1565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1657506000600d54115b15612ee057612e446103e8612e36600d54886136f190919063ffffffff16565b61370790919063ffffffff16565b90506103e860105482612e579190613e95565b612e619190613f06565b60136000828254612e729190613fc9565b925050819055506103e860115482612e8a9190613e95565b612e949190613f06565b60146000828254612ea59190613fc9565b925050819055506103e8600f5482612ebd9190613e95565b612ec79190613f06565b60126000828254612ed89190613fc9565b925050819055505b5b6000811115612ef657612ef5873083613162565b5b8085612f029190614069565b94505b612f10878787613162565b505050505b505050565b612f45307f00000000000000000000000000000000000000000000000000000000000000008461205c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612f8f6114ce565b426040518863ffffffff1660e01b8152600401612fb196959493929190614d27565b60606040518083038185885af1158015612fcf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ff49190614d88565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890614966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613237906149f8565b60405180910390fd5b61324b83838361371d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c890614e4d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133bf9190613bc4565b60405180910390a36133d2848484613722565b50505050565b60006133e33061126d565b905060006014546012546013546133fa9190613fc9565b6134049190613fc9565b90506000808314806134165750600082145b15613423575050506136ef565b60146009546134329190613e95565b83111561344b5760146009546134489190613e95565b92505b60006002836013548661345e9190613e95565b6134689190613f06565b6134729190613f06565b90506000613489828661372790919063ffffffff16565b905060004790506134998261373d565b60006134ae824761372790919063ffffffff16565b905060006134f260026013546134c49190613f06565b886134cf9190614069565b6134e4601254856136f190919063ffffffff16565b61370790919063ffffffff16565b9050600061353660026013546135089190613f06565b896135139190614069565b613528601454866136f190919063ffffffff16565b61370790919063ffffffff16565b905060008183856135479190614069565b6135519190614069565b9050600060138190555060006012819055506000601481905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135b19061413a565b60006040518083038185875af1925050503d80600081146135ee576040519150601f19603f3d011682016040523d82523d6000602084013e6135f3565b606091505b5050809850506000871180156136095750600081115b15613656576136188782612f1a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260135460405161364d93929190614e6d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161369c9061413a565b60006040518083038185875af1925050503d80600081146136d9576040519150601f19603f3d011682016040523d82523d6000602084013e6136de565b606091505b505080985050505050505050505050505b565b600081836136ff9190613e95565b905092915050565b600081836137159190613f06565b905092915050565b505050565b505050565b600081836137359190614069565b905092915050565b6000600267ffffffffffffffff81111561375a57613759614ea4565b5b6040519080825280602002602001820160405280156137885781602001602082028036833780820191505090505b50905030816000815181106137a05761379f614ed3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613845573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138699190614f17565b8160018151811061387d5761387c614ed3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138e2307f00000000000000000000000000000000000000000000000000000000000000008461205c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613944959493929190615002565b600060405180830381600087803b15801561395e57600080fd5b505af1158015613972573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139b4578082015181840152602081019050613999565b60008484015250505050565b6000601f19601f8301169050919050565b60006139dc8261397a565b6139e68185613985565b93506139f6818560208601613996565b6139ff816139c0565b840191505092915050565b60006020820190508181036000830152613a2481846139d1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a5c82613a31565b9050919050565b613a6c81613a51565b8114613a7757600080fd5b50565b600081359050613a8981613a63565b92915050565b6000819050919050565b613aa281613a8f565b8114613aad57600080fd5b50565b600081359050613abf81613a99565b92915050565b60008060408385031215613adc57613adb613a2c565b5b6000613aea85828601613a7a565b9250506020613afb85828601613ab0565b9150509250929050565b60008115159050919050565b613b1a81613b05565b82525050565b6000602082019050613b356000830184613b11565b92915050565b6000819050919050565b6000613b60613b5b613b5684613a31565b613b3b565b613a31565b9050919050565b6000613b7282613b45565b9050919050565b6000613b8482613b67565b9050919050565b613b9481613b79565b82525050565b6000602082019050613baf6000830184613b8b565b92915050565b613bbe81613a8f565b82525050565b6000602082019050613bd96000830184613bb5565b92915050565b600080600060608486031215613bf857613bf7613a2c565b5b6000613c0686828701613a7a565b9350506020613c1786828701613a7a565b9250506040613c2886828701613ab0565b9150509250925092565b613c3b81613a51565b82525050565b6000602082019050613c566000830184613c32565b92915050565b600060ff82169050919050565b613c7281613c5c565b82525050565b6000602082019050613c8d6000830184613c69565b92915050565b600060208284031215613ca957613ca8613a2c565b5b6000613cb784828501613ab0565b91505092915050565b60008060408385031215613cd757613cd6613a2c565b5b6000613ce585828601613ab0565b9250506020613cf685828601613ab0565b9150509250929050565b600060208284031215613d1657613d15613a2c565b5b6000613d2484828501613a7a565b91505092915050565b613d3681613b05565b8114613d4157600080fd5b50565b600081359050613d5381613d2d565b92915050565b60008060408385031215613d7057613d6f613a2c565b5b6000613d7e85828601613a7a565b9250506020613d8f85828601613d44565b9150509250929050565b600060208284031215613daf57613dae613a2c565b5b6000613dbd84828501613d44565b91505092915050565b60008060408385031215613ddd57613ddc613a2c565b5b6000613deb85828601613a7a565b9250506020613dfc85828601613a7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e4d57607f821691505b602082108103613e6057613e5f613e06565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ea082613a8f565b9150613eab83613a8f565b9250828202613eb981613a8f565b91508282048414831517613ed057613ecf613e66565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f1182613a8f565b9150613f1c83613a8f565b925082613f2c57613f2b613ed7565b5b828204905092915050565b7f43616e6e6f7420736574206d617854726164696e67416d6f756e74206c6f776560008201527f72207468616e20302e3125000000000000000000000000000000000000000000602082015250565b6000613f93602b83613985565b9150613f9e82613f37565b604082019050919050565b60006020820190508181036000830152613fc281613f86565b9050919050565b6000613fd482613a8f565b9150613fdf83613a8f565b9250828201905080821115613ff757613ff6613e66565b5b92915050565b7f57726f6e6720496e707574000000000000000000000000000000000000000000600082015250565b6000614033600b83613985565b915061403e82613ffd565b602082019050919050565b6000602082019050818103600083015261406281614026565b9050919050565b600061407482613a8f565b915061407f83613a8f565b925082820390508181111561409757614096613e66565b5b92915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035302e00000000600082015250565b60006140d3601c83613985565b91506140de8261409d565b602082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b600081905092915050565b50565b6000614124600083614109565b915061412f82614114565b600082019050919050565b600061414582614117565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006141ab603983613985565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061423d602583613985565b9150614248826141e1565b604082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006142a9601a83613985565b91506142b482614273565b602082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b6000815190506142ee81613a99565b92915050565b60006020828403121561430a57614309613a2c565b5b6000614318848285016142df565b91505092915050565b60006040820190506143366000830185613c32565b6143436020830184613bb5565b9392505050565b60008151905061435981613d2d565b92915050565b60006020828403121561437557614374613a2c565b5b60006143838482850161434a565b91505092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b60006143e8602483613985565b91506143f38261438c565b604082019050919050565b60006020820190508181036000830152614417816143db565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061447a603583613985565b91506144858261441e565b604082019050919050565b600060208201905081810360008301526144a98161446d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061450c603483613985565b9150614517826144b0565b604082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061459e602183613985565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b6000614630602e83613985565b915061463b826145d4565b604082019050919050565b6000602082019050818103600083015261465f81614623565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146c2602683613985565b91506146cd82614666565b604082019050919050565b600060208201905081810360008301526146f1816146b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614754602483613985565b915061475f826146f8565b604082019050919050565b6000602082019050818103600083015261478381614747565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147e6602283613985565b91506147f18261478a565b604082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614852602083613985565b915061485d8261481c565b602082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006148be601d83613985565b91506148c982614888565b602082019050919050565b600060208201905081810360008301526148ed816148b1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614950602583613985565b915061495b826148f4565b604082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149e2602383613985565b91506149ed82614986565b604082019050919050565b60006020820190508181036000830152614a11816149d5565b9050919050565b7f53656e64657220626c61636b6c69737465640000000000000000000000000000600082015250565b6000614a4e601283613985565b9150614a5982614a18565b602082019050919050565b60006020820190508181036000830152614a7d81614a41565b9050919050565b7f526563656976657220626c61636b6c6973746564000000000000000000000000600082015250565b6000614aba601483613985565b9150614ac582614a84565b602082019050919050565b60006020820190508181036000830152614ae981614aad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b26601683613985565b9150614b3182614af0565b602082019050919050565b60006020820190508181036000830152614b5581614b19565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b6000614bb8603183613985565b9150614bc382614b5c565b604082019050919050565b60006020820190508181036000830152614be781614bab565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c24601383613985565b9150614c2f82614bee565b602082019050919050565b60006020820190508181036000830152614c5381614c17565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b6000614cb6603283613985565b9150614cc182614c5a565b604082019050919050565b60006020820190508181036000830152614ce581614ca9565b9050919050565b6000819050919050565b6000614d11614d0c614d0784614cec565b613b3b565b613a8f565b9050919050565b614d2181614cf6565b82525050565b600060c082019050614d3c6000830189613c32565b614d496020830188613bb5565b614d566040830187614d18565b614d636060830186614d18565b614d706080830185613c32565b614d7d60a0830184613bb5565b979650505050505050565b600080600060608486031215614da157614da0613a2c565b5b6000614daf868287016142df565b9350506020614dc0868287016142df565b9250506040614dd1868287016142df565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e37602683613985565b9150614e4282614ddb565b604082019050919050565b60006020820190508181036000830152614e6681614e2a565b9050919050565b6000606082019050614e826000830186613bb5565b614e8f6020830185613bb5565b614e9c6040830184613bb5565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f1181613a63565b92915050565b600060208284031215614f2d57614f2c613a2c565b5b6000614f3b84828501614f02565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f7981613a51565b82525050565b6000614f8b8383614f70565b60208301905092915050565b6000602082019050919050565b6000614faf82614f44565b614fb98185614f4f565b9350614fc483614f60565b8060005b83811015614ff5578151614fdc8882614f7f565b9750614fe783614f97565b925050600181019050614fc8565b5085935050505092915050565b600060a0820190506150176000830188613bb5565b6150246020830187614d18565b81810360408301526150368186614fa4565b90506150456060830185613c32565b6150526080830184613bb5565b969550505050505056fea26469706673582212200cd5abad47b2be5c7f6fed3eedd6599aaad723d01def2f4b382ee69e9dfb469164736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103855760003560e01c8063782c4e99116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f8b45b051161006f578063f8b45b0514610cfb578063f9f92be414610d26578063fde83a3414610d4f578063fe575a8714610d7a5761038c565b8063dd62ed3e14610c41578063e19b282314610c7e578063e2f4560514610ca7578063f2fde38b14610cd25761038c565b8063c18bc195116100dc578063c18bc19514610b85578063d257b34f14610bae578063d7c94efd14610beb578063d85ba06314610c165761038c565b8063bbc0c74214610b08578063bc205ad314610b33578063c024666814610b5c5761038c565b806398118cb41161016f578063a457c2d711610149578063a457c2d714610a28578063a9059cbb14610a65578063adee28ff14610aa2578063b62496f514610acb5761038c565b806398118cb41461099757806399524bbe146109c25780639a7a23d6146109ff5761038c565b80638da5cb5b116101ab5780638da5cb5b146108ed578063924de9b71461091857806395d89b411461094157806396ea32da1461096c5761038c565b8063782c4e99146108705780637ca8448a1461089b5780637cb332bb146108c45761038c565b8063422b5bf5116102b65780636a486a8e11610254578063715018a611610223578063715018a6146107da57806372cacded146107f1578063751039fc1461081c57806375e3661e146108475761038c565b80636a486a8e1461071e5780636db79437146107495780636ddd17131461077257806370a082311461079d5761038c565b80634fbee193116102905780634fbee1931461067657806359927044146106b35780635f189361146106de57806364f99f82146106f55761038c565b8063422b5bf5146105f757806349bd5a5e146106205780634a62bb651461064b5761038c565b806324b9f3c11161032357806338377d0a116102fd57806338377d0a1461054f5780633950935114610578578063395d3384146105b55780633dc599ff146105cc5761038c565b806324b9f3c1146104ce57806327c8f835146104f9578063313ce567146105245761038c565b80631694505e1161035f5780631694505e1461041057806318160ddd1461043b5780631a8145bb1461046657806323b872dd146104915761038c565b806306fdde0314610391578063095ea7b3146103bc5780630e3db9f2146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610db7565b6040516103b39190613a0a565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613ac5565b610e49565b6040516103f09190613b20565b60405180910390f35b34801561040557600080fd5b5061040e610e6c565b005b34801561041c57600080fd5b50610425610eac565b6040516104329190613b9a565b60405180910390f35b34801561044757600080fd5b50610450610ed0565b60405161045d9190613bc4565b60405180910390f35b34801561047257600080fd5b5061047b610eda565b6040516104889190613bc4565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613bdf565b610ee0565b6040516104c59190613b20565b60405180910390f35b3480156104da57600080fd5b506104e3610f0f565b6040516104f09190613bc4565b60405180910390f35b34801561050557600080fd5b5061050e610f15565b60405161051b9190613c41565b60405180910390f35b34801561053057600080fd5b50610539610f1b565b6040516105469190613c78565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613c93565b610f24565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613ac5565b610fbf565b6040516105ac9190613b20565b60405180910390f35b3480156105c157600080fd5b506105ca610ff6565b005b3480156105d857600080fd5b506105e1611012565b6040516105ee9190613b20565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613cc0565b611025565b005b34801561062c57600080fd5b506106356110ae565b6040516106429190613c41565b60405180910390f35b34801561065757600080fd5b506106606110d2565b60405161066d9190613b20565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613d00565b6110e5565b6040516106aa9190613b20565b60405180910390f35b3480156106bf57600080fd5b506106c861113b565b6040516106d59190613c41565b60405180910390f35b3480156106ea57600080fd5b506106f3611161565b005b34801561070157600080fd5b5061071c60048036038101906107179190613d59565b611186565b005b34801561072a57600080fd5b506107336111e9565b6040516107409190613bc4565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613cc0565b6111ef565b005b34801561077e57600080fd5b5061078761125a565b6040516107949190613b20565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613d00565b61126d565b6040516107d19190613bc4565b60405180910390f35b3480156107e657600080fd5b506107ef6112b5565b005b3480156107fd57600080fd5b506108066112c9565b6040516108139190613bc4565b60405180910390f35b34801561082857600080fd5b506108316112cf565b60405161083e9190613b20565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190613d00565b6112fb565b005b34801561087c57600080fd5b5061088561135e565b6040516108929190613c41565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613d00565b611384565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613d00565b611406565b005b3480156108f957600080fd5b506109026114ce565b60405161090f9190613c41565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613d99565b6114f8565b005b34801561094d57600080fd5b5061095661151d565b6040516109639190613a0a565b60405180910390f35b34801561097857600080fd5b506109816115af565b60405161098e9190613bc4565b60405180910390f35b3480156109a357600080fd5b506109ac6115b5565b6040516109b99190613bc4565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613d00565b6115bb565b6040516109f69190613b20565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613d59565b6115db565b005b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190613ac5565b61167f565b604051610a5c9190613b20565b60405180910390f35b348015610a7157600080fd5b50610a8c6004803603810190610a879190613ac5565b6116f6565b604051610a999190613b20565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac49190613d00565b611719565b005b348015610ad757600080fd5b50610af26004803603810190610aed9190613d00565b6117e1565b604051610aff9190613b20565b60405180910390f35b348015610b1457600080fd5b50610b1d611801565b604051610b2a9190613b20565b60405180910390f35b348015610b3f57600080fd5b50610b5a6004803603810190610b559190613dc6565b611814565b005b348015610b6857600080fd5b50610b836004803603810190610b7e9190613d59565b61198d565b005b348015610b9157600080fd5b50610bac6004803603810190610ba79190613c93565b611a3e565b005b348015610bba57600080fd5b50610bd56004803603810190610bd09190613c93565b611ad9565b604051610be29190613b20565b60405180910390f35b348015610bf757600080fd5b50610c00611bba565b604051610c0d9190613bc4565b60405180910390f35b348015610c2257600080fd5b50610c2b611bc0565b604051610c389190613bc4565b60405180910390f35b348015610c4d57600080fd5b50610c686004803603810190610c639190613dc6565b611bc6565b604051610c759190613bc4565b60405180910390f35b348015610c8a57600080fd5b50610ca56004803603810190610ca09190613d00565b611c4d565b005b348015610cb357600080fd5b50610cbc611ddb565b604051610cc99190613bc4565b60405180910390f35b348015610cde57600080fd5b50610cf96004803603810190610cf49190613d00565b611de1565b005b348015610d0757600080fd5b50610d10611e64565b604051610d1d9190613bc4565b60405180910390f35b348015610d3257600080fd5b50610d4d6004803603810190610d489190613d00565b611e6a565b005b348015610d5b57600080fd5b50610d64611ff8565b604051610d719190613bc4565b60405180910390f35b348015610d8657600080fd5b50610da16004803603810190610d9c9190613d00565b611ffe565b604051610dae9190613b20565b60405180910390f35b606060038054610dc690613e35565b80601f0160208091040260200160405190810160405280929190818152602001828054610df290613e35565b8015610e3f5780601f10610e1457610100808354040283529160200191610e3f565b820191906000526020600020905b815481529060010190602001808311610e2257829003601f168201915b5050505050905090565b600080610e54612054565b9050610e6181858561205c565b600191505092915050565b610e74612225565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60135481565b600080610eeb612054565b9050610ef88582856122a3565b610f0385858561232f565b60019150509392505050565b60125481565b61dead81565b60006012905090565b610f2c612225565b670de0b6b3a76400006103e86001610f42610ed0565b610f4c9190613e95565b610f569190613f06565b610f609190613f06565b811015610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613fa9565b60405180910390fd5b670de0b6b3a764000081610fb69190613e95565b60088190555050565b600080610fca612054565b9050610feb818585610fdc8589611bc6565b610fe69190613fc9565b61205c565b600191505092915050565b610ffe612225565b61101061100a3061126d565b47612f1a565b565b600b60039054906101000a900460ff1681565b61102d612225565b6103e8818361103c9190613fc9565b111561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614049565b60405180910390fd5b81600f819055508060108190555080826103e861109a9190614069565b6110a49190614069565b6011819055505050565b7f000000000000000000000000a95e77aae62b5e61b4f6f1b1ecca862dbc9ff7e081565b600b60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611169612225565b6001600b60036101000a81548160ff021916908315150217905550565b61118e612225565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b6111f7612225565b60328211158015611209575060328111155b611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906140e9565b60405180910390fd5b81600d8190555080600e819055505050565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd612225565b6112c76000612ffb565b565b600f5481565b60006112d9612225565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611303612225565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61138c612225565b60008173ffffffffffffffffffffffffffffffffffffffff16476040516113b29061413a565b60006040518083038185875af1925050503d80600081146113ef576040519150601f19603f3d011682016040523d82523d6000602084013e6113f4565b606091505b505090508061140257600080fd5b5050565b61140e612225565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611500612225565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461152c90613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461155890613e35565b80156115a55780601f1061157a576101008083540402835291602001916115a5565b820191906000526020600020905b81548152906001019060200180831161158857829003601f168201915b5050505050905090565b60085481565b60105481565b60166020528060005260406000206000915054906101000a900460ff1681565b6115e3612225565b7f000000000000000000000000a95e77aae62b5e61b4f6f1b1ecca862dbc9ff7e073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906141c1565b60405180910390fd5b61167b82826130c1565b5050565b60008061168a612054565b905060006116988286611bc6565b9050838110156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614253565b60405180910390fd5b6116ea828686840361205c565b60019250505092915050565b600080611701612054565b905061170e81858561232f565b600191505092915050565b611721612225565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61181c612225565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906142bf565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118c69190613c41565b602060405180830381865afa1580156118e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190791906142f4565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611944929190614321565b6020604051808303816000875af1158015611963573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611987919061435f565b50505050565b611995612225565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a329190613b20565b60405180910390a25050565b611a46612225565b670de0b6b3a76400006103e8600a611a5c610ed0565b611a669190613e95565b611a709190613f06565b611a7a9190613f06565b811015611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab3906143fe565b60405180910390fd5b670de0b6b3a764000081611ad09190613e95565b600a8190555050565b6000611ae3612225565b620186a06001611af1610ed0565b611afb9190613e95565b611b059190613f06565b821015611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614490565b60405180910390fd5b6103e86005611b54610ed0565b611b5e9190613e95565b611b689190613f06565b821115611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190614522565b60405180910390fd5b8160098190555060019050919050565b60115481565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611c55612225565b600b60039054906101000a900460ff1615611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c906145b4565b60405180910390fd5b7f000000000000000000000000a95e77aae62b5e61b4f6f1b1ecca862dbc9ff7e073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611d415750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614646565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60095481565b611de9612225565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f906146d8565b60405180910390fd5b611e6181612ffb565b50565b600a5481565b611e72612225565b600b60039054906101000a900460ff1615611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb9906145b4565b60405180910390fd5b7f000000000000000000000000a95e77aae62b5e61b4f6f1b1ecca862dbc9ff7e073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611f5e5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490614646565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60145481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c29061476a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612131906147fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122189190613bc4565b60405180910390a3505050565b61222d612054565b73ffffffffffffffffffffffffffffffffffffffff1661224b6114ce565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890614868565b60405180910390fd5b565b60006122af8484611bc6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612329578181101561231b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612312906148d4565b60405180910390fd5b612328848484840361205c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361240d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612404906149f8565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561249a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249190614a64565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614ad0565b60405180910390fd5b600081036125405761253b83836000613162565b612f15565b600b60009054906101000a900460ff1615612a3b5761255d6114ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125cb575061259b6114ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126045750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561263e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126575750600560149054906101000a900460ff16155b15612a3a57600b60019054906101000a900460ff1661275157601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127115750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614b3c565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f45750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289b5760085481111561283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283590614bce565b60405180910390fd5b600a5461284a8361126d565b826128559190613fc9565b1115612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90614c3a565b60405180910390fd5b612a39565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561293e5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298d57600854811115612988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297f90614ccc565b60405180910390fd5b612a38565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a3757600a546129ea8361126d565b826129f59190613fc9565b1115612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90614c3a565b60405180910390fd5b5b5b5b5b5b6000612a463061126d565b905060006009548210159050808015612a6b5750600b60029054906101000a900460ff165b8015612a845750600560149054906101000a900460ff16155b8015612ada5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b305750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b865750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bca576001600560146101000a81548160ff021916908315150217905550612bae6133d8565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c805750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c8a57600090505b60008115612f0557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ced57506000600e54115b15612dbb57612d1b6103e8612d0d600e54886136f190919063ffffffff16565b61370790919063ffffffff16565b90506103e860105482612d2e9190613e95565b612d389190613f06565b60136000828254612d499190613fc9565b925050819055506103e860115482612d619190613e95565b612d6b9190613f06565b60146000828254612d7c9190613fc9565b925050819055506103e8600f5482612d949190613e95565b612d9e9190613f06565b60126000828254612daf9190613fc9565b92505081905550612ee1565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1657506000600d54115b15612ee057612e446103e8612e36600d54886136f190919063ffffffff16565b61370790919063ffffffff16565b90506103e860105482612e579190613e95565b612e619190613f06565b60136000828254612e729190613fc9565b925050819055506103e860115482612e8a9190613e95565b612e949190613f06565b60146000828254612ea59190613fc9565b925050819055506103e8600f5482612ebd9190613e95565b612ec79190613f06565b60126000828254612ed89190613fc9565b925050819055505b5b6000811115612ef657612ef5873083613162565b5b8085612f029190614069565b94505b612f10878787613162565b505050505b505050565b612f45307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461205c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612f8f6114ce565b426040518863ffffffff1660e01b8152600401612fb196959493929190614d27565b60606040518083038185885af1158015612fcf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ff49190614d88565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890614966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613237906149f8565b60405180910390fd5b61324b83838361371d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c890614e4d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133bf9190613bc4565b60405180910390a36133d2848484613722565b50505050565b60006133e33061126d565b905060006014546012546013546133fa9190613fc9565b6134049190613fc9565b90506000808314806134165750600082145b15613423575050506136ef565b60146009546134329190613e95565b83111561344b5760146009546134489190613e95565b92505b60006002836013548661345e9190613e95565b6134689190613f06565b6134729190613f06565b90506000613489828661372790919063ffffffff16565b905060004790506134998261373d565b60006134ae824761372790919063ffffffff16565b905060006134f260026013546134c49190613f06565b886134cf9190614069565b6134e4601254856136f190919063ffffffff16565b61370790919063ffffffff16565b9050600061353660026013546135089190613f06565b896135139190614069565b613528601454866136f190919063ffffffff16565b61370790919063ffffffff16565b905060008183856135479190614069565b6135519190614069565b9050600060138190555060006012819055506000601481905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135b19061413a565b60006040518083038185875af1925050503d80600081146135ee576040519150601f19603f3d011682016040523d82523d6000602084013e6135f3565b606091505b5050809850506000871180156136095750600081115b15613656576136188782612f1a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260135460405161364d93929190614e6d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161369c9061413a565b60006040518083038185875af1925050503d80600081146136d9576040519150601f19603f3d011682016040523d82523d6000602084013e6136de565b606091505b505080985050505050505050505050505b565b600081836136ff9190613e95565b905092915050565b600081836137159190613f06565b905092915050565b505050565b505050565b600081836137359190614069565b905092915050565b6000600267ffffffffffffffff81111561375a57613759614ea4565b5b6040519080825280602002602001820160405280156137885781602001602082028036833780820191505090505b50905030816000815181106137a05761379f614ed3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613845573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138699190614f17565b8160018151811061387d5761387c614ed3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138e2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461205c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613944959493929190615002565b600060405180830381600087803b15801561395e57600080fd5b505af1158015613972573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139b4578082015181840152602081019050613999565b60008484015250505050565b6000601f19601f8301169050919050565b60006139dc8261397a565b6139e68185613985565b93506139f6818560208601613996565b6139ff816139c0565b840191505092915050565b60006020820190508181036000830152613a2481846139d1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a5c82613a31565b9050919050565b613a6c81613a51565b8114613a7757600080fd5b50565b600081359050613a8981613a63565b92915050565b6000819050919050565b613aa281613a8f565b8114613aad57600080fd5b50565b600081359050613abf81613a99565b92915050565b60008060408385031215613adc57613adb613a2c565b5b6000613aea85828601613a7a565b9250506020613afb85828601613ab0565b9150509250929050565b60008115159050919050565b613b1a81613b05565b82525050565b6000602082019050613b356000830184613b11565b92915050565b6000819050919050565b6000613b60613b5b613b5684613a31565b613b3b565b613a31565b9050919050565b6000613b7282613b45565b9050919050565b6000613b8482613b67565b9050919050565b613b9481613b79565b82525050565b6000602082019050613baf6000830184613b8b565b92915050565b613bbe81613a8f565b82525050565b6000602082019050613bd96000830184613bb5565b92915050565b600080600060608486031215613bf857613bf7613a2c565b5b6000613c0686828701613a7a565b9350506020613c1786828701613a7a565b9250506040613c2886828701613ab0565b9150509250925092565b613c3b81613a51565b82525050565b6000602082019050613c566000830184613c32565b92915050565b600060ff82169050919050565b613c7281613c5c565b82525050565b6000602082019050613c8d6000830184613c69565b92915050565b600060208284031215613ca957613ca8613a2c565b5b6000613cb784828501613ab0565b91505092915050565b60008060408385031215613cd757613cd6613a2c565b5b6000613ce585828601613ab0565b9250506020613cf685828601613ab0565b9150509250929050565b600060208284031215613d1657613d15613a2c565b5b6000613d2484828501613a7a565b91505092915050565b613d3681613b05565b8114613d4157600080fd5b50565b600081359050613d5381613d2d565b92915050565b60008060408385031215613d7057613d6f613a2c565b5b6000613d7e85828601613a7a565b9250506020613d8f85828601613d44565b9150509250929050565b600060208284031215613daf57613dae613a2c565b5b6000613dbd84828501613d44565b91505092915050565b60008060408385031215613ddd57613ddc613a2c565b5b6000613deb85828601613a7a565b9250506020613dfc85828601613a7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e4d57607f821691505b602082108103613e6057613e5f613e06565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ea082613a8f565b9150613eab83613a8f565b9250828202613eb981613a8f565b91508282048414831517613ed057613ecf613e66565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f1182613a8f565b9150613f1c83613a8f565b925082613f2c57613f2b613ed7565b5b828204905092915050565b7f43616e6e6f7420736574206d617854726164696e67416d6f756e74206c6f776560008201527f72207468616e20302e3125000000000000000000000000000000000000000000602082015250565b6000613f93602b83613985565b9150613f9e82613f37565b604082019050919050565b60006020820190508181036000830152613fc281613f86565b9050919050565b6000613fd482613a8f565b9150613fdf83613a8f565b9250828201905080821115613ff757613ff6613e66565b5b92915050565b7f57726f6e6720496e707574000000000000000000000000000000000000000000600082015250565b6000614033600b83613985565b915061403e82613ffd565b602082019050919050565b6000602082019050818103600083015261406281614026565b9050919050565b600061407482613a8f565b915061407f83613a8f565b925082820390508181111561409757614096613e66565b5b92915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035302e00000000600082015250565b60006140d3601c83613985565b91506140de8261409d565b602082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b600081905092915050565b50565b6000614124600083614109565b915061412f82614114565b600082019050919050565b600061414582614117565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006141ab603983613985565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061423d602583613985565b9150614248826141e1565b604082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006142a9601a83613985565b91506142b482614273565b602082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b6000815190506142ee81613a99565b92915050565b60006020828403121561430a57614309613a2c565b5b6000614318848285016142df565b91505092915050565b60006040820190506143366000830185613c32565b6143436020830184613bb5565b9392505050565b60008151905061435981613d2d565b92915050565b60006020828403121561437557614374613a2c565b5b60006143838482850161434a565b91505092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b60006143e8602483613985565b91506143f38261438c565b604082019050919050565b60006020820190508181036000830152614417816143db565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061447a603583613985565b91506144858261441e565b604082019050919050565b600060208201905081810360008301526144a98161446d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061450c603483613985565b9150614517826144b0565b604082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061459e602183613985565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b6000614630602e83613985565b915061463b826145d4565b604082019050919050565b6000602082019050818103600083015261465f81614623565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146c2602683613985565b91506146cd82614666565b604082019050919050565b600060208201905081810360008301526146f1816146b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614754602483613985565b915061475f826146f8565b604082019050919050565b6000602082019050818103600083015261478381614747565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147e6602283613985565b91506147f18261478a565b604082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614852602083613985565b915061485d8261481c565b602082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006148be601d83613985565b91506148c982614888565b602082019050919050565b600060208201905081810360008301526148ed816148b1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614950602583613985565b915061495b826148f4565b604082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149e2602383613985565b91506149ed82614986565b604082019050919050565b60006020820190508181036000830152614a11816149d5565b9050919050565b7f53656e64657220626c61636b6c69737465640000000000000000000000000000600082015250565b6000614a4e601283613985565b9150614a5982614a18565b602082019050919050565b60006020820190508181036000830152614a7d81614a41565b9050919050565b7f526563656976657220626c61636b6c6973746564000000000000000000000000600082015250565b6000614aba601483613985565b9150614ac582614a84565b602082019050919050565b60006020820190508181036000830152614ae981614aad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b26601683613985565b9150614b3182614af0565b602082019050919050565b60006020820190508181036000830152614b5581614b19565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b6000614bb8603183613985565b9150614bc382614b5c565b604082019050919050565b60006020820190508181036000830152614be781614bab565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c24601383613985565b9150614c2f82614bee565b602082019050919050565b60006020820190508181036000830152614c5381614c17565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b6000614cb6603283613985565b9150614cc182614c5a565b604082019050919050565b60006020820190508181036000830152614ce581614ca9565b9050919050565b6000819050919050565b6000614d11614d0c614d0784614cec565b613b3b565b613a8f565b9050919050565b614d2181614cf6565b82525050565b600060c082019050614d3c6000830189613c32565b614d496020830188613bb5565b614d566040830187614d18565b614d636060830186614d18565b614d706080830185613c32565b614d7d60a0830184613bb5565b979650505050505050565b600080600060608486031215614da157614da0613a2c565b5b6000614daf868287016142df565b9350506020614dc0868287016142df565b9250506040614dd1868287016142df565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e37602683613985565b9150614e4282614ddb565b604082019050919050565b60006020820190508181036000830152614e6681614e2a565b9050919050565b6000606082019050614e826000830186613bb5565b614e8f6020830185613bb5565b614e9c6040830184613bb5565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f1181613a63565b92915050565b600060208284031215614f2d57614f2c613a2c565b5b6000614f3b84828501614f02565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f7981613a51565b82525050565b6000614f8b8383614f70565b60208301905092915050565b6000602082019050919050565b6000614faf82614f44565b614fb98185614f4f565b9350614fc483614f60565b8060005b83811015614ff5578151614fdc8882614f7f565b9750614fe783614f97565b925050600181019050614fc8565b5085935050505092915050565b600060a0820190506150176000830188613bb5565b6150246020830187614d18565b81810360408301526150368186614fa4565b90506150456060830185613c32565b6150526080830184613bb5565b969550505050505056fea26469706673582212200cd5abad47b2be5c7f6fed3eedd6599aaad723d01def2f4b382ee69e9dfb469164736f6c63430008110033
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.