ETH Price: $2,525.43 (+0.04%)

Token

Pumpkin Inu (PUMPINU)
 

Overview

Max Total Supply

1,000,000,000 PUMPINU

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
651,312.120742122 PUMPINU

Value
$0.00
0xda1a473f62bc23eb427d4974401bf931558314ef
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:
PUMPKIN

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Pump.sol
/**

https://pumpkininu.fun/

https://twitter.com/pumpkin_inu

https://t.me/Pumpkin_Inu1

1% of every transaction goes to LP. Added LP will go to dead address. 

1% goes to Charity wallet and will be donated for well being of needy children. 

3% goes to marketing and Development

*/


//SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.8;

interface DexFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface DexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract PUMPKIN is ERC20, Ownable {

    struct Tax {
        uint256 marketingTax;
        uint256 liquidityTax;
        uint256 charityTax;
    }

    uint256 _decimal = 9;
    uint256 private _totalSupply = 1e9 * 10 ** _decimal;

    //Router
    DexRouter public uniswapRouter;
    address public pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(3, 1, 1);
    Tax public sellTaxes = Tax(3, 1, 1);
    uint256 public totalBuyFees = 5;
    uint256 public totalSellFees = 5;

    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;

    //Wallets
    address public marketingWallet = 0x235A92B40182CbF9d5cd6ef706754c566aF0042C;
    address public charityWallet = 0x643ecd309E42FD678D03d18538Ce4e48a540E92A;

    //Max amounts
    uint256 public maxWallet;
    uint256 public maxTx;
    uint256 public maxWalletTimeThreshold = 2 hours;
    uint256 public maxTxTimeThreshold = 2 hours;
    bool public limitsEnabled = false;

    //Snipers
    uint256 public deadBlocks;
    mapping(address=>bool) public blacklisted;

    //Launch Status
    uint256 public launchedAtTime;
    uint256 public launchedAtBlock;

    constructor() ERC20("Pumpkin Inu", "PUMPINU") {
        //0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 test
        //0x10ED43C718714eb63d5aA57B78B54704E256024E Pancakeswap on mainnet
        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );

        // do not whitelist liquidity pool, otherwise there wont be any taxes
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;
        _mint(msg.sender, _totalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function setMarketingWallet(address _newMarketing) external onlyOwner {
        require(_newMarketing != address(0), "new Marketing wallet can not be dead address!");
        marketingWallet = _newMarketing;
    }

    function setCharityWallet(address _newCharity) external onlyOwner{
        require(_newCharity != address(0), "new Charity wallet can not be dead address!");
        charityWallet = _newCharity;
    }

    function setBuyFees(
        uint256 _charityTax,
        uint256 _lpTax,
        uint256 _marketingTax
    ) external onlyOwner {
        buyTaxes.charityTax = _charityTax;
        buyTaxes.marketingTax = _marketingTax;
        buyTaxes.liquidityTax = _lpTax;
        totalBuyFees = _charityTax + _lpTax + _marketingTax;
    }

    function setSellFees(
        uint256 _charityTax,
        uint256 _lpTax,
        uint256 _marketingTax
    ) external onlyOwner {
        sellTaxes.charityTax = _charityTax;
        sellTaxes.marketingTax = _marketingTax;
        sellTaxes.liquidityTax = _lpTax;
        totalSellFees = _charityTax + _lpTax + _marketingTax;
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(_newAmount > 0, "Lunc : Minimum swap amount must be greater than 0!");
        swapTokensAtAmount = _newAmount;
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true;
    }

    function setDeadBlocks(uint256 _deadBlocks) external onlyOwner{
        require(launchedAtBlock == 0 && launchedAtTime == 0, "Can't change dead blocks after launch!");
        deadBlocks = _deadBlocks;
    }

    function launch() external onlyOwner {
        require(launchedAtBlock == 0 && launchedAtTime == 0, "Already launched!");
        launchedAtBlock = block.number;
        launchedAtTime = block.timestamp;
    }

    function setMaxWallet(uint256 _maxWallet) external onlyOwner{
        maxWallet = _maxWallet;
    }

    function setmaxTx(uint256 _maxTx) external onlyOwner{
        maxTx = _maxTx;
    }

    function setLimitsStatus(bool _limitsStatus) external onlyOwner{
        limitsEnabled = _limitsStatus;
    }

    function setWhitelistStatus(address _wallet, bool _status) external onlyOwner {
        whitelisted[_wallet] = _status;
    }

    function setBlacklisted(address _wallet, bool _status) external onlyOwner{
        blacklisted[_wallet] = _status;
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function checkBlacklisted(address _wallet) external view returns(bool){
        return blacklisted[_wallet];
    }

    function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }
        require(launchedAtBlock > 0, "Token not launched yet!");

        bool isBuy = false;

        //Managing Taxes Here
        uint256 totalTax = 0;
        if (_to == pairAddress) {
            totalTax = totalSellFees;
        } else if (_from == pairAddress) {
            totalTax = totalBuyFees;
            isBuy = true;
        }

        //Validating max amounts at first 2 hours!
        if((launchedAtTime + maxWalletTimeThreshold >= block.timestamp) || limitsEnabled){
            if(isBuy){
                require(balanceOf(_to) + _amount <= maxWallet, "Can not buy more than 0.5% of supply!");
            }
            require(_amount < maxTx, "Can not buy/sell/transfer more than 0.1% of supply!");
        }
        
        //Anti-Bot Implementation
        if(launchedAtBlock + deadBlocks >= block.number){
            if(_to == pairAddress){
                blacklisted[_from] = true;
            }else if(_from == pairAddress){
                blacklisted[_to] = true;
            }
        }

        uint256 tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
        return (_amount - tax);
    }

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        require(_from != address(0), "transfer from address zero");
        require(_to != address(0), "transfer to address zero");
        require(blacklisted[_to] == false && blacklisted[_from] == false, "Transferring not allowed for blacklisted addresses!");
        
