ETH Price: $2,446.77 (+1.84%)

Token

Lolli (lli)
 

Overview

Max Total Supply

1,000,000,000 lli

Holders

95

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 lli

Value
$0.00
0xac26b79d4db0d015fed947091fec30fcf082daaf
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KandyLand

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : KandyLand.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";



interface IFactory {
    // This function creates a new liquidity pair for the two tokens provided. 
    // It returns the address of the created pair.
    function createPair(address tokenA, address tokenB) external returns (address pair);
    
    // This function retrieves the liquidity pair for the two provided tokens.
    // If the pair does not exist, it returns the zero address.
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

// This function returns the address of the Factory contract.
interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    // This function adds liquidity to a specific ERC20/ETH pair.
    // It returns the amounts of the ERC20 token and ETH added, and the amount of liquidity tokens minted.
    function addLiquidityETH(
            address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline
            ) external payable returns (
                uint256 amountToken, uint256 amountETH, uint256 liquidity
                );
    
    // This function swaps a specific amount of an ERC20 token for ETH.
    // It supports tokens that implement a transfer fee in their transfer function.
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline
            ) external;
}



contract KandyLand is IERC20, Ownable {
    IRouter public uniswapV2Router;
    address public uniswapV2Pair;
    string private constant _name =  "Lolli"; //
    string private constant _symbol = "lli";
    uint8 private constant _decimals = 18;
    mapping (address => uint256) private balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private constant _totalSupply = 1000000000 * 10**18;               // 1 Billion
    uint256 public constant maxWalletAmount = _totalSupply * 2 / 100;         // 2%
    mapping (address => bool) private _isExcludedFromMaxWalletLimit;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isWhitelisted;
    uint8 public buyTax = 3;
    uint8 public sellTax = 3;
    uint8 public LPRatio = 3;
    uint8 public MarketingRatio = 1;
    uint8 public NFTLiquidityRatio = 1;
    uint8 public DevRatio = 1;
    address public constant deadWallet = 0x000000000000000000000000000000000000dEaD;
    address public constant MarketingWallet = payable(0x0e7d87DD4554269FbaCE37E3fe8beC66BA13922d);
    address public constant DevTeamWallet = payable(0xaAd1EA1BAC089f537faB4B24bABbD67851aa2F98);
    address public constant NFTLiquidityWallet = payable(0xBdA361a6479dde1357d09eEff0D25150AF5599c0);
    bool private tradingIsOpen = false;

    constructor() {
        IRouter _uniswapV2Router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IFactory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[MarketingWallet] = true;
        _isExcludedFromFee[NFTLiquidityWallet] = true;
        _isExcludedFromFee[DevTeamWallet] = true;
        _isExcludedFromFee[deadWallet] = true;
        _isExcludedFromMaxWalletLimit[owner()] = true;
        _isExcludedFromMaxWalletLimit[address(uniswapV2Router)] = true;
        _isExcludedFromMaxWalletLimit[uniswapV2Pair] = true;
        _isExcludedFromMaxWalletLimit[address(this)] = true;
        _isExcludedFromMaxWalletLimit[MarketingWallet] = true;
        _isExcludedFromMaxWalletLimit[DevTeamWallet] = true;
        _isExcludedFromMaxWalletLimit[NFTLiquidityWallet] = true;
        _isExcludedFromMaxWalletLimit[deadWallet] = true;
        _isWhitelisted[owner()] = true;
        balances[owner()] = _totalSupply;
        emit Transfer(address(0), owner(), _totalSupply);
    }

    receive() external payable {} // so the contract can receive eth

    function openTrading() external onlyOwner {
        require(!tradingIsOpen, "trading is already open");   
        tradingIsOpen = true;
    }

    function setFees(uint8 newBuyTax, uint8 newSellTax) external onlyOwner {
        require(newBuyTax <= 9 && newSellTax <= 9, "fees must be <=9%");
        require(newBuyTax != buyTax || newSellTax != sellTax, "new fees cannot be the same as old fees");
        buyTax = newBuyTax;
        sellTax = newSellTax;
    }

    function addWhitelist(address newAddress) external onlyOwner {
        require(!_isWhitelisted[newAddress], "address already added");
        _isWhitelisted[newAddress] = true;
    }

    function setRatios(uint8 newLPRatio, uint8 newMarketingRatio, uint8 newNFTLiquidityRatio, uint8 newDevRatio) external onlyOwner {
    require(newLPRatio + newMarketingRatio + newNFTLiquidityRatio + newDevRatio == buyTax + sellTax, "ratios must add up to total tax");
    LPRatio = newLPRatio;
    MarketingRatio = newMarketingRatio;
    NFTLiquidityRatio = newNFTLiquidityRatio;
    DevRatio = newDevRatio;
}

    function excludeFromMaxWalletLimit(address account) external onlyOwner {
        require(!_isExcludedFromMaxWalletLimit[account], "address is already excluded from max wallet");
        _isExcludedFromMaxWalletLimit[account] = true;
    }

    function excludeFromFees(address account) external onlyOwner {
        require(!_isExcludedFromFee[account], "address is already excluded from fees");
        _isExcludedFromFee[account] = true;
    }

    function withdrawStuckETH() external onlyOwner {
        require(address(this).balance > 0, "cannot send more than contract balance");
        (bool success,) = address(owner()).call{value: address(this).balance}("");
        require(success, "error withdrawing ETH from contract");
    }

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender,address recipient,uint256 amount) external override returns (bool) {
        _transfer(sender, recipient, amount);
        require(amount <= _allowances[sender][msg.sender], "ERC20: transfer amount exceeds allowance.");
        _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) external virtual returns (bool){
        _approve(msg.sender,spender,_allowances[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) external virtual returns (bool) {
        require(subtractedValue <= _allowances[msg.sender][spender], "ERC20: decreased allownace below zero.");
        _approve(msg.sender,spender,_allowances[msg.sender][spender] - subtractedValue);
        return true;
    }

    function _approve(address owner, address spender,uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
    }

    function name() external pure returns (string memory) { return _name; }
    function symbol() external pure returns (string memory) { return _symbol; }
    function decimals() external view virtual returns (uint8) { return _decimals; }
    function totalSupply() external pure override returns (uint256) { return _totalSupply; }
    function balanceOf(address account) public view override returns (uint256) { return balances[account]; }
    function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; }

    function _transfer(address from, address to, uint256 amount) internal {
        require(from != address(0), "cannot transfer from the zero address");
        require(to != address(0), "cannot transfer to the zero address");
        require(amount > 0, "transfer amount must be greater than zero");
        require(amount <= balanceOf(from), "cannot transfer more than balance"); 
        require(tradingIsOpen || _isWhitelisted[to] || _isWhitelisted[from], "trading is not open yet");
        require(_isExcludedFromMaxWalletLimit[to] || balanceOf(to) + amount <= maxWalletAmount, "cannot exceed maxWalletAmount");
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to] || (from != uniswapV2Pair && to != uniswapV2Pair)) {
    balances[from] -= amount;
    balances[to] += amount;
    emit Transfer(from, to, amount);
} else {
    balances[from] -= amount;
    if (from == uniswapV2Pair) { // buy
        if (buyTax > 0) { 
            balances[address(this)] += amount * buyTax / 100;
            emit Transfer(from, address(this), amount * buyTax / 100);
        }
        balances[to] += amount - (amount * buyTax / 100);
        emit Transfer(from, to, amount - (amount * buyTax / 100));
    } else { // sell
        if (sellTax > 0) {
            balances[address(this)] += amount * sellTax / 100;         
            emit Transfer(from, address(this), amount * sellTax / 100); 
            if (balanceOf(address(this)) > _totalSupply / 4000) { // .025% threshold for swapping
                uint256 tokensForLp = balanceOf(address(this)) * LPRatio / (LPRatio + MarketingRatio + NFTLiquidityRatio + DevRatio) / 2;
                _swapTokensForETH(balanceOf(address(this)) - tokensForLp);
                bool success = false;
                if (LPRatio > 0) { 
                    _addLiquidity(tokensForLp, address(this).balance * LPRatio / (LPRatio + MarketingRatio + NFTLiquidityRatio + DevRatio), deadWallet); 
                }
                if (MarketingRatio > 0) { 
                    (success,) = MarketingWallet.call{value: address(this).balance * MarketingRatio / (MarketingRatio + NFTLiquidityRatio + DevRatio), gas: 30000}(""); 
                }
                if (NFTLiquidityRatio > 0) { 
                    (success,) = NFTLiquidityWallet.call{value: address(this).balance * NFTLiquidityRatio / (NFTLiquidityRatio + DevRatio), gas: 30000}(""); 
                }
                if (DevRatio > 0) { 
                    (success,) = DevTeamWallet.call{value: address(this).balance, gas: 30000}(""); 
                }
            }
        }
        balances[to] += amount - (amount * sellTax / 100);
        emit Transfer(from, to, amount - (amount * sellTax / 100));
    }
}

    }

    function _swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount, address lpRecipient) private {
		_approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this), tokenAmount, 0, 0, lpRecipient, block.timestamp);
    }
}