        uint256 toTransfer = _takeTax(_from, _to, _amount);
        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
        if (
            swapAndLiquifyEnabled &&
            pairAddress == _to &&
            canSwap &&
            !whitelisted[_from] &&
            !whitelisted[_to] &&
            !isSwapping
        ) {
            isSwapping = true;
            manageTaxes();
            isSwapping = false;
        }
        super._transfer(_from, _to, toTransfer);
    }

    function manageTaxes() internal {
        uint256 taxAmount = balanceOf(address(this));

        //Getting total Fee Percentages And Caclculating Portinos for each tax type
        Tax memory bt = buyTaxes;
        Tax memory st = sellTaxes;
        uint256 totalTaxes = totalBuyFees + totalSellFees;
        if(totalTaxes == 0){
            return;
        }
        
        uint256 totalMarketingTax = bt.marketingTax + st.marketingTax;
        uint256 totalLPTax = bt.liquidityTax + st.liquidityTax;
        uint256 totalCharityTax = bt.charityTax + st.charityTax;
        
        //Calculating portions for each type of tax (marketing, burn, liquidity, rewards)
        uint256 lpPortion = (taxAmount * totalLPTax) / totalTaxes;
        uint256 makretingPortion = (taxAmount * totalMarketingTax) / totalTaxes;
        uint256 charityPortion = (taxAmount * totalCharityTax) / totalTaxes;

        //Add Liquidty taxes to liqudity pool
        if(lpPortion > 0){
            swapAndLiquify(lpPortion);
        }
        
        //sending to marketing wallet
        if(makretingPortion > 0){
            swapToBNB(makretingPortion);
            (bool success, ) = marketingWallet.call{value : address(this).balance}("");
        }

        //sending to charity wallet
        if(charityPortion > 0){
            swapToBNB(charityPortion);
            (bool success, ) = charityWallet.call{value : address(this).balance}("");
        }
    }

    function swapAndLiquify(uint256 _amount) internal {
        uint256 firstHalf = _amount / 2;
        uint256 otherHalf = _amount - firstHalf;
        uint256 initialETHBalance = address(this).balance;

        //Swapping first half to ETH
        swapToBNB(firstHalf);
        uint256 received = address(this).balance - initialETHBalance;
        addLiquidity(otherHalf, received);
    }

    function swapToBNB(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0, // accept any amount of BaseToken
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 bnbAmount) private {
        _approve(address(this), address(uniswapRouter), tokenAmount);
        uniswapRouter.addLiquidityETH{value: bnbAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0),
            block.timestamp
        );
    }

    function updateDexRouter(address _newDex) external onlyOwner {
        uniswapRouter = DexRouter(_newDex);
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
    }

    function withdrawStuckBNB() external onlyOwner {
        (bool success, ) = address(msg.sender).call{value: address(this).balance}("");
        require(success, "transfering BNB failed");
    }

    function withdrawStuckTokens(address erc20_token) external onlyOwner {
        bool success = IERC20(erc20_token).transfer(
            msg.sender,
            IERC20(erc20_token).balanceOf(address(this))
        );
        require(success, "trasfering tokens failed!");
    }

    receive() external payable {}
    
}

File 2 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 3 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 6 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;
    }
}

File 7 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);
}

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":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"charityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxTimeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletTimeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"charityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityTax","type":"uint256"},{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newCharity","type":"address"}],"name":"setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"setDeadBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsStatus","type":"bool"}],"name":"setLimitsStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityTax","type":"uint256"},{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setmaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDex","type":"address"}],"name":"updateDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009600655600654600a6200001a919062000ae3565b633b9aca006200002b919062000b34565b600755604051806060016040528060038152602001600181526020016001815250600a6000820151816000015560208201518160010155604082015181600201555050604051806060016040528060038152602001600181526020016001815250600d600082015181600001556020820151816001015560408201518160020155505060056010556005601155620186a0600754620000cb919062000bc4565b6013556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff02191690831515021790555073235a92b40182cbf9d5cd6ef706754c566af0042c601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073643ecd309e42fd678d03d18538ce4e48a540e92a601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c20601855611c206019556000601a60006101000a81548160ff021916908315150217905550348015620001e257600080fd5b506040518060400160405280600b81526020017f50756d706b696e20496e750000000000000000000000000000000000000000008152506040518060400160405280600781526020017f50554d50494e5500000000000000000000000000000000000000000000000000815250816003908051906020019062000267929190620008a6565b50806004908051906020019062000280929190620008a6565b505050620002a3620002976200065560201b60201c565b6200065d60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036157600080fd5b505afa15801562000376573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039c919062000c66565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200042157600080fd5b505afa15801562000436573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045c919062000c66565b6040518363ffffffff1660e01b81526004016200047b92919062000ca9565b602060405180830381600087803b1580156200049657600080fd5b505af1158015620004ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d1919062000c66565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200064f336007546200072360201b60201c565b62000e49565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000796576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078d9062000d37565b60405180910390fd5b620007aa600083836200089c60201b60201c565b8060026000828254620007be919062000d59565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000815919062000d59565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200087c919062000dc7565b60405180910390a36200089860008383620008a160201b60201c565b5050565b505050565b505050565b828054620008b49062000e13565b90600052602060002090601f016020900481019282620008d8576000855562000924565b82601f10620008f357805160ff191683800117855562000924565b8280016001018555821562000924579182015b828111156200092357825182559160200191906001019062000906565b5b50905062000933919062000937565b5090565b5b808211156200095257600081600090555060010162000938565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009e457808604811115620009bc57620009bb62000956565b5b6001851615620009cc5780820291505b8081029050620009dc8562000985565b94506200099c565b94509492505050565b600082620009ff576001905062000ad2565b8162000a0f576000905062000ad2565b816001811462000a28576002811462000a335762000a69565b600191505062000ad2565b60ff84111562000a485762000a4762000956565b5b8360020a91508482111562000a625762000a6162000956565b5b5062000ad2565b5060208310610133831016604e8410600b841016171562000aa35782820a90508381111562000a9d5762000a9c62000956565b5b62000ad2565b62000ab2848484600162000992565b9250905081840481111562000acc5762000acb62000956565b5b81810290505b9392505050565b6000819050919050565b600062000af08262000ad9565b915062000afd8362000ad9565b925062000b2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009ed565b905092915050565b600062000b418262000ad9565b915062000b4e8362000ad9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b8a5762000b8962000956565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000bd18262000ad9565b915062000bde8362000ad9565b92508262000bf15762000bf062000b95565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c2e8262000c01565b9050919050565b62000c408162000c21565b811462000c4c57600080fd5b50565b60008151905062000c608162000c35565b92915050565b60006020828403121562000c7f5762000c7e62000bfc565b5b600062000c8f8482850162000c4f565b91505092915050565b62000ca38162000c21565b82525050565b600060408201905062000cc0600083018562000c98565b62000ccf602083018462000c98565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d1f601f8362000cd6565b915062000d2c8262000ce7565b602082019050919050565b6000602082019050818103600083015262000d528162000d10565b9050919050565b600062000d668262000ad9565b915062000d738362000ad9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dab5762000daa62000956565b5b828201905092915050565b62000dc18162000ad9565b82525050565b600060208201905062000dde600083018462000db6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e2c57607f821691505b6020821081141562000e435762000e4262000de4565b5b50919050565b6145198062000e596000396000f3fe6080604052600436106103035760003560e01c806375f0a87411610190578063b8863115116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610b6b578063f66895a314610b94578063f8b45b0514610bc1578063fabb0b4f14610bec5761030a565b8063dd62ed3e14610aec578063e2f4560514610b29578063ef586f7114610b545761030a565b8063b8863115146109dc578063b9e9370014610a07578063cb96372814610a32578063d01dd6d214610a5b578063d0a3981414610a84578063dbac26e914610aaf5761030a565b806395d89b4111610149578063a8b0898211610123578063a8b0898214610922578063a9059cbb1461094d578063afa4f3b21461098a578063b0c2b561146109b35761030a565b806395d89b411461088f578063a03b3b4d146108ba578063a457c2d7146108e55761030a565b806375f0a8741461078d578063797de370146107b85780637b208769146107e1578063864701a51461080c5780638da5cb5b146108395780638de890bd146108645761030a565b806332f49ef81161024f5780635d098b3811610208578063715018a6116101e2578063715018a6146106e357806371fb7493146106fa578063735de9f7146107375780637437681e146107625761030a565b80635d098b381461065457806370a082311461067d578063714f75e0146106ba5761030a565b806332f49ef8146105565780633582ad231461058157806339509351146105ac578063484ed334146105e95780634a74bb02146106005780635d0044ca1461062b5761030a565b80630d075d9c116102bc5780631950c218116102965780631950c2181461048857806323b872dd146104c557806330563bd714610502578063313ce5671461052b5761030a565b80630d075d9c1461040b5780630f683e901461043457806318160ddd1461045d5761030a565b806301339c211461030f57806302aac8a21461032657806306fdde0314610351578063095ea7b31461037c5780630a37a3f3146103b95780630c424284146103e25761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c17565b005b34801561033257600080fd5b5061033b610c82565b6040516103489190612f2a565b60405180910390f35b34801561035d57600080fd5b50610366610c88565b6040516103739190612fde565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e919061308f565b610d1a565b6040516103b091906130ea565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613105565b610d3d565b005b3480156103ee57600080fd5b506104096004803603810190610404919061315e565b610da2565b005b34801561041757600080fd5b50610432600480360381019061042d919061319e565b610e05565b005b34801561044057600080fd5b5061045b6004803603810190610456919061319e565b610e4d565b005b34801561046957600080fd5b50610472610e95565b60405161047f9190612f2a565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906131f1565b610e9f565b6040516104bc91906130ea565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e7919061321e565b610ef5565b6040516104f991906130ea565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906131f1565b610f24565b005b34801561053757600080fd5b50610540610fe0565b60405161054d919061328d565b60405180910390f35b34801561056257600080fd5b5061056b610fe9565b6040516105789190612f2a565b60405180910390f35b34801561058d57600080fd5b50610596610fef565b6040516105a391906130ea565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061308f565b611002565b6040516105e091906130ea565b60405180910390f35b3480156105f557600080fd5b506105fe611039565b005b34801561060c57600080fd5b506106156110f0565b60405161062291906130ea565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613105565b611103565b005b34801561066057600080fd5b5061067b600480360381019061067691906131f1565b611115565b005b34801561068957600080fd5b506106a4600480360381019061069f91906131f1565b6111d1565b6040516106b19190612f2a565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906131f1565b611219565b005b3480156106ef57600080fd5b506106f8611470565b005b34801561070657600080fd5b50610721600480360381019061071c91906131f1565b611484565b60405161072e91906130ea565b60405180910390f35b34801561074357600080fd5b5061074c6114da565b6040516107599190613307565b60405180910390f35b34801561076e57600080fd5b50610777611500565b6040516107849190612f2a565b60405180910390f35b34801561079957600080fd5b506107a2611506565b6040516107af9190613331565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061334c565b61152c565b005b3480156107ed57600080fd5b506107f6611551565b6040516108039190613331565b60405180910390f35b34801561081857600080fd5b50610821611577565b60405161083093929190613379565b60405180910390f35b34801561084557600080fd5b5061084e61158f565b60405161085b9190613331565b60405180910390f35b34801561087057600080fd5b506108796115b9565b6040516108869190612f2a565b60405180910390f35b34801561089b57600080fd5b506108a46115bf565b6040516108b19190612fde565b60405180910390f35b3480156108c657600080fd5b506108cf611651565b6040516108dc9190612f2a565b60405180910390f35b3480156108f157600080fd5b5061090c6004803603810190610907919061308f565b611657565b60405161091991906130ea565b60405180910390f35b34801561092e57600080fd5b506109376116ce565b6040516109449190613331565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061308f565b6116f4565b60405161098191906130ea565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190613105565b611717565b005b3480156109bf57600080fd5b506109da60048036038101906109d59190613105565b61176c565b005b3480156109e857600080fd5b506109f161177e565b6040516109fe91906130ea565b60405180910390f35b348015610a1357600080fd5b50610a1c611791565b604051610a299190612f2a565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a5491906131f1565b611797565b005b348015610a6757600080fd5b50610a826004803603810190610a7d919061315e565b6118fc565b005b348015610a9057600080fd5b50610a9961195f565b604051610aa69190612f2a565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad191906131f1565b611965565b604051610ae391906130ea565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e91906133b0565b611985565b604051610b209190612f2a565b60405180910390f35b348015610b3557600080fd5b50610b3e611a0c565b604051610b4b9190612f2a565b60405180910390f35b348015610b6057600080fd5b50610b69611a12565b005b348015610b7757600080fd5b50610b926004803603810190610b8d91906131f1565b611a5a565b005b348015610ba057600080fd5b50610ba9611ade565b604051610bb893929190613379565b60405180910390f35b348015610bcd57600080fd5b50610bd6611af6565b604051610be39190612f2a565b60405180910390f35b348015610bf857600080fd5b50610c01611afc565b604051610c0e9190612f2a565b60405180910390f35b610c1f611b02565b6000601e54148015610c3357506000601d54145b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c699061343c565b60405180910390fd5b43601e8190555042601d81905550565b60195481565b606060038054610c979061348b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc39061348b565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b5050505050905090565b600080610d25611b80565b9050610d32818585611b88565b600191505092915050565b610d45611b02565b6000601e54148015610d5957506000601d54145b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f9061352f565b60405180910390fd5b80601b8190555050565b610daa611b02565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e0d611b02565b82600a6002018190555080600a6000018190555081600a60010181905550808284610e38919061357e565b610e42919061357e565b601081905550505050565b610e55611b02565b82600d6002018190555080600d6000018190555081600d60010181905550808284610e80919061357e565b610e8a919061357e565b601181905550505050565b6000600254905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610f00611b80565b9050610f0d858285611d53565b610f18858585611ddf565b60019150509392505050565b610f2c611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613646565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006009905090565b60185481565b601a60009054906101000a900460ff1681565b60008061100d611b80565b905061102e81858561101f8589611985565b611029919061357e565b611b88565b600191505092915050565b611041611b02565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161106790613697565b60006040518083038185875af1925050503d80600081146110a4576040519150601f19603f3d011682016040523d82523d6000602084013e6110a9565b606091505b50509050806110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906136f8565b60405180910390fd5b50565b601460009054906101000a900460ff1681565b61110b611b02565b8060168190555050565b61111d611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111849061378a565b60405180910390fd5b80601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611221611b02565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ca57600080fd5b505afa1580156112de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130291906137bf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be91906137bf565b6040518363ffffffff1660e01b81526004016113db9291906137ec565b602060405180830381600087803b1580156113f557600080fd5b505af1158015611409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142d91906137bf565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611478611b02565b611482600061215c565b565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611534611b02565b80601a60006101000a81548160ff02191690831515021790555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a8060000154908060010154908060020154905083565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601e5481565b6060600480546115ce9061348b565b80601f01602080910402602001604051908101604052809291908181526020018280546115fa9061348b565b80156116475780601f1061161c57610100808354040283529160200191611647565b820191906000526020600020905b81548152906001019060200180831161162a57829003601f168201915b5050505050905090565b601d5481565b600080611662611b80565b905060006116708286611985565b9050838110156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613887565b60405180910390fd5b6116c28286868403611b88565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806116ff611b80565b905061170c818585611ddf565b600191505092915050565b61171f611b02565b60008111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613919565b60405180910390fd5b8060138190555050565b611774611b02565b8060178190555050565b601460019054906101000a900460ff1681565b60105481565b61179f611b02565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117f79190613331565b60206040518083038186803b15801561180f57600080fd5b505afa158015611823573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611847919061394e565b6040518363ffffffff1660e01b815260040161186492919061397b565b602060405180830381600087803b15801561187e57600080fd5b505af1158015611892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b691906139b9565b9050806118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613a32565b60405180910390fd5b5050565b611904611b02565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b611a1a611b02565b60011515601460009054906101000a900460ff16151514611a3c576001611a3f565b60005b601460006101000a81548160ff021916908315150217905550565b611a62611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613ac4565b60405180910390fd5b611adb8161215c565b50565b600d8060000154908060010154908060020154905083565b60165481565b601b5481565b611b0a611b80565b73ffffffffffffffffffffffffffffffffffffffff16611b2861158f565b73ffffffffffffffffffffffffffffffffffffffff1614611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613b30565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613bc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613c54565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d469190612f2a565b60405180910390a3505050565b6000611d5f8484611985565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dd95781811015611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613cc0565b60405180910390fd5b611dd88484848403611b88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613d2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613d98565b60405180910390fd5b60001515601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611f6f575060001515601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e2a565b60405180910390fd5b6000611fbb848484612222565b90506000601354611fcb306111d1565b10159050601460009054906101000a900460ff16801561203857508373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156120415750805b80156120975750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ed5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601460019054906101000a900460ff16155b1561214a576001601460016101000a81548160ff02191690831515021790555061212e612668565b6000601460016101000a81548160ff0219169083151502179055505b6121558585846128f6565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d257819050612661565b6000601e5411612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613e96565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561237a5760115490506123db565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156123da576010549050600191505b5b42601854601d546123ec919061357e565b1015806124055750601a60009054906101000a900460ff165b156124ae578115612469576016548461241d876111d1565b612427919061357e565b1115612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90613f28565b60405180910390fd5b5b60175484106124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613fba565b60405180910390fd5b5b43601b54601e546124bf919061357e565b1061262857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612577576001601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612627565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612626576001601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b6000606482866126389190613fda565b6126429190614063565b905061264f8730836128f6565b808561265b9190614094565b93505050505b9392505050565b6000612673306111d1565b90506000600a604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000600d6040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006011546010546126e5919061357e565b905060008114156126f957505050506128f4565b60008260000151846000015161270f919061357e565b9050600083602001518560200151612727919061357e565b905060008460400151866040015161273f919061357e565b905060008483896127509190613fda565b61275a9190614063565b9050600085858a61276b9190613fda565b6127759190614063565b9050600086848b6127869190613fda565b6127909190614063565b905060008311156127a5576127a483612b77565b5b6000821115612847576127b782612bc7565b6000601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516127ff90613697565b60006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b50509050505b60008111156128e95761285981612bc7565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516128a190613697565b60006040518083038185875af1925050503d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50509050505b505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d9061413a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906141cc565b60405180910390fd5b6129e1838383612e19565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e9061425e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612afa919061357e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b5e9190612f2a565b60405180910390a3612b71848484612e1e565b50505050565b6000600282612b869190614063565b905060008183612b969190614094565b90506000479050612ba683612bc7565b60008147612bb49190614094565b9050612bc08382612e23565b5050505050565b6000600267ffffffffffffffff811115612be457612be361427e565b5b604051908082528060200260200182016040528015612c125781602001602082028036833780820191505090505b5090503081600081518110612c2a57612c296142ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612ccc57600080fd5b505afa158015612ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d0491906137bf565b81600181518110612d1857612d176142ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d7f30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612de39594939291906143d5565b600060405180830381600087803b158015612dfd57600080fd5b505af1158015612e11573d6000803e3d6000fd5b505050505050565b505050565b505050565b612e5030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b8152600401612eb89695949392919061442f565b6060604051808303818588803b158015612ed157600080fd5b505af1158015612ee5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f0a9190614490565b5050505050565b6000819050919050565b612f2481612f11565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f7f578082015181840152602081019050612f64565b83811115612f8e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fb082612f45565b612fba8185612f50565b9350612fca818560208601612f61565b612fd381612f94565b840191505092915050565b60006020820190508181036000830152612ff88184612fa5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061303082613005565b9050919050565b61304081613025565b811461304b57600080fd5b50565b60008135905061305d81613037565b92915050565b61306c81612f11565b811461307757600080fd5b50565b60008135905061308981613063565b92915050565b600080604083850312156130a6576130a5613000565b5b60006130b48582860161304e565b92505060206130c58582860161307a565b9150509250929050565b60008115159050919050565b6130e4816130cf565b82525050565b60006020820190506130ff60008301846130db565b92915050565b60006020828403121561311b5761311a613000565b5b60006131298482850161307a565b91505092915050565b61313b816130cf565b811461314657600080fd5b50565b60008135905061315881613132565b92915050565b6000806040838503121561317557613174613000565b5b60006131838582860161304e565b925050602061319485828601613149565b9150509250929050565b6000806000606084860312156131b7576131b6613000565b5b60006131c58682870161307a565b93505060206131d68682870161307a565b92505060406131e78682870161307a565b9150509250925092565b60006020828403121561320757613206613000565b5b60006132158482850161304e565b91505092915050565b60008060006060848603121561323757613236613000565b5b60006132458682870161304e565b93505060206132568682870161304e565b92505060406132678682870161307a565b9150509250925092565b600060ff82169050919050565b61328781613271565b82525050565b60006020820190506132a2600083018461327e565b92915050565b6000819050919050565b60006132cd6132c86132c384613005565b6132a8565b613005565b9050919050565b60006132df826132b2565b9050919050565b60006132f1826132d4565b9050919050565b613301816132e6565b82525050565b600060208201905061331c60008301846132f8565b92915050565b61332b81613025565b82525050565b60006020820190506133466000830184613322565b92915050565b60006020828403121561336257613361613000565b5b600061337084828501613149565b91505092915050565b600060608201905061338e6000830186612f1b565b61339b6020830185612f1b565b6133a86040830184612f1b565b949350505050565b600080604083850312156133c7576133c6613000565b5b60006133d58582860161304e565b92505060206133e68582860161304e565b9150509250929050565b7f416c7265616479206c61756e6368656421000000000000000000000000000000600082015250565b6000613426601183612f50565b9150613431826133f0565b602082019050919050565b6000602082019050818103600083015261345581613419565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134a357607f821691505b602082108114156134b7576134b661345c565b5b50919050565b7f43616e2774206368616e6765206465616420626c6f636b73206166746572206c60008201527f61756e6368210000000000000000000000000000000000000000000000000000602082015250565b6000613519602683612f50565b9150613524826134bd565b604082019050919050565b600060208201905081810360008301526135488161350c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358982612f11565b915061359483612f11565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c9576135c861354f565b5b828201905092915050565b7f6e657720436861726974792077616c6c65742063616e206e6f7420626520646560008201527f6164206164647265737321000000000000000000000000000000000000000000602082015250565b6000613630602b83612f50565b915061363b826135d4565b604082019050919050565b6000602082019050818103600083015261365f81613623565b9050919050565b600081905092915050565b50565b6000613681600083613666565b915061368c82613671565b600082019050919050565b60006136a282613674565b9150819050919050565b7f7472616e73666572696e6720424e42206661696c656400000000000000000000600082015250565b60006136e2601683612f50565b91506136ed826136ac565b602082019050919050565b60006020820190508181036000830152613711816136d5565b9050919050565b7f6e6577204d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b6000613774602d83612f50565b915061377f82613718565b604082019050919050565b600060208201905081810360008301526137a381613767565b9050919050565b6000815190506137b981613037565b92915050565b6000602082840312156137d5576137d4613000565b5b60006137e3848285016137aa565b91505092915050565b60006040820190506138016000830185613322565b61380e6020830184613322565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613871602583612f50565b915061387c82613815565b604082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f4c756e63203a204d696e696d756d207377617020616d6f756e74206d7573742060008201527f62652067726561746572207468616e2030210000000000000000000000000000602082015250565b6000613903603283612f50565b915061390e826138a7565b604082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b60008151905061394881613063565b92915050565b60006020828403121561396457613963613000565b5b600061397284828501613939565b91505092915050565b60006040820190506139906000830185613322565b61399d6020830184612f1b565b9392505050565b6000815190506139b381613132565b92915050565b6000602082840312156139cf576139ce613000565b5b60006139dd848285016139a4565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000613a1c601983612f50565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aae602683612f50565b9150613ab982613a52565b604082019050919050565b60006020820190508181036000830152613add81613aa1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1a602083612f50565b9150613b2582613ae4565b602082019050919050565b60006020820190508181036000830152613b4981613b0d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bac602483612f50565b9150613bb782613b50565b604082019050919050565b60006020820190508181036000830152613bdb81613b9f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3e602283612f50565b9150613c4982613be2565b604082019050919050565b60006020820190508181036000830152613c6d81613c31565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613caa601d83612f50565b9150613cb582613c74565b602082019050919050565b60006020820190508181036000830152613cd981613c9d565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613d16601a83612f50565b9150613d2182613ce0565b602082019050919050565b60006020820190508181036000830152613d4581613d09565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613d82601883612f50565b9150613d8d82613d4c565b602082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f5472616e7366657272696e67206e6f7420616c6c6f77656420666f7220626c6160008201527f636b6c6973746564206164647265737365732100000000000000000000000000602082015250565b6000613e14603383612f50565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b7f546f6b656e206e6f74206c61756e636865642079657421000000000000000000600082015250565b6000613e80601783612f50565b9150613e8b82613e4a565b602082019050919050565b60006020820190508181036000830152613eaf81613e73565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e20302e3525206f6620737560008201527f70706c7921000000000000000000000000000000000000000000000000000000602082015250565b6000613f12602583612f50565b9150613f1d82613eb6565b604082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b7f43616e206e6f74206275792f73656c6c2f7472616e73666572206d6f7265207460008201527f68616e20302e3125206f6620737570706c792100000000000000000000000000602082015250565b6000613fa4603383612f50565b9150613faf82613f48565b604082019050919050565b60006020820190508181036000830152613fd381613f97565b9050919050565b6000613fe582612f11565b9150613ff083612f11565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140295761402861354f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406e82612f11565b915061407983612f11565b92508261408957614088614034565b5b828204905092915050565b600061409f82612f11565b91506140aa83612f11565b9250828210156140bd576140bc61354f565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614124602583612f50565b915061412f826140c8565b604082019050919050565b6000602082019050818103600083015261415381614117565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141b6602383612f50565b91506141c18261415a565b604082019050919050565b600060208201905081810360008301526141e5816141a9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614248602683612f50565b9150614253826141ec565b604082019050919050565b600060208201905081810360008301526142778161423b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006143016142fc6142f7846142dc565b6132a8565b612f11565b9050919050565b614311816142e6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61434c81613025565b82525050565b600061435e8383614343565b60208301905092915050565b6000602082019050919050565b600061438282614317565b61438c8185614322565b935061439783614333565b8060005b838110156143c85781516143af8882614352565b97506143ba8361436a565b92505060018101905061439b565b5085935050505092915050565b600060a0820190506143ea6000830188612f1b565b6143f76020830187614308565b81810360408301526144098186614377565b90506144186060830185613322565b6144256080830184612f1b565b9695505050505050565b600060c0820190506144446000830189613322565b6144516020830188612f1b565b61445e6040830187614308565b61446b6060830186614308565b6144786080830185613322565b61448560a0830184612f1b565b979650505050505050565b6000806000606084860312156144a9576144a8613000565b5b60006144b786828701613939565b93505060206144c886828701613939565b92505060406144d986828701613939565b915050925092509256fea2646970667358221220f91b1eaad9504725aa1c2e9f90cb19d6c3144a826762e13a9eea3889e7c4d01164736f6c63430008080033

Deployed Bytecode

0x6080604052600436106103035760003560e01c806375f0a87411610190578063b8863115116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610b6b578063f66895a314610b94578063f8b45b0514610bc1578063fabb0b4f14610bec5761030a565b8063dd62ed3e14610aec578063e2f4560514610b29578063ef586f7114610b545761030a565b8063b8863115146109dc578063b9e9370014610a07578063cb96372814610a32578063d01dd6d214610a5b578063d0a3981414610a84578063dbac26e914610aaf5761030a565b806395d89b4111610149578063a8b0898211610123578063a8b0898214610922578063a9059cbb1461094d578063afa4f3b21461098a578063b0c2b561146109b35761030a565b806395d89b411461088f578063a03b3b4d146108ba578063a457c2d7146108e55761030a565b806375f0a8741461078d578063797de370146107b85780637b208769146107e1578063864701a51461080c5780638da5cb5b146108395780638de890bd146108645761030a565b806332f49ef81161024f5780635d098b3811610208578063715018a6116101e2578063715018a6146106e357806371fb7493146106fa578063735de9f7146107375780637437681e146107625761030a565b80635d098b381461065457806370a082311461067d578063714f75e0146106ba5761030a565b806332f49ef8146105565780633582ad231461058157806339509351146105ac578063484ed334146105e95780634a74bb02146106005780635d0044ca1461062b5761030a565b80630d075d9c116102bc5780631950c218116102965780631950c2181461048857806323b872dd146104c557806330563bd714610502578063313ce5671461052b5761030a565b80630d075d9c1461040b5780630f683e901461043457806318160ddd1461045d5761030a565b806301339c211461030f57806302aac8a21461032657806306fdde0314610351578063095ea7b31461037c5780630a37a3f3146103b95780630c424284146103e25761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c17565b005b34801561033257600080fd5b5061033b610c82565b6040516103489190612f2a565b60405180910390f35b34801561035d57600080fd5b50610366610c88565b6040516103739190612fde565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e919061308f565b610d1a565b6040516103b091906130ea565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613105565b610d3d565b005b3480156103ee57600080fd5b506104096004803603810190610404919061315e565b610da2565b005b34801561041757600080fd5b50610432600480360381019061042d919061319e565b610e05565b005b34801561044057600080fd5b5061045b6004803603810190610456919061319e565b610e4d565b005b34801561046957600080fd5b50610472610e95565b60405161047f9190612f2a565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906131f1565b610e9f565b6040516104bc91906130ea565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e7919061321e565b610ef5565b6040516104f991906130ea565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906131f1565b610f24565b005b34801561053757600080fd5b50610540610fe0565b60405161054d919061328d565b60405180910390f35b34801561056257600080fd5b5061056b610fe9565b6040516105789190612f2a565b60405180910390f35b34801561058d57600080fd5b50610596610fef565b6040516105a391906130ea565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061308f565b611002565b6040516105e091906130ea565b60405180910390f35b3480156105f557600080fd5b506105fe611039565b005b34801561060c57600080fd5b506106156110f0565b60405161062291906130ea565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613105565b611103565b005b34801561066057600080fd5b5061067b600480360381019061067691906131f1565b611115565b005b34801561068957600080fd5b506106a4600480360381019061069f91906131f1565b6111d1565b6040516106b19190612f2a565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906131f1565b611219565b005b3480156106ef57600080fd5b506106f8611470565b005b34801561070657600080fd5b50610721600480360381019061071c91906131f1565b611484565b60405161072e91906130ea565b60405180910390f35b34801561074357600080fd5b5061074c6114da565b6040516107599190613307565b60405180910390f35b34801561076e57600080fd5b50610777611500565b6040516107849190612f2a565b60405180910390f35b34801561079957600080fd5b506107a2611506565b6040516107af9190613331565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061334c565b61152c565b005b3480156107ed57600080fd5b506107f6611551565b6040516108039190613331565b60405180910390f35b34801561081857600080fd5b50610821611577565b60405161083093929190613379565b60405180910390f35b34801561084557600080fd5b5061084e61158f565b60405161085b9190613331565b60405180910390f35b34801561087057600080fd5b506108796115b9565b6040516108869190612f2a565b60405180910390f35b34801561089b57600080fd5b506108a46115bf565b6040516108b19190612fde565b60405180910390f35b3480156108c657600080fd5b506108cf611651565b6040516108dc9190612f2a565b60405180910390f35b3480156108f157600080fd5b5061090c6004803603810190610907919061308f565b611657565b60405161091991906130ea565b60405180910390f35b34801561092e57600080fd5b506109376116ce565b6040516109449190613331565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061308f565b6116f4565b60405161098191906130ea565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190613105565b611717565b005b3480156109bf57600080fd5b506109da60048036038101906109d59190613105565b61176c565b005b3480156109e857600080fd5b506109f161177e565b6040516109fe91906130ea565b60405180910390f35b348015610a1357600080fd5b50610a1c611791565b604051610a299190612f2a565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a5491906131f1565b611797565b005b348015610a6757600080fd5b50610a826004803603810190610a7d919061315e565b6118fc565b005b348015610a9057600080fd5b50610a9961195f565b604051610aa69190612f2a565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad191906131f1565b611965565b604051610ae391906130ea565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e91906133b0565b611985565b604051610b209190612f2a565b60405180910390f35b348015610b3557600080fd5b50610b3e611a0c565b604051610b4b9190612f2a565b60405180910390f35b348015610b6057600080fd5b50610b69611a12565b005b348015610b7757600080fd5b50610b926004803603810190610b8d91906131f1565b611a5a565b005b348015610ba057600080fd5b50610ba9611ade565b604051610bb893929190613379565b60405180910390f35b348015610bcd57600080fd5b50610bd6611af6565b604051610be39190612f2a565b60405180910390f35b348015610bf857600080fd5b50610c01611afc565b604051610c0e9190612f2a565b60405180910390f35b610c1f611b02565b6000601e54148015610c3357506000601d54145b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c699061343c565b60405180910390fd5b43601e8190555042601d81905550565b60195481565b606060038054610c979061348b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc39061348b565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b5050505050905090565b600080610d25611b80565b9050610d32818585611b88565b600191505092915050565b610d45611b02565b6000601e54148015610d5957506000601d54145b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f9061352f565b60405180910390fd5b80601b8190555050565b610daa611b02565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e0d611b02565b82600a6002018190555080600a6000018190555081600a60010181905550808284610e38919061357e565b610e42919061357e565b601081905550505050565b610e55611b02565b82600d6002018190555080600d6000018190555081600d60010181905550808284610e80919061357e565b610e8a919061357e565b601181905550505050565b6000600254905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610f00611b80565b9050610f0d858285611d53565b610f18858585611ddf565b60019150509392505050565b610f2c611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613646565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006009905090565b60185481565b601a60009054906101000a900460ff1681565b60008061100d611b80565b905061102e81858561101f8589611985565b611029919061357e565b611b88565b600191505092915050565b611041611b02565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161106790613697565b60006040518083038185875af1925050503d80600081146110a4576040519150601f19603f3d011682016040523d82523d6000602084013e6110a9565b606091505b50509050806110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906136f8565b60405180910390fd5b50565b601460009054906101000a900460ff1681565b61110b611b02565b8060168190555050565b61111d611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111849061378a565b60405180910390fd5b80601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611221611b02565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ca57600080fd5b505afa1580156112de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130291906137bf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be91906137bf565b6040518363ffffffff1660e01b81526004016113db9291906137ec565b602060405180830381600087803b1580156113f557600080fd5b505af1158015611409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142d91906137bf565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611478611b02565b611482600061215c565b565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611534611b02565b80601a60006101000a81548160ff02191690831515021790555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a8060000154908060010154908060020154905083565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601e5481565b6060600480546115ce9061348b565b80601f01602080910402602001604051908101604052809291908181526020018280546115fa9061348b565b80156116475780601f1061161c57610100808354040283529160200191611647565b820191906000526020600020905b81548152906001019060200180831161162a57829003601f168201915b5050505050905090565b601d5481565b600080611662611b80565b905060006116708286611985565b9050838110156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613887565b60405180910390fd5b6116c28286868403611b88565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806116ff611b80565b905061170c818585611ddf565b600191505092915050565b61171f611b02565b60008111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613919565b60405180910390fd5b8060138190555050565b611774611b02565b8060178190555050565b601460019054906101000a900460ff1681565b60105481565b61179f611b02565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117f79190613331565b60206040518083038186803b15801561180f57600080fd5b505afa158015611823573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611847919061394e565b6040518363ffffffff1660e01b815260040161186492919061397b565b602060405180830381600087803b15801561187e57600080fd5b505af1158015611892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b691906139b9565b9050806118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613a32565b60405180910390fd5b5050565b611904611b02565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b611a1a611b02565b60011515601460009054906101000a900460ff16151514611a3c576001611a3f565b60005b601460006101000a81548160ff021916908315150217905550565b611a62611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613ac4565b60405180910390fd5b611adb8161215c565b50565b600d8060000154908060010154908060020154905083565b60165481565b601b5481565b611b0a611b80565b73ffffffffffffffffffffffffffffffffffffffff16611b2861158f565b73ffffffffffffffffffffffffffffffffffffffff1614611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613b30565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613bc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613c54565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d469190612f2a565b60405180910390a3505050565b6000611d5f8484611985565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dd95781811015611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613cc0565b60405180910390fd5b611dd88484848403611b88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613d2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613d98565b60405180910390fd5b60001515601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611f6f575060001515601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e2a565b60405180910390fd5b6000611fbb848484612222565b90506000601354611fcb306111d1565b10159050601460009054906101000a900460ff16801561203857508373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156120415750805b80156120975750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ed5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601460019054906101000a900460ff16155b1561214a576001601460016101000a81548160ff02191690831515021790555061212e612668565b6000601460016101000a81548160ff0219169083151502179055505b6121558585846128f6565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d257819050612661565b6000601e5411612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613e96565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561237a5760115490506123db565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156123da576010549050600191505b5b42601854601d546123ec919061357e565b1015806124055750601a60009054906101000a900460ff165b156124ae578115612469576016548461241d876111d1565b612427919061357e565b1115612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90613f28565b60405180910390fd5b5b60175484106124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613fba565b60405180910390fd5b5b43601b54601e546124bf919061357e565b1061262857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612577576001601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612627565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612626576001601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b6000606482866126389190613fda565b6126429190614063565b905061264f8730836128f6565b808561265b9190614094565b93505050505b9392505050565b6000612673306111d1565b90506000600a604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000600d6040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006011546010546126e5919061357e565b905060008114156126f957505050506128f4565b60008260000151846000015161270f919061357e565b9050600083602001518560200151612727919061357e565b905060008460400151866040015161273f919061357e565b905060008483896127509190613fda565b61275a9190614063565b9050600085858a61276b9190613fda565b6127759190614063565b9050600086848b6127869190613fda565b6127909190614063565b905060008311156127a5576127a483612b77565b5b6000821115612847576127b782612bc7565b6000601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516127ff90613697565b60006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b50509050505b60008111156128e95761285981612bc7565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516128a190613697565b60006040518083038185875af1925050503d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50509050505b505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d9061413a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906141cc565b60405180910390fd5b6129e1838383612e19565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e9061425e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612afa919061357e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b5e9190612f2a565b60405180910390a3612b71848484612e1e565b50505050565b6000600282612b869190614063565b905060008183612b969190614094565b90506000479050612ba683612bc7565b60008147612bb49190614094565b9050612bc08382612e23565b5050505050565b6000600267ffffffffffffffff811115612be457612be361427e565b5b604051908082528060200260200182016040528015612c125781602001602082028036833780820191505090505b5090503081600081518110612c2a57612c296142ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612ccc57600080fd5b505afa158015612ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d0491906137bf565b81600181518110612d1857612d176142ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d7f30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612de39594939291906143d5565b600060405180830381600087803b158015612dfd57600080fd5b505af1158015612e11573d6000803e3d6000fd5b505050505050565b505050565b505050565b612e5030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b8152600401612eb89695949392919061442f565b6060604051808303818588803b158015612ed157600080fd5b505af1158015612ee5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f0a9190614490565b5050505050565b6000819050919050565b612f2481612f11565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f7f578082015181840152602081019050612f64565b83811115612f8e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fb082612f45565b612fba8185612f50565b9350612fca818560208601612f61565b612fd381612f94565b840191505092915050565b60006020820190508181036000830152612ff88184612fa5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061303082613005565b9050919050565b61304081613025565b811461304b57600080fd5b50565b60008135905061305d81613037565b92915050565b61306c81612f11565b811461307757600080fd5b50565b60008135905061308981613063565b92915050565b600080604083850312156130a6576130a5613000565b5b60006130b48582860161304e565b92505060206130c58582860161307a565b9150509250929050565b60008115159050919050565b6130e4816130cf565b82525050565b60006020820190506130ff60008301846130db565b92915050565b60006020828403121561311b5761311a613000565b5b60006131298482850161307a565b91505092915050565b61313b816130cf565b811461314657600080fd5b50565b60008135905061315881613132565b92915050565b6000806040838503121561317557613174613000565b5b60006131838582860161304e565b925050602061319485828601613149565b9150509250929050565b6000806000606084860312156131b7576131b6613000565b5b60006131c58682870161307a565b93505060206131d68682870161307a565b92505060406131e78682870161307a565b9150509250925092565b60006020828403121561320757613206613000565b5b60006132158482850161304e565b91505092915050565b60008060006060848603121561323757613236613000565b5b60006132458682870161304e565b93505060206132568682870161304e565b92505060406132678682870161307a565b9150509250925092565b600060ff82169050919050565b61328781613271565b82525050565b60006020820190506132a2600083018461327e565b92915050565b6000819050919050565b60006132cd6132c86132c384613005565b6132a8565b613005565b9050919050565b60006132df826132b2565b9050919050565b60006132f1826132d4565b9050919050565b613301816132e6565b82525050565b600060208201905061331c60008301846132f8565b92915050565b61332b81613025565b82525050565b60006020820190506133466000830184613322565b92915050565b60006020828403121561336257613361613000565b5b600061337084828501613149565b91505092915050565b600060608201905061338e6000830186612f1b565b61339b6020830185612f1b565b6133a86040830184612f1b565b949350505050565b600080604083850312156133c7576133c6613000565b5b60006133d58582860161304e565b92505060206133e68582860161304e565b9150509250929050565b7f416c7265616479206c61756e6368656421000000000000000000000000000000600082015250565b6000613426601183612f50565b9150613431826133f0565b602082019050919050565b6000602082019050818103600083015261345581613419565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134a357607f821691505b602082108114156134b7576134b661345c565b5b50919050565b7f43616e2774206368616e6765206465616420626c6f636b73206166746572206c60008201527f61756e6368210000000000000000000000000000000000000000000000000000602082015250565b6000613519602683612f50565b9150613524826134bd565b604082019050919050565b600060208201905081810360008301526135488161350c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358982612f11565b915061359483612f11565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c9576135c861354f565b5b828201905092915050565b7f6e657720436861726974792077616c6c65742063616e206e6f7420626520646560008201527f6164206164647265737321000000000000000000000000000000000000000000602082015250565b6000613630602b83612f50565b915061363b826135d4565b604082019050919050565b6000602082019050818103600083015261365f81613623565b9050919050565b600081905092915050565b50565b6000613681600083613666565b915061368c82613671565b600082019050919050565b60006136a282613674565b9150819050919050565b7f7472616e73666572696e6720424e42206661696c656400000000000000000000600082015250565b60006136e2601683612f50565b91506136ed826136ac565b602082019050919050565b60006020820190508181036000830152613711816136d5565b9050919050565b7f6e6577204d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b6000613774602d83612f50565b915061377f82613718565b604082019050919050565b600060208201905081810360008301526137a381613767565b9050919050565b6000815190506137b981613037565b92915050565b6000602082840312156137d5576137d4613000565b5b60006137e3848285016137aa565b91505092915050565b60006040820190506138016000830185613322565b61380e6020830184613322565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613871602583612f50565b915061387c82613815565b604082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f4c756e63203a204d696e696d756d207377617020616d6f756e74206d7573742060008201527f62652067726561746572207468616e2030210000000000000000000000000000602082015250565b6000613903603283612f50565b915061390e826138a7565b604082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b60008151905061394881613063565b92915050565b60006020828403121561396457613963613000565b5b600061397284828501613939565b91505092915050565b60006040820190506139906000830185613322565b61399d6020830184612f1b565b9392505050565b6000815190506139b381613132565b92915050565b6000602082840312156139cf576139ce613000565b5b60006139dd848285016139a4565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000613a1c601983612f50565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aae602683612f50565b9150613ab982613a52565b604082019050919050565b60006020820190508181036000830152613add81613aa1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1a602083612f50565b9150613b2582613ae4565b602082019050919050565b60006020820190508181036000830152613b4981613b0d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bac602483612f50565b9150613bb782613b50565b604082019050919050565b60006020820190508181036000830152613bdb81613b9f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3e602283612f50565b9150613c4982613be2565b604082019050919050565b60006020820190508181036000830152613c6d81613c31565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613caa601d83612f50565b9150613cb582613c74565b602082019050919050565b60006020820190508181036000830152613cd981613c9d565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613d16601a83612f50565b9150613d2182613ce0565b602082019050919050565b60006020820190508181036000830152613d4581613d09565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613d82601883612f50565b9150613d8d82613d4c565b602082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f5472616e7366657272696e67206e6f7420616c6c6f77656420666f7220626c6160008201527f636b6c6973746564206164647265737365732100000000000000000000000000602082015250565b6000613e14603383612f50565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b7f546f6b656e206e6f74206c61756e636865642079657421000000000000000000600082015250565b6000613e80601783612f50565b9150613e8b82613e4a565b602082019050919050565b60006020820190508181036000830152613eaf81613e73565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e20302e3525206f6620737560008201527f70706c7921000000000000000000000000000000000000000000000000000000602082015250565b6000613f12602583612f50565b9150613f1d82613eb6565b604082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b7f43616e206e6f74206275792f73656c6c2f7472616e73666572206d6f7265207460008201527f68616e20302e3125206f6620737570706c792100000000000000000000000000602082015250565b6000613fa4603383612f50565b9150613faf82613f48565b604082019050919050565b60006020820190508181036000830152613fd381613f97565b9050919050565b6000613fe582612f11565b9150613ff083612f11565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140295761402861354f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406e82612f11565b915061407983612f11565b92508261408957614088614034565b5b828204905092915050565b600061409f82612f11565b91506140aa83612f11565b9250828210156140bd576140bc61354f565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614124602583612f50565b915061412f826140c8565b604082019050919050565b6000602082019050818103600083015261415381614117565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141b6602383612f50565b91506141c18261415a565b604082019050919050565b600060208201905081810360008301526141e5816141a9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614248602683612f50565b9150614253826141ec565b604082019050919050565b600060208201905081810360008301526142778161423b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006143016142fc6142f7846142dc565b6132a8565b612f11565b9050919050565b614311816142e6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61434c81613025565b82525050565b600061435e8383614343565b60208301905092915050565b6000602082019050919050565b600061438282614317565b61438c8185614322565b935061439783614333565b8060005b838110156143c85781516143af8882614352565b97506143ba8361436a565b92505060018101905061439b565b5085935050505092915050565b600060a0820190506143ea6000830188612f1b565b6143f76020830187614308565b81810360408301526144098186614377565b90506144186060830185613322565b6144256080830184612f1b565b9695505050505050565b600060c0820190506144446000830189613322565b6144516020830188612f1b565b61445e6040830187614308565b61446b6060830186614308565b6144786080830185613322565b61448560a0830184612f1b565b979650505050505050565b6000806000606084860312156144a9576144a8613000565b5b60006144b786828701613939565b93505060206144c886828701613939565b92505060406144d986828701613939565b915050925092509256fea2646970667358221220f91b1eaad9504725aa1c2e9f90cb19d6c3144a826762e13a9eea3889e7c4d01164736f6c63430008080033

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.