File 2 of 7 : IERC20Metadata.sol
// 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);
}

File 3 of 7 : Ownable.sol
// 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);
    }
}

File 4 of 7 : SafeMath.sol
// 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;
        }
    }
}

File 5 of 7 : IERC20.sol
// 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);
}

File 6 of 7 : ERC20.sol
// 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 {}
}

File 7 of 7 : Context.sol
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DevRatio","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DevTeamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LPRatio","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingRatio","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTLiquidityRatio","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTLiquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","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"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxWalletLimit","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":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"newBuyTax","type":"uint8"},{"internalType":"uint8","name":"newSellTax","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newLPRatio","type":"uint8"},{"internalType":"uint8","name":"newMarketingRatio","type":"uint8"},{"internalType":"uint8","name":"newNFTLiquidityRatio","type":"uint8"},{"internalType":"uint8","name":"newDevRatio","type":"uint8"}],"name":"setRatios","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600360085f6101000a81548160ff021916908360ff1602179055506003600860016101000a81548160ff021916908360ff1602179055506003600860026101000a81548160ff021916908360ff1602179055506001600860036101000a81548160ff021916908360ff1602179055506001600860046101000a81548160ff021916908360ff1602179055506001600860056101000a81548160ff021916908360ff1602179055505f600860066101000a81548160ff021916908315150217905550348015620000d1575f80fd5b50620000f2620000e6620009b360201b60201c565b620009ba60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000b07565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000220573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000246919062000b07565b6040518363ffffffff1660e01b81526004016200026592919062000b48565b6020604051808303815f875af115801562000282573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000b07565b60025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160065f620002fc62000a7b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f730e7d87dd4554269fbace37e3fe8bec66ba13922d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73bda361a6479dde1357d09eeff0d25150af5599c073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73aad1ea1bac089f537fab4b24babbd67851aa2f9873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f6200054762000a7b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f730e7d87dd4554269fbace37e3fe8bec66ba13922d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f73aad1ea1bac089f537fab4b24babbd67851aa2f9873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f73bda361a6479dde1357d09eeff0d25150af5599c073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160055f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160075f6200087e62000a7b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506b033b2e3c9fd0803ce800000060035f620008ed62000a7b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506200093a62000a7b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b033b2e3c9fd0803ce8000000604051620009a4919062000b8d565b60405180910390a35062000ba8565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ad18262000aa6565b9050919050565b62000ae38162000ac5565b811462000aee575f80fd5b50565b5f8151905062000b018162000ad8565b92915050565b5f6020828403121562000b1f5762000b1e62000aa2565b5b5f62000b2e8482850162000af1565b91505092915050565b62000b428162000ac5565b82525050565b5f60408201905062000b5d5f83018562000b37565b62000b6c602083018462000b37565b9392505050565b5f819050919050565b62000b878162000b73565b82525050565b5f60208201905062000ba25f83018462000b7c565b92915050565b613cc68062000bb65f395ff3fe6080604052600436106101fc575f3560e01c806385141a771161010c578063cc1776d31161009f578063ef8c35b31161006e578063ef8c35b314610717578063f2fde38b14610741578063f5648a4f14610769578063f80f5dd51461077f578063f9f58f02146107a757610203565b8063cc1776d31461065f578063dd62ed3e14610689578063e2fe1890146106c5578063e57f14e1146106ef57610203565b8063a63779ba116100db578063a63779ba146105bb578063a9059cbb146105e3578063aa4bde281461061f578063c9567bf91461064957610203565b806385141a77146105015780638da5cb5b1461052b57806395d89b4114610555578063a457c2d71461057f57610203565b8063395093511161018f5780636a08483c1161015e5780636a08483c1461043157806370a082311461045b578063711806f214610497578063715018a6146104c15780637de09237146104d757610203565b8063395093511461037957806349bd5a5e146103b55780634f7041a5146103df5780634fcd24461461040957610203565b806323b872dd116101cb57806323b872dd146102c15780632598cdb2146102fd578063313ce567146103275780633722355c1461035157610203565b806306fdde0314610207578063095ea7b3146102315780631694505e1461026d57806318160ddd1461029757610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061021b6107d1565b6040516102289190612a0b565b60405180910390f35b34801561023c575f80fd5b5061025760048036038101906102529190612abc565b61080e565b6040516102649190612b14565b60405180910390f35b348015610278575f80fd5b50610281610824565b60405161028e9190612b88565b60405180910390f35b3480156102a2575f80fd5b506102ab610849565b6040516102b89190612bb0565b60405180910390f35b3480156102cc575f80fd5b506102e760048036038101906102e29190612bc9565b61085c565b6040516102f49190612b14565b60405180910390f35b348015610308575f80fd5b506103116109bc565b60405161031e9190612c28565b60405180910390f35b348015610332575f80fd5b5061033b6109d4565b6040516103489190612c5c565b60405180910390f35b34801561035c575f80fd5b5061037760048036038101906103729190612c75565b6109dc565b005b348015610384575f80fd5b5061039f600480360381019061039a9190612abc565b610ac6565b6040516103ac9190612b14565b60405180910390f35b3480156103c0575f80fd5b506103c9610b5f565b6040516103d69190612c28565b60405180910390f35b3480156103ea575f80fd5b506103f3610b84565b6040516104009190612c5c565b60405180910390f35b348015610414575f80fd5b5061042f600480360381019061042a9190612cca565b610b96565b005b34801561043c575f80fd5b50610445610ca5565b6040516104529190612c28565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c9190612c75565b610cbd565b60405161048e9190612bb0565b60405180910390f35b3480156104a2575f80fd5b506104ab610d03565b6040516104b89190612c5c565b60405180910390f35b3480156104cc575f80fd5b506104d5610d16565b005b3480156104e2575f80fd5b506104eb610d29565b6040516104f89190612c5c565b60405180910390f35b34801561050c575f80fd5b50610515610d3c565b6040516105229190612c28565b60405180910390f35b348015610536575f80fd5b5061053f610d42565b60405161054c9190612c28565b60405180910390f35b348015610560575f80fd5b50610569610d69565b6040516105769190612a0b565b60405180910390f35b34801561058a575f80fd5b506105a560048036038101906105a09190612abc565b610da6565b6040516105b29190612b14565b60405180910390f35b3480156105c6575f80fd5b506105e160048036038101906105dc9190612d08565b610efa565b005b3480156105ee575f80fd5b5061060960048036038101906106049190612abc565b611005565b6040516106169190612b14565b60405180910390f35b34801561062a575f80fd5b5061063361101b565b6040516106409190612bb0565b60405180910390f35b348015610654575f80fd5b5061065d611043565b005b34801561066a575f80fd5b506106736110b8565b6040516106809190612c5c565b60405180910390f35b348015610694575f80fd5b506106af60048036038101906106aa9190612d6c565b6110cb565b6040516106bc9190612bb0565b60405180910390f35b3480156106d0575f80fd5b506106d961114d565b6040516106e69190612c5c565b60405180910390f35b3480156106fa575f80fd5b5061071560048036038101906107109190612c75565b611160565b005b348015610722575f80fd5b5061072b61124a565b6040516107389190612c5c565b60405180910390f35b34801561074c575f80fd5b5061076760048036038101906107629190612c75565b61125d565b005b348015610774575f80fd5b5061077d6112df565b005b34801561078a575f80fd5b506107a560048036038101906107a09190612c75565b6113db565b005b3480156107b2575f80fd5b506107bb6114c5565b6040516107c89190612c28565b60405180910390f35b60606040518060400160405280600581526020017f4c6f6c6c69000000000000000000000000000000000000000000000000000000815250905090565b5f61081a3384846114dd565b6001905092915050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6b033b2e3c9fd0803ce8000000905090565b5f61086884848461163b565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054821115610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612e1a565b60405180910390fd5b6109b184338460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109ac9190612e65565b6114dd565b600190509392505050565b730e7d87dd4554269fbace37e3fe8bec66ba13922d81565b5f6012905090565b6109e461252b565b60055f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6590612f08565b60405180910390fd5b600160055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f610b5533848460045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b509190612f26565b6114dd565b6001905092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085f9054906101000a900460ff1681565b610b9e61252b565b60098260ff1611158015610bb6575060098160ff1611155b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90612fa3565b60405180910390fd5b60085f9054906101000a900460ff1660ff168260ff16141580610c2d5750600860019054906101000a900460ff1660ff168160ff1614155b610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390613031565b60405180910390fd5b8160085f6101000a81548160ff021916908360ff16021790555080600860016101000a81548160ff021916908360ff1602179055505050565b73bda361a6479dde1357d09eeff0d25150af5599c081565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600860039054906101000a900460ff1681565b610d1e61252b565b610d275f6125a9565b565b600860029054906101000a900460ff1681565b61dead81565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f6c6c690000000000000000000000000000000000000000000000000000000000815250905090565b5f60045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054821115610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e59906130bf565b60405180910390fd5b610ef033848460045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610eeb9190612e65565b6114dd565b6001905092915050565b610f0261252b565b600860019054906101000a900460ff1660085f9054906101000a900460ff16610f2b91906130dd565b60ff1681838587610f3c91906130dd565b610f4691906130dd565b610f5091906130dd565b60ff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a9061315b565b60405180910390fd5b83600860026101000a81548160ff021916908360ff16021790555082600860036101000a81548160ff021916908360ff16021790555081600860046101000a81548160ff021916908360ff16021790555080600860056101000a81548160ff021916908360ff16021790555050505050565b5f61101133848461163b565b6001905092915050565b606460026b033b2e3c9fd0803ce80000006110369190613179565b61104091906131e7565b81565b61104b61252b565b600860069054906101000a900460ff161561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290613261565b60405180910390fd5b6001600860066101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff1681565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600860059054906101000a900460ff1681565b61116861252b565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906132ef565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600860049054906101000a900460ff1681565b61126561252b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061337d565b60405180910390fd5b6112dc816125a9565b50565b6112e761252b565b5f4711611329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113209061340b565b60405180910390fd5b5f611332610d42565b73ffffffffffffffffffffffffffffffffffffffff164760405161135590613456565b5f6040518083038185875af1925050503d805f811461138f576040519150601f19603f3d011682016040523d82523d5f602084013e611394565b606091505b50509050806113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf906134da565b60405180910390fd5b50565b6113e361252b565b60075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613542565b60405180910390fd5b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b73aad1ea1bac089f537fab4b24babbd67851aa2f9881565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361154b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611542906135d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b09061365e565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906136ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e9061377a565b60405180910390fd5b5f8111611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613808565b60405180910390fd5b61176283610cbd565b8111156117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613896565b60405180910390fd5b600860069054906101000a900460ff1680611805575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611856575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906138fe565b60405180910390fd5b60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806119215750606460026b033b2e3c9fd0803ce80000006119009190613179565b61190a91906131e7565b8161191484610cbd565b61191e9190612f26565b11155b611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790613966565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806119fb575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611aac575060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611aab575060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b5b15611bc1578060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611afd9190612e65565b925050819055508060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611b509190612f26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb49190612bb0565b60405180910390a3612526565b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c0d9190612e65565b9250508190555060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ead575f60085f9054906101000a900460ff1660ff161115611d8a57606460085f9054906101000a900460ff1660ff1682611ca09190613179565b611caa91906131e7565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611cf59190612f26565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef606460085f9054906101000a900460ff1660ff1685611d6a9190613179565b611d7491906131e7565b604051611d819190612bb0565b60405180910390a35b606460085f9054906101000a900460ff1660ff1682611da99190613179565b611db391906131e7565b81611dbe9190612e65565b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e099190612f26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef606460085f9054906101000a900460ff1660ff1685611e7e9190613179565b611e8891906131e7565b84611e939190612e65565b604051611ea09190612bb0565b60405180910390a3612525565b5f600860019054906101000a900460ff1660ff161115612404576064600860019054906101000a900460ff1660ff1682611ee79190613179565b611ef191906131e7565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f3c9190612f26565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6064600860019054906101000a900460ff1660ff1685611fb29190613179565b611fbc91906131e7565b604051611fc99190612bb0565b60405180910390a3610fa06b033b2e3c9fd0803ce8000000611feb91906131e7565b611ff430610cbd565b1115612403575f6002600860059054906101000a900460ff16600860049054906101000a900460ff16600860039054906101000a900460ff16600860029054906101000a900460ff1661204791906130dd565b61205191906130dd565b61205b91906130dd565b60ff16600860029054906101000a900460ff1660ff1661207a30610cbd565b6120849190613179565b61208e91906131e7565b61209891906131e7565b90506120b6816120a730610cbd565b6120b19190612e65565b61266a565b5f80600860029054906101000a900460ff1660ff1611156121675761216682600860059054906101000a900460ff16600860049054906101000a900460ff16600860039054906101000a900460ff16600860029054906101000a900460ff1661211f91906130dd565b61212991906130dd565b61213391906130dd565b60ff16600860029054906101000a900460ff1660ff16476121549190613179565b61215e91906131e7565b61dead6128a0565b5b5f600860039054906101000a900460ff1660ff16111561227257730e7d87dd4554269fbace37e3fe8bec66ba13922d73ffffffffffffffffffffffffffffffffffffffff16600860059054906101000a900460ff16600860049054906101000a900460ff16600860039054906101000a900460ff166121e691906130dd565b6121f091906130dd565b60ff16600860039054906101000a900460ff1660ff16476122119190613179565b61221b91906131e7565b6175309060405161222b90613456565b5f60405180830381858888f193505050503d805f8114612266576040519150601f19603f3d011682016040523d82523d5f602084013e61226b565b606091505b5050809150505b5f600860049054906101000a900460ff1660ff1611156123635773bda361a6479dde1357d09eeff0d25150af5599c073ffffffffffffffffffffffffffffffffffffffff16600860059054906101000a900460ff16600860049054906101000a900460ff166122e191906130dd565b60ff16600860049054906101000a900460ff1660ff16476123029190613179565b61230c91906131e7565b6175309060405161231c90613456565b5f60405180830381858888f193505050503d805f8114612357576040519150601f19603f3d011682016040523d82523d5f602084013e61235c565b606091505b5050809150505b5f600860059054906101000a900460ff1660ff1611156124005773aad1ea1bac089f537fab4b24babbd67851aa2f9873ffffffffffffffffffffffffffffffffffffffff1647617530906040516123b990613456565b5f60405180830381858888f193505050503d805f81146123f4576040519150601f19603f3d011682016040523d82523d5f602084013e6123f9565b606091505b5050809150505b50505b5b6064600860019054906101000a900460ff1660ff16826124249190613179565b61242e91906131e7565b816124399190612e65565b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546124849190612f26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6064600860019054906101000a900460ff1660ff16856124fa9190613179565b61250491906131e7565b8461250f9190612e65565b60405161251c9190612bb0565b60405180910390a35b5b505050565b61253361297a565b73ffffffffffffffffffffffffffffffffffffffff16612551610d42565b73ffffffffffffffffffffffffffffffffffffffff16146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e906139ce565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff811115612686576126856139ec565b5b6040519080825280602002602001820160405280156126b45781602001602082028036833780820191505090505b50905030815f815181106126cb576126ca613a19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561276f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127939190613a5a565b816001815181106127a7576127a6613a19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061280d3060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114dd565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161286f959493929190613b75565b5f604051808303815f87803b158015612886575f80fd5b505af1158015612898573d5f803e3d5ffd5b505050505050565b6128cc3060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856114dd565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f8087426040518863ffffffff1660e01b815260040161293196959493929190613bcd565b60606040518083038185885af115801561294d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906129729190613c40565b505050505050565b5f33905090565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156129b857808201518184015260208101905061299d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6129dd82612981565b6129e7818561298b565b93506129f781856020860161299b565b612a00816129c3565b840191505092915050565b5f6020820190508181035f830152612a2381846129d3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612a5882612a2f565b9050919050565b612a6881612a4e565b8114612a72575f80fd5b50565b5f81359050612a8381612a5f565b92915050565b5f819050919050565b612a9b81612a89565b8114612aa5575f80fd5b50565b5f81359050612ab681612a92565b92915050565b5f8060408385031215612ad257612ad1612a2b565b5b5f612adf85828601612a75565b9250506020612af085828601612aa8565b9150509250929050565b5f8115159050919050565b612b0e81612afa565b82525050565b5f602082019050612b275f830184612b05565b92915050565b5f819050919050565b5f612b50612b4b612b4684612a2f565b612b2d565b612a2f565b9050919050565b5f612b6182612b36565b9050919050565b5f612b7282612b57565b9050919050565b612b8281612b68565b82525050565b5f602082019050612b9b5f830184612b79565b92915050565b612baa81612a89565b82525050565b5f602082019050612bc35f830184612ba1565b92915050565b5f805f60608486031215612be057612bdf612a2b565b5b5f612bed86828701612a75565b9350506020612bfe86828701612a75565b9250506040612c0f86828701612aa8565b9150509250925092565b612c2281612a4e565b82525050565b5f602082019050612c3b5f830184612c19565b92915050565b5f60ff82169050919050565b612c5681612c41565b82525050565b5f602082019050612c6f5f830184612c4d565b92915050565b5f60208284031215612c8a57612c89612a2b565b5b5f612c9784828501612a75565b91505092915050565b612ca981612c41565b8114612cb3575f80fd5b50565b5f81359050612cc481612ca0565b92915050565b5f8060408385031215612ce057612cdf612a2b565b5b5f612ced85828601612cb6565b9250506020612cfe85828601612cb6565b9150509250929050565b5f805f8060808587031215612d2057612d1f612a2b565b5b5f612d2d87828801612cb6565b9450506020612d3e87828801612cb6565b9350506040612d4f87828801612cb6565b9250506060612d6087828801612cb6565b91505092959194509250565b5f8060408385031215612d8257612d81612a2b565b5b5f612d8f85828601612a75565b9250506020612da085828601612a75565b9150509250929050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e63652e0000000000000000000000000000000000000000000000602082015250565b5f612e0460298361298b565b9150612e0f82612daa565b604082019050919050565b5f6020820190508181035f830152612e3181612df8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e6f82612a89565b9150612e7a83612a89565b9250828203905081811115612e9257612e91612e38565b5b92915050565b7f6164647265737320697320616c7265616479206578636c756465642066726f6d5f8201527f206d61782077616c6c6574000000000000000000000000000000000000000000602082015250565b5f612ef2602b8361298b565b9150612efd82612e98565b604082019050919050565b5f6020820190508181035f830152612f1f81612ee6565b9050919050565b5f612f3082612a89565b9150612f3b83612a89565b9250828201905080821115612f5357612f52612e38565b5b92915050565b7f66656573206d757374206265203c3d39250000000000000000000000000000005f82015250565b5f612f8d60118361298b565b9150612f9882612f59565b602082019050919050565b5f6020820190508181035f830152612fba81612f81565b9050919050565b7f6e657720666565732063616e6e6f74206265207468652073616d65206173206f5f8201527f6c64206665657300000000000000000000000000000000000000000000000000602082015250565b5f61301b60278361298b565b915061302682612fc1565b604082019050919050565b5f6020820190508181035f8301526130488161300f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f776e6163652062656c6f775f8201527f207a65726f2e0000000000000000000000000000000000000000000000000000602082015250565b5f6130a960268361298b565b91506130b48261304f565b604082019050919050565b5f6020820190508181035f8301526130d68161309d565b9050919050565b5f6130e782612c41565b91506130f283612c41565b9250828201905060ff81111561310b5761310a612e38565b5b92915050565b7f726174696f73206d7573742061646420757020746f20746f74616c20746178005f82015250565b5f613145601f8361298b565b915061315082613111565b602082019050919050565b5f6020820190508181035f83015261317281613139565b9050919050565b5f61318382612a89565b915061318e83612a89565b925082820261319c81612a89565b915082820484148315176131b3576131b2612e38565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6131f182612a89565b91506131fc83612a89565b92508261320c5761320b6131ba565b5b828204905092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61324b60178361298b565b915061325682613217565b602082019050919050565b5f6020820190508181035f8301526132788161323f565b9050919050565b7f6164647265737320697320616c7265616479206578636c756465642066726f6d5f8201527f2066656573000000000000000000000000000000000000000000000000000000602082015250565b5f6132d960258361298b565b91506132e48261327f565b604082019050919050565b5f6020820190508181035f830152613306816132cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61336760268361298b565b91506133728261330d565b604082019050919050565b5f6020820190508181035f8301526133948161335b565b9050919050565b7f63616e6e6f742073656e64206d6f7265207468616e20636f6e747261637420625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133f560268361298b565b91506134008261339b565b604082019050919050565b5f6020820190508181035f830152613422816133e9565b9050919050565b5f81905092915050565b50565b5f6134415f83613429565b915061344c82613433565b5f82019050919050565b5f61346082613436565b9150819050919050565b7f6572726f72207769746864726177696e67204554482066726f6d20636f6e74725f8201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b5f6134c460238361298b565b91506134cf8261346a565b604082019050919050565b5f6020820190508181035f8301526134f1816134b8565b9050919050565b7f6164647265737320616c726561647920616464656400000000000000000000005f82015250565b5f61352c60158361298b565b9150613537826134f8565b602082019050919050565b5f6020820190508181035f83015261355981613520565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6135ba60248361298b565b91506135c582613560565b604082019050919050565b5f6020820190508181035f8301526135e7816135ae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61364860228361298b565b9150613653826135ee565b604082019050919050565b5f6020820190508181035f8301526136758161363c565b9050919050565b7f63616e6e6f74207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6136d660258361298b565b91506136e18261367c565b604082019050919050565b5f6020820190508181035f830152613703816136ca565b9050919050565b7f63616e6e6f74207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61376460238361298b565b915061376f8261370a565b604082019050919050565b5f6020820190508181035f83015261379181613758565b9050919050565b7f7472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6137f260298361298b565b91506137fd82613798565b604082019050919050565b5f6020820190508181035f83015261381f816137e6565b9050919050565b7f63616e6e6f74207472616e73666572206d6f7265207468616e2062616c616e635f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f61388060218361298b565b915061388b82613826565b604082019050919050565b5f6020820190508181035f8301526138ad81613874565b9050919050565b7f74726164696e67206973206e6f74206f70656e207965740000000000000000005f82015250565b5f6138e860178361298b565b91506138f3826138b4565b602082019050919050565b5f6020820190508181035f830152613915816138dc565b9050919050565b7f63616e6e6f7420657863656564206d617857616c6c6574416d6f756e740000005f82015250565b5f613950601d8361298b565b915061395b8261391c565b602082019050919050565b5f6020820190508181035f83015261397d81613944565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6139b860208361298b565b91506139c382613984565b602082019050919050565b5f6020820190508181035f8301526139e5816139ac565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613a5481612a5f565b92915050565b5f60208284031215613a6f57613a6e612a2b565b5b5f613a7c84828501613a46565b91505092915050565b5f819050919050565b5f613aa8613aa3613a9e84613a85565b612b2d565b612a89565b9050919050565b613ab881613a8e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613af081612a4e565b82525050565b5f613b018383613ae7565b60208301905092915050565b5f602082019050919050565b5f613b2382613abe565b613b2d8185613ac8565b9350613b3883613ad8565b805f5b83811015613b68578151613b4f8882613af6565b9750613b5a83613b0d565b925050600181019050613b3b565b5085935050505092915050565b5f60a082019050613b885f830188612ba1565b613b956020830187613aaf565b8181036040830152613ba78186613b19565b9050613bb66060830185612c19565b613bc36080830184612ba1565b9695505050505050565b5f60c082019050613be05f830189612c19565b613bed6020830188612ba1565b613bfa6040830187613aaf565b613c076060830186613aaf565b613c146080830185612c19565b613c2160a0830184612ba1565b979650505050505050565b5f81519050613c3a81612a92565b92915050565b5f805f60608486031215613c5757613c56612a2b565b5b5f613c6486828701613c2c565b9350506020613c7586828701613c2c565b9250506040613c8686828701613c2c565b915050925092509256fea26469706673582212204e875f68bd0e0e5f958a02c80e177cc601695905e47b3500deec4ef09ed4c75664736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101fc575f3560e01c806385141a771161010c578063cc1776d31161009f578063ef8c35b31161006e578063ef8c35b314610717578063f2fde38b14610741578063f5648a4f14610769578063f80f5dd51461077f578063f9f58f02146107a757610203565b8063cc1776d31461065f578063dd62ed3e14610689578063e2fe1890146106c5578063e57f14e1146106ef57610203565b8063a63779ba116100db578063a63779ba146105bb578063a9059cbb146105e3578063aa4bde281461061f578063c9567bf91461064957610203565b806385141a77146105015780638da5cb5b1461052b57806395d89b4114610555578063a457c2d71461057f57610203565b8063395093511161018f5780636a08483c1161015e5780636a08483c1461043157806370a082311461045b578063711806f214610497578063715018a6146104c15780637de09237146104d757610203565b8063395093511461037957806349bd5a5e146103b55780634f7041a5146103df5780634fcd24461461040957610203565b806323b872dd116101cb57806323b872dd146102c15780632598cdb2146102fd578063313ce567146103275780633722355c1461035157610203565b806306fdde0314610207578063095ea7b3146102315780631694505e1461026d57806318160ddd1461029757610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061021b6107d1565b6040516102289190612a0b565b60405180910390f35b34801561023c575f80fd5b5061025760048036038101906102529190612abc565b61080e565b6040516102649190612b14565b60405180910390f35b348015610278575f80fd5b50610281610824565b60405161028e9190612b88565b60405180910390f35b3480156102a2575f80fd5b506102ab610849565b6040516102b89190612bb0565b60405180910390f35b3480156102cc575f80fd5b506102e760048036038101906102e29190612bc9565b61085c565b6040516102f49190612b14565b60405180910390f35b348015610308575f80fd5b506103116109bc565b60405161031e9190612c28565b60405180910390f35b348015610332575f80fd5b5061033b6109d4565b6040516103489190612c5c565b60405180910390f35b34801561035c575f80fd5b5061037760048036038101906103729190612c75565b6109dc565b005b348015610384575f80fd5b5061039f600480360381019061039a9190612abc565b610ac6565b6040516103ac9190612b14565b60405180910390f35b3480156103c0575f80fd5b506103c9610b5f565b6040516103d69190612c28565b60405180910390f35b3480156103ea575f80fd5b506103f3610b84565b6040516104009190612c5c565b60405180910390f35b348015610414575f80fd5b5061042f600480360381019061042a9190612cca565b610b96565b005b34801561043c575f80fd5b50610445610ca5565b6040516104529190612c28565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c9190612c75565b610cbd565b60405161048e9190612bb0565b60405180910390f35b3480156104a2575f80fd5b506104ab610d03565b6040516104b89190612c5c565b60405180910390f35b3480156104cc575f80fd5b506104d5610d16565b005b3480156104e2575f80fd5b506104eb610d29565b6040516104f89190612c5c565b60405180910390f35b34801561050c575f80fd5b50610515610d3c565b6040516105229190612c28565b60405180910390f35b348015610536575f80fd5b5061053f610d42565b60405161054c9190612c28565b60405180910390f35b348015610560575f80fd5b50610569610d69565b6040516105769190612a0b565b60405180910390f35b34801561058a575f80fd5b506105a560048036038101906105a09190612abc565b610da6565b6040516105b29190612b14565b60405180910390f35b3480156105c6575f80fd5b506105e160048036038101906105dc9190612d08565b610efa565b005b3480156105ee575f80fd5b5061060960048036038101906106049190612abc565b611005565b6040516106169190612b14565b60405180910390f35b34801561062a575f80fd5b5061063361101b565b6040516106409190612bb0565b60405180910390f35b348015610654575f80fd5b5061065d611043565b005b34801561066a575f80fd5b506106736110b8565b6040516106809190612c5c565b60405180910390f35b348015610694575f80fd5b506106af60048036038101906106aa9190612d6c565b6110cb565b6040516106bc9190612bb0565b60405180910390f35b3480156106d0575f80fd5b506106d961114d565b6040516106e69190612c5c565b60405180910390f35b3480156106fa575f80fd5b5061071560048036038101906107109190612c75565b611160565b005b348015610722575f80fd5b5061072b61124a565b6040516107389190612c5c565b60405180910390f35b34801561074c575f80fd5b5061076760048036038101906107629190612c75565b61125d565b005b348015610774575f80fd5b5061077d6112df565b005b34801561078a575f80fd5b506107a560048036038101906107a09190612c75565b6113db565b005b3480156107b2575f80fd5b506107bb6114c5565b6040516107c89190612c28565b60405180910390f35b60606040518060400160405280600581526020017f4c6f6c6c69000000000000000000000000000000000000000000000000000000815250905090565b5f61081a3384846114dd565b6001905092915050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6b033b2e3c9fd0803ce8000000905090565b5f61086884848461163b565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054821115610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612e1a565b60405180910390fd5b6109b184338460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109ac9190612e65565b6114dd565b600190509392505050565b730e7d87dd4554269fbace37e3fe8bec66ba13922d81565b5f6012905090565b6109e461252b565b60055f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6590612f08565b60405180910390fd5b600160055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f610b5533848460045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b509190612f26565b6114dd565b6001905092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085f9054906101000a900460ff1681565b610b9e61252b565b60098260ff1611158015610bb6575060098160ff1611155b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90612fa3565b60405180910390fd5b60085f9054906101000a900460ff1660ff168260ff16141580610c2d5750600860019054906101000a900460ff1660ff168160ff1614155b610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390613031565b60405180910390fd5b8160085f6101000a81548160ff021916908360ff16021790555080600860016101000a81548160ff021916908360ff1602179055505050565b73bda361a6479dde1357d09eeff0d25150af5599c081565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600860039054906101000a900460ff1681565b610d1e61252b565b610d275f6125a9565b565b600860029054906101000a900460ff1681565b61dead81565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f6c6c690000000000000000000000000000000000000000000000000000000000815250905090565b5f60045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054821115610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e59906130bf565b60405180910390fd5b610ef033848460045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610eeb9190612e65565b6114dd565b6001905092915050565b610f0261252b565b600860019054906101000a900460ff1660085f9054906101000a900460ff16610f2b91906130dd565b60ff1681838587610f3c91906130dd565b610f4691906130dd565b610f5091906130dd565b60ff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a9061315b565b60405180910390fd5b83600860026101000a81548160ff021916908360ff16021790555082600860036101000a81548160ff021916908360ff16021790555081600860046101000a81548160ff021916908360ff16021790555080600860056101000a81548160ff021916908360ff16021790555050505050565b5f61101133848461163b565b6001905092915050565b606460026b033b2e3c9fd0803ce80000006110369190613179565b61104091906131e7565b81565b61104b61252b565b600860069054906101000a900460ff161561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290613261565b60405180910390fd5b6001600860066101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff1681565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600860059054906101000a900460ff1681565b61116861252b565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906132ef565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600860049054906101000a900460ff1681565b61126561252b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061337d565b60405180910390fd5b6112dc816125a9565b50565b6112e761252b565b5f4711611329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113209061340b565b60405180910390fd5b5f611332610d42565b73ffffffffffffffffffffffffffffffffffffffff164760405161135590613456565b5f6040518083038185875af1925050503d805f811461138f576040519150601f19603f3d011682016040523d82523d5f602084013e611394565b606091505b50509050806113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf906134da565b60405180910390fd5b50565b6113e361252b565b60075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613542565b60405180910390fd5b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b73aad1ea1bac089f537fab4b24babbd67851aa2f9881565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361154b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611542906135d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b09061365e565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906136ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e9061377a565b60405180910390fd5b5f8111611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613808565b60405180910390fd5b61176283610cbd565b8111156117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613896565b60405180910390fd5b600860069054906101000a900460ff1680611805575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611856575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906138fe565b60405180910390fd5b60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806119215750606460026b033b2e3c9fd0803ce80000006119009190613179565b61190a91906131e7565b8161191484610cbd565b61191e9190612f26565b11155b611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790613966565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806119fb575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611aac575060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611aab575060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b5b15611bc1578060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611afd9190612e65565b925050819055508060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611b509190612f26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb49190612bb0565b60405180910390a3612526565b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c0d9190612e65565b9250508190555060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ead575f60085f9054906101000a900460ff1660ff161115611d8a57606460085f9054906101000a900460ff1660ff1682611ca09190613179565b611caa91906131e7565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611cf59190612f26565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef606460085f9054906101000a900460ff1660ff1685611d6a9190613179565b611d7491906131e7565b604051611d819190612bb0565b60405180910390a35b606460085f9054906101000a900460ff1660ff1682611da99190613179565b611db391906131e7565b81611dbe9190612e65565b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e099190612f26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef606460085f9054906101000a900460ff1660ff1685611e7e9190613179565b611e8891906131e7565b84611e939190612e65565b604051611ea09190612bb0565b60405180910390a3612525565b5f600860019054906101000a900460ff1660ff161115612404576064600860019054906101000a900460ff1660ff1682611ee79190613179565b611ef191906131e7565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f3c9190612f26565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6064600860019054906101000a900460ff1660ff1685611fb29190613179565b611fbc91906131e7565b604051611fc99190612bb0565b60405180910390a3610fa06b033b2e3c9fd0803ce8000000611feb91906131e7565b611ff430610cbd565b1115612403575f6002600860059054906101000a900460ff16600860049054906101000a900460ff16600860039054906101000a900460ff16600860029054906101000a900460ff1661204791906130dd565b61205191906130dd565b61205b91906130dd565b60ff16600860029054906101000a900460ff1660ff1661207a30610cbd565b6120849190613179565b61208e91906131e7565b61209891906131e7565b90506120b6816120a730610cbd565b6120b19190612e65565b61266a565b5f80600860029054906101000a900460ff1660ff1611156121675761216682600860059054906101000a900460ff16600860049054906101000a900460ff16600860039054906101000a900460ff16600860029054906101000a900460ff1661211f91906130dd565b61212991906130dd565b61213391906130dd565b60ff16600860029054906101000a900460ff1660ff16476121549190613179565b61215e91906131e7565b61dead6128a0565b5b5f600860039054906101000a900460ff1660ff16111561227257730e7d87dd4554269fbace37e3fe8bec66ba13922d73ffffffffffffffffffffffffffffffffffffffff16600860059054906101000a900460ff16600860049054906101000a900460ff16600860039054906101000a900460ff166121e691906130dd565b6121f091906130dd565b60ff16600860039054906101000a900460ff1660ff16476122119190613179565b61221b91906131e7565b6175309060405161222b90613456565b5f60405180830381858888f193505050503d805f8114612266576040519150601f19603f3d011682016040523d82523d5f602084013e61226b565b606091505b5050809150505b5f600860049054906101000a900460ff1660ff1611156123635773bda361a6479dde1357d09eeff0d25150af5599c073ffffffffffffffffffffffffffffffffffffffff16600860059054906101000a900460ff16600860049054906101000a900460ff166122e191906130dd565b60ff16600860049054906101000a900460ff1660ff16476123029190613179565b61230c91906131e7565b6175309060405161231c90613456565b5f60405180830381858888f193505050503d805f8114612357576040519150601f19603f3d011682016040523d82523d5f602084013e61235c565b606091505b5050809150505b5f600860059054906101000a900460ff1660ff1611156124005773aad1ea1bac089f537fab4b24babbd67851aa2f9873ffffffffffffffffffffffffffffffffffffffff1647617530906040516123b990613456565b5f60405180830381858888f193505050503d805f81146123f4576040519150601f19603f3d011682016040523d82523d5f602084013e6123f9565b606091505b5050809150505b50505b5b6064600860019054906101000a900460ff1660ff16826124249190613179565b61242e91906131e7565b816124399190612e65565b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546124849190612f26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6064600860019054906101000a900460ff1660ff16856124fa9190613179565b61250491906131e7565b8461250f9190612e65565b60405161251c9190612bb0565b60405180910390a35b5b505050565b61253361297a565b73ffffffffffffffffffffffffffffffffffffffff16612551610d42565b73ffffffffffffffffffffffffffffffffffffffff16146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e906139ce565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff811115612686576126856139ec565b5b6040519080825280602002602001820160405280156126b45781602001602082028036833780820191505090505b50905030815f815181106126cb576126ca613a19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561276f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127939190613a5a565b816001815181106127a7576127a6613a19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061280d3060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114dd565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161286f959493929190613b75565b5f604051808303815f87803b158015612886575f80fd5b505af1158015612898573d5f803e3d5ffd5b505050505050565b6128cc3060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856114dd565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f8087426040518863ffffffff1660e01b815260040161293196959493929190613bcd565b60606040518083038185885af115801561294d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906129729190613c40565b505050505050565b5f33905090565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156129b857808201518184015260208101905061299d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6129dd82612981565b6129e7818561298b565b93506129f781856020860161299b565b612a00816129c3565b840191505092915050565b5f6020820190508181035f830152612a2381846129d3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612a5882612a2f565b9050919050565b612a6881612a4e565b8114612a72575f80fd5b50565b5f81359050612a8381612a5f565b92915050565b5f819050919050565b612a9b81612a89565b8114612aa5575f80fd5b50565b5f81359050612ab681612a92565b92915050565b5f8060408385031215612ad257612ad1612a2b565b5b5f612adf85828601612a75565b9250506020612af085828601612aa8565b9150509250929050565b5f8115159050919050565b612b0e81612afa565b82525050565b5f602082019050612b275f830184612b05565b92915050565b5f819050919050565b5f612b50612b4b612b4684612a2f565b612b2d565b612a2f565b9050919050565b5f612b6182612b36565b9050919050565b5f612b7282612b57565b9050919050565b612b8281612b68565b82525050565b5f602082019050612b9b5f830184612b79565b92915050565b612baa81612a89565b82525050565b5f602082019050612bc35f830184612ba1565b92915050565b5f805f60608486031215612be057612bdf612a2b565b5b5f612bed86828701612a75565b9350506020612bfe86828701612a75565b9250506040612c0f86828701612aa8565b9150509250925092565b612c2281612a4e565b82525050565b5f602082019050612c3b5f830184612c19565b92915050565b5f60ff82169050919050565b612c5681612c41565b82525050565b5f602082019050612c6f5f830184612c4d565b92915050565b5f60208284031215612c8a57612c89612a2b565b5b5f612c9784828501612a75565b91505092915050565b612ca981612c41565b8114612cb3575f80fd5b50565b5f81359050612cc481612ca0565b92915050565b5f8060408385031215612ce057612cdf612a2b565b5b5f612ced85828601612cb6565b9250506020612cfe85828601612cb6565b9150509250929050565b5f805f8060808587031215612d2057612d1f612a2b565b5b5f612d2d87828801612cb6565b9450506020612d3e87828801612cb6565b9350506040612d4f87828801612cb6565b9250506060612d6087828801612cb6565b91505092959194509250565b5f8060408385031215612d8257612d81612a2b565b5b5f612d8f85828601612a75565b9250506020612da085828601612a75565b9150509250929050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e63652e0000000000000000000000000000000000000000000000602082015250565b5f612e0460298361298b565b9150612e0f82612daa565b604082019050919050565b5f6020820190508181035f830152612e3181612df8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e6f82612a89565b9150612e7a83612a89565b9250828203905081811115612e9257612e91612e38565b5b92915050565b7f6164647265737320697320616c7265616479206578636c756465642066726f6d5f8201527f206d61782077616c6c6574000000000000000000000000000000000000000000602082015250565b5f612ef2602b8361298b565b9150612efd82612e98565b604082019050919050565b5f6020820190508181035f830152612f1f81612ee6565b9050919050565b5f612f3082612a89565b9150612f3b83612a89565b9250828201905080821115612f5357612f52612e38565b5b92915050565b7f66656573206d757374206265203c3d39250000000000000000000000000000005f82015250565b5f612f8d60118361298b565b9150612f9882612f59565b602082019050919050565b5f6020820190508181035f830152612fba81612f81565b9050919050565b7f6e657720666565732063616e6e6f74206265207468652073616d65206173206f5f8201527f6c64206665657300000000000000000000000000000000000000000000000000602082015250565b5f61301b60278361298b565b915061302682612fc1565b604082019050919050565b5f6020820190508181035f8301526130488161300f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f776e6163652062656c6f775f8201527f207a65726f2e0000000000000000000000000000000000000000000000000000602082015250565b5f6130a960268361298b565b91506130b48261304f565b604082019050919050565b5f6020820190508181035f8301526130d68161309d565b9050919050565b5f6130e782612c41565b91506130f283612c41565b9250828201905060ff81111561310b5761310a612e38565b5b92915050565b7f726174696f73206d7573742061646420757020746f20746f74616c20746178005f82015250565b5f613145601f8361298b565b915061315082613111565b602082019050919050565b5f6020820190508181035f83015261317281613139565b9050919050565b5f61318382612a89565b915061318e83612a89565b925082820261319c81612a89565b915082820484148315176131b3576131b2612e38565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6131f182612a89565b91506131fc83612a89565b92508261320c5761320b6131ba565b5b828204905092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61324b60178361298b565b915061325682613217565b602082019050919050565b5f6020820190508181035f8301526132788161323f565b9050919050565b7f6164647265737320697320616c7265616479206578636c756465642066726f6d5f8201527f2066656573000000000000000000000000000000000000000000000000000000602082015250565b5f6132d960258361298b565b91506132e48261327f565b604082019050919050565b5f6020820190508181035f830152613306816132cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61336760268361298b565b91506133728261330d565b604082019050919050565b5f6020820190508181035f8301526133948161335b565b9050919050565b7f63616e6e6f742073656e64206d6f7265207468616e20636f6e747261637420625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133f560268361298b565b91506134008261339b565b604082019050919050565b5f6020820190508181035f830152613422816133e9565b9050919050565b5f81905092915050565b50565b5f6134415f83613429565b915061344c82613433565b5f82019050919050565b5f61346082613436565b9150819050919050565b7f6572726f72207769746864726177696e67204554482066726f6d20636f6e74725f8201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b5f6134c460238361298b565b91506134cf8261346a565b604082019050919050565b5f6020820190508181035f8301526134f1816134b8565b9050919050565b7f6164647265737320616c726561647920616464656400000000000000000000005f82015250565b5f61352c60158361298b565b9150613537826134f8565b602082019050919050565b5f6020820190508181035f83015261355981613520565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6135ba60248361298b565b91506135c582613560565b604082019050919050565b5f6020820190508181035f8301526135e7816135ae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61364860228361298b565b9150613653826135ee565b604082019050919050565b5f6020820190508181035f8301526136758161363c565b9050919050565b7f63616e6e6f74207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6136d660258361298b565b91506136e18261367c565b604082019050919050565b5f6020820190508181035f830152613703816136ca565b9050919050565b7f63616e6e6f74207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61376460238361298b565b915061376f8261370a565b604082019050919050565b5f6020820190508181035f83015261379181613758565b9050919050565b7f7472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6137f260298361298b565b91506137fd82613798565b604082019050919050565b5f6020820190508181035f83015261381f816137e6565b9050919050565b7f63616e6e6f74207472616e73666572206d6f7265207468616e2062616c616e635f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f61388060218361298b565b915061388b82613826565b604082019050919050565b5f6020820190508181035f8301526138ad81613874565b9050919050565b7f74726164696e67206973206e6f74206f70656e207965740000000000000000005f82015250565b5f6138e860178361298b565b91506138f3826138b4565b602082019050919050565b5f6020820190508181035f830152613915816138dc565b9050919050565b7f63616e6e6f7420657863656564206d617857616c6c6574416d6f756e740000005f82015250565b5f613950601d8361298b565b915061395b8261391c565b602082019050919050565b5f6020820190508181035f83015261397d81613944565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6139b860208361298b565b91506139c382613984565b602082019050919050565b5f6020820190508181035f8301526139e5816139ac565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613a5481612a5f565b92915050565b5f60208284031215613a6f57613a6e612a2b565b5b5f613a7c84828501613a46565b91505092915050565b5f819050919050565b5f613aa8613aa3613a9e84613a85565b612b2d565b612a89565b9050919050565b613ab881613a8e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613af081612a4e565b82525050565b5f613b018383613ae7565b60208301905092915050565b5f602082019050919050565b5f613b2382613abe565b613b2d8185613ac8565b9350613b3883613ad8565b805f5b83811015613b68578151613b4f8882613af6565b9750613b5a83613b0d565b925050600181019050613b3b565b5085935050505092915050565b5f60a082019050613b885f830188612ba1565b613b956020830187613aaf565b8181036040830152613ba78186613b19565b9050613bb66060830185612c19565b613bc36080830184612ba1565b9695505050505050565b5f60c082019050613be05f830189612c19565b613bed6020830188612ba1565b613bfa6040830187613aaf565b613c076060830186613aaf565b613c146080830185612c19565b613c2160a0830184612ba1565b979650505050505050565b5f81519050613c3a81612a92565b92915050565b5f805f60608486031215613c5757613c56612a2b565b5b5f613c6486828701613c2c565b9350506020613c7586828701613c2c565b9250506040613c8686828701613c2c565b915050925092509256fea26469706673582212204e875f68bd0e0e5f958a02c80e177cc601695905e47b3500deec4ef09ed4c75664736f6c63430008140033

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.