ETH Price: $3,386.99 (-2.70%)
Gas: 1 Gwei

Token

Fottie (Fottie)
 

Overview

Max Total Supply

10,000,000,000 Fottie

Holders

143

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.904813002098801973 Fottie

Value
$0.00
0xcea1c8482094d49a4c6aef1f5b504b3ccfbfb2ac
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:
Fottie

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Fottie.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;

/*                                                                                           
 ________     ,-----.  ,---------. ,---------. .-./`)     .-''-.   
|        |  .'  .-,  '.\          \\          \\ .-.')  .'_ _   \  
|   .----' / ,-.|  \ _ \`--.  ,---' `--.  ,---'/ `-' \ / ( ` )   ' 
|  _|____ ;  \  '_ /  | :  |   \       |   \    `-'`"`. (_ o _)  | 
|_( )_   ||  _`,/ \ _/  |  :_ _:       :_ _:    .---. |  (_,_)___| 
(_ o._)__|: (  '\_/ \   ;  (_I_)       (_I_)    |   | '  \   .---. 
|(_,_)     \ `"/  \  ) /  (_(=)_)     (_(=)_)   |   |  \  `-'    / 
|   |       '. \_/``".'    (_I_)       (_I_)    |   |   \       /  
'---'         '-----'      '---'       '---'    '---'    `'-..-'   
                                                                  
Website: https://www.fottieerc.xyz/
Twitter: https://twitter.com/FottieERC
Telegram: http://t.me/Fottie_Portal
*/

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract Fottie is ERC20("Fottie", "Fottie"), Ownable {

    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address public immutable UNISWAP_V2_PAIR;

    uint256 constant TOTAL_SUPPLY = 10_000_000_000 ether;
    uint256 public tradingOpenedOnBlock;

    bool private swapping;

    address public fottieWallet;
    address public fottieMarketingWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public fetchFees = true;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public tokenSwapThreshold;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public taxedTokens;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedFottieWallet(address indexed newWallet);
    event UpdatedFottieMarketingWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuyAmount = (totalSupply() * 20) / 1_000; // 2% max buy
        maxSellAmount = (totalSupply() * 20) / 1_000; // 2% max sell
        maxWalletAmount = (totalSupply() * 20) / 1_000; // 2% max holdings
        tokenSwapThreshold = (totalSupply() * 50) / 10_000; // 0.5% swapToEth threshold 

        fottieWallet = msg.sender;
        fottieMarketingWallet = 0x0A29A5FC6b92FBf93ACCF8543B064fECa10C5Ea2;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}


    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "FOTTIE ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "FOTTIE ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "FOTTIE ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "FOTTIE ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }


    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }




    function openTrading() public onlyOwner {
        require(tradingOpenedOnBlock == 0, "FOTTIE ERROR: Token state is already live !");
        tradingOpenedOnBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }


    function setFottieWallet(address _fottieWallet) external onlyOwner {
        require(_fottieWallet != address(0), "FOTTIE ERROR: _fottieWallet address cannot be 0");
        fottieWallet = payable(_fottieWallet);
        emit UpdatedFottieWallet(_fottieWallet);
    }

    function setFottieMarketingWallet(address _fottieMarketingWallet) external onlyOwner {
        require(_fottieMarketingWallet != address(0), "FOTTIE ERROR: _fottieMarketingWallet address cannot be 0");
        fottieMarketingWallet = payable(_fottieMarketingWallet);
        emit UpdatedFottieMarketingWallet(_fottieMarketingWallet);
    }

    function getFees() internal {
        require(
            tradingOpenedOnBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = tradingOpenedOnBlock + 5;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 30;
            sellTotalFees = 30;
        } else {
            buyTotalFees = 1;
            sellTotalFees = 1;
            fetchFees = false;
        } 
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] ||
                            _isExcludedMaxTransactionAmount[to],
                        "FOTTIE ERROR: Trading is not active."
                    );
                    require(from == owner(), "FOTTIE ERROR: Trading is enabled");
                }

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "FOTTIE ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "FOTTIE ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "FOTTIE ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "FOTTIE ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = true;
    
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
    

        if (takeFee) {

            if(fetchFees){
               getFees(); 
            }

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }


    function swapTokensForEth(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER.WETH();

        // make the swap
        UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {

        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  taxedTokens;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }

        bool success;
    
        swapTokensForEth(contractBalance);

        (success, ) = address(fottieMarketingWallet).call{value: address(this).balance}("");
    }



    function withdrawStuckToken(address _token) external {
        require(
            msg.sender == owner() || msg.sender == fottieWallet,
            "FOTTIE ERROR: Not authorized"
        );
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        ERC20 erc20token = ERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }


    function withdrawStuckEth() external onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "FOTTIE ERROR: failed to withdraw funds");
    }
    


}

File 2 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 3 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 9 : 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 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 6 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 7 of 9 : 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 8 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedFottieMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedFottieWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fottieMarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fottieWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_fottieMarketingWallet","type":"address"}],"name":"setFottieMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fottieWallet","type":"address"}],"name":"setFottieWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","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":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600860146101000a81548160ff0219169083151502179055505f600860156101000a81548160ff0219169083151502179055505f600860166101000a81548160ff0219169083151502179055506001600860176101000a81548160ff0219169083151502179055503480156200007a575f80fd5b506040518060400160405280600681526020017f466f7474696500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f466f7474696500000000000000000000000000000000000000000000000000008152508160039081620000f8919062000d36565b5080600490816200010a919062000d36565b5050506200012d62000121620004c160201b60201c565b620004c860201b60201c565b6200014b336b204fce5e3e250261100000006200058b60201b60201c565b6200017330737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620006f060201b60201c565b6200019a737a250d5630b4cf539739df2c5dacb4c659f2488d6001620008bb60201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000229573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200024f919062000e7f565b6040518363ffffffff1660e01b81526004016200026e92919062000ec0565b6020604051808303815f875af11580156200028b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e7f565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e86014620002f96200094e60201b60201c565b62000305919062000f18565b62000311919062000f8f565b6009819055506103e860146200032c6200094e60201b60201c565b62000338919062000f18565b62000344919062000f8f565b600a819055506103e860146200035f6200094e60201b60201c565b6200036b919062000f18565b62000377919062000f8f565b600b819055506127106032620003926200094e60201b60201c565b6200039e919062000f18565b620003aa919062000f8f565b600c8190555033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730a29a5fc6b92fbf93accf8543b064feca10c5ea260085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000458336001620008bb60201b60201c565b6200046b306001620008bb60201b60201c565b6200048061dead6001620008bb60201b60201c565b620004933360016200095760201b60201c565b620004a63060016200095760201b60201c565b620004bb61dead60016200095760201b60201c565b620012a2565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f39062001024565b60405180910390fd5b6200060f5f838362000a0f60201b60201c565b8060025f82825462000622919062001044565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006d191906200108f565b60405180910390a3620006ec5f838362000a1460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000758906200111e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c990620011b2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008ae91906200108f565b60405180910390a3505050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746828260405162000942929190620011ee565b60405180910390a15050565b5f600254905090565b6200096762000a1960201b60201c565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a03919062001219565b60405180910390a25050565b505050565b505050565b62000a29620004c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a4f62000aaa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000aa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9f9062001282565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b4e57607f821691505b60208210810362000b645762000b6362000b09565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8b565b62000bd4868362000b8b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c1e62000c1862000c128462000bec565b62000bf5565b62000bec565b9050919050565b5f819050919050565b62000c398362000bfe565b62000c5162000c488262000c25565b84845462000b97565b825550505050565b5f90565b62000c6762000c59565b62000c7481848462000c2e565b505050565b5b8181101562000c9b5762000c8f5f8262000c5d565b60018101905062000c7a565b5050565b601f82111562000cea5762000cb48162000b6a565b62000cbf8462000b7c565b8101602085101562000ccf578190505b62000ce762000cde8562000b7c565b83018262000c79565b50505b505050565b5f82821c905092915050565b5f62000d0c5f198460080262000cef565b1980831691505092915050565b5f62000d26838362000cfb565b9150826002028217905092915050565b62000d418262000ad2565b67ffffffffffffffff81111562000d5d5762000d5c62000adc565b5b62000d69825462000b36565b62000d7682828562000c9f565b5f60209050601f83116001811462000dac575f841562000d97578287015190505b62000da3858262000d19565b86555062000e12565b601f19841662000dbc8662000b6a565b5f5b8281101562000de55784890151825560018201915060208501945060208101905062000dbe565b8683101562000e05578489015162000e01601f89168262000cfb565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e498262000e1e565b9050919050565b62000e5b8162000e3d565b811462000e66575f80fd5b50565b5f8151905062000e798162000e50565b92915050565b5f6020828403121562000e975762000e9662000e1a565b5b5f62000ea68482850162000e69565b91505092915050565b62000eba8162000e3d565b82525050565b5f60408201905062000ed55f83018562000eaf565b62000ee4602083018462000eaf565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f248262000bec565b915062000f318362000bec565b925082820262000f418162000bec565b9150828204841483151762000f5b5762000f5a62000eeb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f9b8262000bec565b915062000fa88362000bec565b92508262000fbb5762000fba62000f62565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200100c601f8362000fc6565b9150620010198262000fd6565b602082019050919050565b5f6020820190508181035f8301526200103d8162000ffe565b9050919050565b5f620010508262000bec565b91506200105d8362000bec565b925082820190508082111562001078576200107762000eeb565b5b92915050565b620010898162000bec565b82525050565b5f602082019050620010a45f8301846200107e565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200110660248362000fc6565b91506200111382620010aa565b604082019050919050565b5f6020820190508181035f8301526200113781620010f8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200119a60228362000fc6565b9150620011a7826200113e565b604082019050919050565b5f6020820190508181035f830152620011cb816200118c565b9050919050565b5f8115159050919050565b620011e881620011d2565b82525050565b5f604082019050620012035f83018562000eaf565b620012126020830184620011dd565b9392505050565b5f6020820190506200122e5f830184620011dd565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200126a60208362000fc6565b9150620012778262001234565b602082019050919050565b5f6020820190508181035f8301526200129b816200125c565b9050919050565b6080516141cd620012de5f395f81816117e801528181611de501528181611f2e0152818161216c01528181612372015261240c01526141cd5ff3fe60806040526004361061025f575f3560e01c806376d628b711610143578063c18bc195116100b5578063d85ba06311610079578063d85ba0631461089e578063db581179146108c8578063dc3f0d0f146108f0578063dd62ed3e14610918578063f2fde38b14610954578063f40acc3d1461097c57610266565b8063c18bc195146107e4578063c74c0fac1461080c578063c9567bf914610836578063d257b34f1461084c578063d82649201461087457610266565b806395d89b411161010757806395d89b41146106c6578063a457c2d7146106f0578063a9059cbb1461072c578063aa4bde2814610768578063bbc0c74214610792578063c0246668146107bc57610266565b806376d628b7146106085780637cc6eadb146106325780637fa787ba1461065c57806388e765ff146106725780638da5cb5b1461069c57610266565b80632be32b61116101dc57806366d602ae116101a057806366d602ae146105225780636a486a8e1461054c5780636ddd17131461057657806370a08231146105a0578063715018a6146105dc578063751039fc146105f257610266565b80632be32b6114610440578063313ce5671461046857806339509351146104925780634a62bb65146104ce5780636057b3eb146104f857610266565b80630e300099116102235780630e3000991461034c57806310d5de531461037657806318160ddd146103b257806323b872dd146103dc5780632a50afdc1461041857610266565b8063068acf6c1461026a57806306fdde0314610292578063091a157f146102bc578063095ea7b3146102e65780630a3b39a31461032257610266565b3661026657005b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612c57565b6109a6565b005b34801561029d575f80fd5b506102a6610bfe565b6040516102b39190612d0c565b60405180910390f35b3480156102c7575f80fd5b506102d0610c8e565b6040516102dd9190612d3b565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612d87565b610cb4565b6040516103199190612ddf565b60405180910390f35b34801561032d575f80fd5b50610336610cd6565b6040516103439190612e07565b60405180910390f35b348015610357575f80fd5b50610360610cdc565b60405161036d9190612e07565b60405180910390f35b348015610381575f80fd5b5061039c60048036038101906103979190612c57565b610ce2565b6040516103a99190612ddf565b60405180910390f35b3480156103bd575f80fd5b506103c6610cff565b6040516103d39190612e07565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd9190612e20565b610d08565b60405161040f9190612ddf565b60405180910390f35b348015610423575f80fd5b5061043e60048036038101906104399190612c57565b610d36565b005b34801561044b575f80fd5b5061046660048036038101906104619190612e70565b610e33565b005b348015610473575f80fd5b5061047c610ee1565b6040516104899190612eb6565b60405180910390f35b34801561049d575f80fd5b506104b860048036038101906104b39190612d87565b610ee9565b6040516104c59190612ddf565b60405180910390f35b3480156104d9575f80fd5b506104e2610f1f565b6040516104ef9190612ddf565b60405180910390f35b348015610503575f80fd5b5061050c610f32565b6040516105199190612ddf565b60405180910390f35b34801561052d575f80fd5b50610536610f45565b6040516105439190612e07565b60405180910390f35b348015610557575f80fd5b50610560610f4b565b60405161056d9190612e07565b60405180910390f35b348015610581575f80fd5b5061058a610f51565b6040516105979190612ddf565b60405180910390f35b3480156105ab575f80fd5b506105c660048036038101906105c19190612c57565b610f64565b6040516105d39190612e07565b60405180910390f35b3480156105e7575f80fd5b506105f0610fa9565b005b3480156105fd575f80fd5b50610606610fbc565b005b348015610613575f80fd5b5061061c61100c565b6040516106299190612e07565b60405180910390f35b34801561063d575f80fd5b50610646611012565b6040516106539190612d3b565b60405180910390f35b348015610667575f80fd5b50610670611037565b005b34801561067d575f80fd5b506106866110f1565b6040516106939190612e07565b60405180910390f35b3480156106a7575f80fd5b506106b06110f7565b6040516106bd9190612d3b565b60405180910390f35b3480156106d1575f80fd5b506106da61111f565b6040516106e79190612d0c565b60405180910390f35b3480156106fb575f80fd5b5061071660048036038101906107119190612d87565b6111af565b6040516107239190612ddf565b60405180910390f35b348015610737575f80fd5b50610752600480360381019061074d9190612d87565b611224565b60405161075f9190612ddf565b60405180910390f35b348015610773575f80fd5b5061077c611246565b6040516107899190612e07565b60405180910390f35b34801561079d575f80fd5b506107a661124c565b6040516107b39190612ddf565b60405180910390f35b3480156107c7575f80fd5b506107e260048036038101906107dd9190612ef9565b61125f565b005b3480156107ef575f80fd5b5061080a60048036038101906108059190612e70565b61130d565b005b348015610817575f80fd5b506108206113bb565b60405161082d9190612f92565b60405180910390f35b348015610841575f80fd5b5061084a6113d3565b005b348015610857575f80fd5b50610872600480360381019061086d9190612e70565b6114a4565b005b34801561087f575f80fd5b5061088861151a565b6040516108959190612fcb565b60405180910390f35b3480156108a9575f80fd5b506108b2611532565b6040516108bf9190612e07565b60405180910390f35b3480156108d3575f80fd5b506108ee60048036038101906108e99190612c57565b611538565b005b3480156108fb575f80fd5b5061091660048036038101906109119190612e70565b611634565b005b348015610923575f80fd5b5061093e60048036038101906109399190612fe4565b6116e2565b60405161094b9190612e07565b60405180910390f35b34801561095f575f80fd5b5061097a60048036038101906109759190612c57565b611764565b005b348015610987575f80fd5b506109906117e6565b60405161099d9190612d3b565b60405180910390f35b6109ae6110f7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a345750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a9061306c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af657610aae6110f7565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610af0573d5f803e3d5ffd5b50610bfb565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b349190612d3b565b602060405180830381865afa158015610b4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b73919061309e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b996110f7565b836040518363ffffffff1660e01b8152600401610bb79291906130c9565b6020604051808303815f875af1158015610bd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf79190613104565b5050505b50565b606060038054610c0d9061315c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c399061315c565b8015610c845780601f10610c5b57610100808354040283529160200191610c84565b820191905f5260205f20905b815481529060010190602001808311610c6757829003601f168201915b5050505050905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610cbe61180a565b9050610ccb818585611811565b600191505092915050565b60065481565b600c5481565b6011602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610d1261180a565b9050610d1f8582856119d4565b610d2a858585611a5f565b60019150509392505050565b610d3e6124d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da3906131fc565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167faf682aac8765ef7ea7fb20dc6155ca1104868135f78933126176652662f71e4b60405160405180910390a250565b610e3b6124d8565b6103e86001610e48610cff565b610e529190613247565b610e5c91906132b5565b811015610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613355565b60405180910390fd5b806009819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600954604051610ed69190612e07565b60405180910390a150565b5f6012905090565b5f80610ef361180a565b9050610f14818585610f0585896116e2565b610f0f9190613373565b611811565b600191505092915050565b600860149054906101000a900460ff1681565b600860179054906101000a900460ff1681565b600a5481565b600e5481565b600860169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fb16124d8565b610fba5f612556565b565b610fc46124d8565b5f600860146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600f5481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61103f6124d8565b5f6110486110f7565b73ffffffffffffffffffffffffffffffffffffffff164760405161106b906133d3565b5f6040518083038185875af1925050503d805f81146110a5576040519150601f19603f3d011682016040523d82523d5f602084013e6110aa565b606091505b50509050806110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613457565b60405180910390fd5b50565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461112e9061315c565b80601f016020809104026020016040519081016040528092919081815260200182805461115a9061315c565b80156111a55780601f1061117c576101008083540402835291602001916111a5565b820191905f5260205f20905b81548152906001019060200180831161118857829003601f168201915b5050505050905090565b5f806111b961180a565b90505f6111c682866116e2565b90508381101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906134e5565b60405180910390fd5b6112188286868403611811565b60019250505092915050565b5f8061122e61180a565b905061123b818585611a5f565b600191505092915050565b600b5481565b600860159054906101000a900460ff1681565b6112676124d8565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516113019190612ddf565b60405180910390a25050565b6113156124d8565b6103e86003611322610cff565b61132c9190613247565b61133691906132b5565b811015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613573565b60405180910390fd5b80600b819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600b546040516113b09190612e07565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6113db6124d8565b5f6006541461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613601565b60405180910390fd5b436006819055506001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600860159054906101000a900460ff1660405161149a9190612ddf565b60405180910390a1565b6114ac6124d8565b620186a060016114ba610cff565b6114c49190613247565b6114ce91906132b5565b811015611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906136b5565b60405180910390fd5b80600c8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600d5481565b6115406124d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590613743565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f7f8c89c1b7cb774b61942e14f38654ed399d069012743d3f0dd361a2fd18cd0160405160405180910390a250565b61163c6124d8565b6103e86001611649610cff565b6116539190613247565b61165d91906132b5565b81101561169f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611696906137d1565b60405180910390fd5b80600a819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600a546040516116d79190612e07565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61176c6124d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d19061385f565b60405180910390fd5b6117e381612556565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906138ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061397b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119c79190612e07565b60405180910390a3505050565b5f6119df84846116e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a595781811015611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906139e3565b60405180910390fd5b611a588484848403611811565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac490613a71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613aff565b60405180910390fd5b5f8111611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490613b67565b60405180910390fd5b600860149054906101000a900460ff161561211d57611b9a6110f7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c085750611bd86110f7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c4057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c7a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561211c57600860159054906101000a900460ff16611de35760115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d2e575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613bf5565b60405180910390fd5b611d756110f7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613c5d565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611e85575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f2c57600954811115611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613ceb565b60405180910390fd5b600b54611edb83610f64565b82611ee69190613373565b1115611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613d79565b60405180910390fd5b61211b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611fce575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561201d57600a54811115612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613e07565b60405180910390fd5b61211a565b60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156120bb575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561211957600b546120cc83610f64565b826120d79190613373565b1115612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613d79565b60405180910390fd5b5b5b5b5b5b5f61212730610f64565b90505f600c54821015905080801561214b5750600860169054906101000a900460ff165b8015612163575060075f9054906101000a900460ff16155b80156121bb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561220e575060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612261575060105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156122a257600160075f6101000a81548160ff021916908315150217905550612288612619565b5f60075f6101000a81548160ff0219169083151502179055505b5f6001905060105f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612342575060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561234b575f90505b5f81156124c457600860179054906101000a900460ff16156123705761236f6126ee565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156123cc57505f600e54115b1561240a576064600e54866123e19190613247565b6123eb91906132b5565b905080600f5f8282546123fe9190613373565b925050819055506124a1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561246657505f600d54115b156124a0576064600d548661247b9190613247565b61248591906132b5565b905080600f5f8282546124989190613373565b925050819055505b5b5f8111156124b5576124b4873083612793565b5b80856124c19190613e25565b94505b6124cf878787612793565b50505050505050565b6124e061180a565b73ffffffffffffffffffffffffffffffffffffffff166124fe6110f7565b73ffffffffffffffffffffffffffffffffffffffff1614612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90613ea2565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61262330610f64565b90505f600f5490505f82148061263857505f81145b156126445750506126ec565b600c5482111561265457600c5491505b5f61265e836129ff565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516126a3906133d3565b5f6040518083038185875af1925050503d805f81146126dd576040519150601f19603f3d011682016040523d82523d5f602084013e6126e2565b606091505b5050809150505050505b565b5f60065411612732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272990613f0a565b60405180910390fd5b5f4390505f60056006546127469190613373565b905080821161276457601e600d81905550601e600e8190555061278f565b6001600d819055506001600e819055505f600860176101000a81548160ff0219169083151502179055505b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890613a71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613aff565b60405180910390fd5b61287a838383612bef565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490613f98565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129e69190612e07565b60405180910390a36129f9848484612bf4565b50505050565b5f600267ffffffffffffffff811115612a1b57612a1a613fb6565b5b604051908082528060200260200182016040528015612a495781602001602082028036833780820191505090505b50905030815f81518110612a6057612a5f613fe3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612af7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b1b9190614024565b81600181518110612b2f57612b2e613fe3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612bbe95949392919061413f565b5f604051808303815f87803b158015612bd5575f80fd5b505af1158015612be7573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c2682612bfd565b9050919050565b612c3681612c1c565b8114612c40575f80fd5b50565b5f81359050612c5181612c2d565b92915050565b5f60208284031215612c6c57612c6b612bf9565b5b5f612c7984828501612c43565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612cb9578082015181840152602081019050612c9e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612cde82612c82565b612ce88185612c8c565b9350612cf8818560208601612c9c565b612d0181612cc4565b840191505092915050565b5f6020820190508181035f830152612d248184612cd4565b905092915050565b612d3581612c1c565b82525050565b5f602082019050612d4e5f830184612d2c565b92915050565b5f819050919050565b612d6681612d54565b8114612d70575f80fd5b50565b5f81359050612d8181612d5d565b92915050565b5f8060408385031215612d9d57612d9c612bf9565b5b5f612daa85828601612c43565b9250506020612dbb85828601612d73565b9150509250929050565b5f8115159050919050565b612dd981612dc5565b82525050565b5f602082019050612df25f830184612dd0565b92915050565b612e0181612d54565b82525050565b5f602082019050612e1a5f830184612df8565b92915050565b5f805f60608486031215612e3757612e36612bf9565b5b5f612e4486828701612c43565b9350506020612e5586828701612c43565b9250506040612e6686828701612d73565b9150509250925092565b5f60208284031215612e8557612e84612bf9565b5b5f612e9284828501612d73565b91505092915050565b5f60ff82169050919050565b612eb081612e9b565b82525050565b5f602082019050612ec95f830184612ea7565b92915050565b612ed881612dc5565b8114612ee2575f80fd5b50565b5f81359050612ef381612ecf565b92915050565b5f8060408385031215612f0f57612f0e612bf9565b5b5f612f1c85828601612c43565b9250506020612f2d85828601612ee5565b9150509250929050565b5f819050919050565b5f612f5a612f55612f5084612bfd565b612f37565b612bfd565b9050919050565b5f612f6b82612f40565b9050919050565b5f612f7c82612f61565b9050919050565b612f8c81612f72565b82525050565b5f602082019050612fa55f830184612f83565b92915050565b5f612fb582612f61565b9050919050565b612fc581612fab565b82525050565b5f602082019050612fde5f830184612fbc565b92915050565b5f8060408385031215612ffa57612ff9612bf9565b5b5f61300785828601612c43565b925050602061301885828601612c43565b9150509250929050565b7f464f54544945204552524f523a204e6f7420617574686f72697a6564000000005f82015250565b5f613056601c83612c8c565b915061306182613022565b602082019050919050565b5f6020820190508181035f8301526130838161304a565b9050919050565b5f8151905061309881612d5d565b92915050565b5f602082840312156130b3576130b2612bf9565b5b5f6130c08482850161308a565b91505092915050565b5f6040820190506130dc5f830185612d2c565b6130e96020830184612df8565b9392505050565b5f815190506130fe81612ecf565b92915050565b5f6020828403121561311957613118612bf9565b5b5f613126848285016130f0565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061317357607f821691505b6020821081036131865761318561312f565b5b50919050565b7f464f54544945204552524f523a205f666f7474696557616c6c657420616464725f8201527f6573732063616e6e6f7420626520300000000000000000000000000000000000602082015250565b5f6131e6602f83612c8c565b91506131f18261318c565b604082019050919050565b5f6020820190508181035f830152613213816131da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61325182612d54565b915061325c83612d54565b925082820261326a81612d54565b915082820484148315176132815761328061321a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6132bf82612d54565b91506132ca83612d54565b9250826132da576132d9613288565b5b828204905092915050565b7f464f54544945204552524f523a2043616e6e6f7420736574206d6178206275795f8201527f20616d6f756e74206c6f776572207468616e20302e3125000000000000000000602082015250565b5f61333f603783612c8c565b915061334a826132e5565b604082019050919050565b5f6020820190508181035f83015261336c81613333565b9050919050565b5f61337d82612d54565b915061338883612d54565b92508282019050808211156133a05761339f61321a565b5b92915050565b5f81905092915050565b50565b5f6133be5f836133a6565b91506133c9826133b0565b5f82019050919050565b5f6133dd826133b3565b9150819050919050565b7f464f54544945204552524f523a206661696c656420746f2077697468647261775f8201527f2066756e64730000000000000000000000000000000000000000000000000000602082015250565b5f613441602683612c8c565b915061344c826133e7565b604082019050919050565b5f6020820190508181035f83015261346e81613435565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6134cf602583612c8c565b91506134da82613475565b604082019050919050565b5f6020820190508181035f8301526134fc816134c3565b9050919050565b7f464f54544945204552524f523a2043616e6e6f7420736574206d61782077616c5f8201527f6c657420616d6f756e74206c6f776572207468616e20302e3325000000000000602082015250565b5f61355d603a83612c8c565b915061356882613503565b604082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f464f54544945204552524f523a20546f6b656e20737461746520697320616c725f8201527f65616479206c6976652021000000000000000000000000000000000000000000602082015250565b5f6135eb602b83612c8c565b91506135f682613591565b604082019050919050565b5f6020820190508181035f830152613618816135df565b9050919050565b7f464f54544945204552524f523a205377617020616d6f756e742063616e6e6f745f8201527f206265206c6f776572207468616e20302e3030312520746f74616c207375707060208201527f6c792e0000000000000000000000000000000000000000000000000000000000604082015250565b5f61369f604383612c8c565b91506136aa8261361f565b606082019050919050565b5f6020820190508181035f8301526136cc81613693565b9050919050565b7f464f54544945204552524f523a205f666f747469654d61726b6574696e6757615f8201527f6c6c657420616464726573732063616e6e6f7420626520300000000000000000602082015250565b5f61372d603883612c8c565b9150613738826136d3565b604082019050919050565b5f6020820190508181035f83015261375a81613721565b9050919050565b7f464f54544945204552524f523a2043616e6e6f7420736574206d61782073656c5f8201527f6c20616d6f756e74206c6f776572207468616e20302e31250000000000000000602082015250565b5f6137bb603883612c8c565b91506137c682613761565b604082019050919050565b5f6020820190508181035f8301526137e8816137af565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613849602683612c8c565b9150613854826137ef565b604082019050919050565b5f6020820190508181035f8301526138768161383d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6138d7602483612c8c565b91506138e28261387d565b604082019050919050565b5f6020820190508181035f830152613904816138cb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613965602283612c8c565b91506139708261390b565b604082019050919050565b5f6020820190508181035f83015261399281613959565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6139cd601d83612c8c565b91506139d882613999565b602082019050919050565b5f6020820190508181035f8301526139fa816139c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613a5b602583612c8c565b9150613a6682613a01565b604082019050919050565b5f6020820190508181035f830152613a8881613a4f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ae9602383612c8c565b9150613af482613a8f565b604082019050919050565b5f6020820190508181035f830152613b1681613add565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f613b51601d83612c8c565b9150613b5c82613b1d565b602082019050919050565b5f6020820190508181035f830152613b7e81613b45565b9050919050565b7f464f54544945204552524f523a2054726164696e67206973206e6f74206163745f8201527f6976652e00000000000000000000000000000000000000000000000000000000602082015250565b5f613bdf602483612c8c565b9150613bea82613b85565b604082019050919050565b5f6020820190508181035f830152613c0c81613bd3565b9050919050565b7f464f54544945204552524f523a2054726164696e6720697320656e61626c65645f82015250565b5f613c47602083612c8c565b9150613c5282613c13565b602082019050919050565b5f6020820190508181035f830152613c7481613c3b565b9050919050565b7f464f54544945204552524f523a20427579207472616e7366657220616d6f756e5f8201527f74206578636565647320746865206d6178206275792e00000000000000000000602082015250565b5f613cd5603683612c8c565b9150613ce082613c7b565b604082019050919050565b5f6020820190508181035f830152613d0281613cc9565b9050919050565b7f464f54544945204552524f523a2043616e6e6f7420457863656564206d6178205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f613d63602683612c8c565b9150613d6e82613d09565b604082019050919050565b5f6020820190508181035f830152613d9081613d57565b9050919050565b7f464f54544945204552524f523a2053656c6c207472616e7366657220616d6f755f8201527f6e74206578636565647320746865206d61782073656c6c2e0000000000000000602082015250565b5f613df1603883612c8c565b9150613dfc82613d97565b604082019050919050565b5f6020820190508181035f830152613e1e81613de5565b9050919050565b5f613e2f82612d54565b9150613e3a83612d54565b9250828203905081811115613e5257613e5161321a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613e8c602083612c8c565b9150613e9782613e58565b602082019050919050565b5f6020820190508181035f830152613eb981613e80565b9050919050565b7f54726164696e67206e6f74206c697665000000000000000000000000000000005f82015250565b5f613ef4601083612c8c565b9150613eff82613ec0565b602082019050919050565b5f6020820190508181035f830152613f2181613ee8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f82602683612c8c565b9150613f8d82613f28565b604082019050919050565b5f6020820190508181035f830152613faf81613f76565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061401e81612c2d565b92915050565b5f6020828403121561403957614038612bf9565b5b5f61404684828501614010565b91505092915050565b5f819050919050565b5f61407261406d6140688461404f565b612f37565b612d54565b9050919050565b61408281614058565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6140ba81612c1c565b82525050565b5f6140cb83836140b1565b60208301905092915050565b5f602082019050919050565b5f6140ed82614088565b6140f78185614092565b9350614102836140a2565b805f5b8381101561413257815161411988826140c0565b9750614124836140d7565b925050600181019050614105565b5085935050505092915050565b5f60a0820190506141525f830188612df8565b61415f6020830187614079565b818103604083015261417181866140e3565b90506141806060830185612d2c565b61418d6080830184612df8565b969550505050505056fea2646970667358221220f68d519765f367ccdd775802857f8c21d18fd9315f68b0691507d1b382c89ec964736f6c63430008140033

Deployed Bytecode

0x60806040526004361061025f575f3560e01c806376d628b711610143578063c18bc195116100b5578063d85ba06311610079578063d85ba0631461089e578063db581179146108c8578063dc3f0d0f146108f0578063dd62ed3e14610918578063f2fde38b14610954578063f40acc3d1461097c57610266565b8063c18bc195146107e4578063c74c0fac1461080c578063c9567bf914610836578063d257b34f1461084c578063d82649201461087457610266565b806395d89b411161010757806395d89b41146106c6578063a457c2d7146106f0578063a9059cbb1461072c578063aa4bde2814610768578063bbc0c74214610792578063c0246668146107bc57610266565b806376d628b7146106085780637cc6eadb146106325780637fa787ba1461065c57806388e765ff146106725780638da5cb5b1461069c57610266565b80632be32b61116101dc57806366d602ae116101a057806366d602ae146105225780636a486a8e1461054c5780636ddd17131461057657806370a08231146105a0578063715018a6146105dc578063751039fc146105f257610266565b80632be32b6114610440578063313ce5671461046857806339509351146104925780634a62bb65146104ce5780636057b3eb146104f857610266565b80630e300099116102235780630e3000991461034c57806310d5de531461037657806318160ddd146103b257806323b872dd146103dc5780632a50afdc1461041857610266565b8063068acf6c1461026a57806306fdde0314610292578063091a157f146102bc578063095ea7b3146102e65780630a3b39a31461032257610266565b3661026657005b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612c57565b6109a6565b005b34801561029d575f80fd5b506102a6610bfe565b6040516102b39190612d0c565b60405180910390f35b3480156102c7575f80fd5b506102d0610c8e565b6040516102dd9190612d3b565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612d87565b610cb4565b6040516103199190612ddf565b60405180910390f35b34801561032d575f80fd5b50610336610cd6565b6040516103439190612e07565b60405180910390f35b348015610357575f80fd5b50610360610cdc565b60405161036d9190612e07565b60405180910390f35b348015610381575f80fd5b5061039c60048036038101906103979190612c57565b610ce2565b6040516103a99190612ddf565b60405180910390f35b3480156103bd575f80fd5b506103c6610cff565b6040516103d39190612e07565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd9190612e20565b610d08565b60405161040f9190612ddf565b60405180910390f35b348015610423575f80fd5b5061043e60048036038101906104399190612c57565b610d36565b005b34801561044b575f80fd5b5061046660048036038101906104619190612e70565b610e33565b005b348015610473575f80fd5b5061047c610ee1565b6040516104899190612eb6565b60405180910390f35b34801561049d575f80fd5b506104b860048036038101906104b39190612d87565b610ee9565b6040516104c59190612ddf565b60405180910390f35b3480156104d9575f80fd5b506104e2610f1f565b6040516104ef9190612ddf565b60405180910390f35b348015610503575f80fd5b5061050c610f32565b6040516105199190612ddf565b60405180910390f35b34801561052d575f80fd5b50610536610f45565b6040516105439190612e07565b60405180910390f35b348015610557575f80fd5b50610560610f4b565b60405161056d9190612e07565b60405180910390f35b348015610581575f80fd5b5061058a610f51565b6040516105979190612ddf565b60405180910390f35b3480156105ab575f80fd5b506105c660048036038101906105c19190612c57565b610f64565b6040516105d39190612e07565b60405180910390f35b3480156105e7575f80fd5b506105f0610fa9565b005b3480156105fd575f80fd5b50610606610fbc565b005b348015610613575f80fd5b5061061c61100c565b6040516106299190612e07565b60405180910390f35b34801561063d575f80fd5b50610646611012565b6040516106539190612d3b565b60405180910390f35b348015610667575f80fd5b50610670611037565b005b34801561067d575f80fd5b506106866110f1565b6040516106939190612e07565b60405180910390f35b3480156106a7575f80fd5b506106b06110f7565b6040516106bd9190612d3b565b60405180910390f35b3480156106d1575f80fd5b506106da61111f565b6040516106e79190612d0c565b60405180910390f35b3480156106fb575f80fd5b5061071660048036038101906107119190612d87565b6111af565b6040516107239190612ddf565b60405180910390f35b348015610737575f80fd5b50610752600480360381019061074d9190612d87565b611224565b60405161075f9190612ddf565b60405180910390f35b348015610773575f80fd5b5061077c611246565b6040516107899190612e07565b60405180910390f35b34801561079d575f80fd5b506107a661124c565b6040516107b39190612ddf565b60405180910390f35b3480156107c7575f80fd5b506107e260048036038101906107dd9190612ef9565b61125f565b005b3480156107ef575f80fd5b5061080a60048036038101906108059190612e70565b61130d565b005b348015610817575f80fd5b506108206113bb565b60405161082d9190612f92565b60405180910390f35b348015610841575f80fd5b5061084a6113d3565b005b348015610857575f80fd5b50610872600480360381019061086d9190612e70565b6114a4565b005b34801561087f575f80fd5b5061088861151a565b6040516108959190612fcb565b60405180910390f35b3480156108a9575f80fd5b506108b2611532565b6040516108bf9190612e07565b60405180910390f35b3480156108d3575f80fd5b506108ee60048036038101906108e99190612c57565b611538565b005b3480156108fb575f80fd5b5061091660048036038101906109119190612e70565b611634565b005b348015610923575f80fd5b5061093e60048036038101906109399190612fe4565b6116e2565b60405161094b9190612e07565b60405180910390f35b34801561095f575f80fd5b5061097a60048036038101906109759190612c57565b611764565b005b348015610987575f80fd5b506109906117e6565b60405161099d9190612d3b565b60405180910390f35b6109ae6110f7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a345750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a9061306c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af657610aae6110f7565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610af0573d5f803e3d5ffd5b50610bfb565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b349190612d3b565b602060405180830381865afa158015610b4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b73919061309e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b996110f7565b836040518363ffffffff1660e01b8152600401610bb79291906130c9565b6020604051808303815f875af1158015610bd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf79190613104565b5050505b50565b606060038054610c0d9061315c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c399061315c565b8015610c845780601f10610c5b57610100808354040283529160200191610c84565b820191905f5260205f20905b815481529060010190602001808311610c6757829003601f168201915b5050505050905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610cbe61180a565b9050610ccb818585611811565b600191505092915050565b60065481565b600c5481565b6011602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610d1261180a565b9050610d1f8582856119d4565b610d2a858585611a5f565b60019150509392505050565b610d3e6124d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da3906131fc565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167faf682aac8765ef7ea7fb20dc6155ca1104868135f78933126176652662f71e4b60405160405180910390a250565b610e3b6124d8565b6103e86001610e48610cff565b610e529190613247565b610e5c91906132b5565b811015610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613355565b60405180910390fd5b806009819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600954604051610ed69190612e07565b60405180910390a150565b5f6012905090565b5f80610ef361180a565b9050610f14818585610f0585896116e2565b610f0f9190613373565b611811565b600191505092915050565b600860149054906101000a900460ff1681565b600860179054906101000a900460ff1681565b600a5481565b600e5481565b600860169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fb16124d8565b610fba5f612556565b565b610fc46124d8565b5f600860146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600f5481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61103f6124d8565b5f6110486110f7565b73ffffffffffffffffffffffffffffffffffffffff164760405161106b906133d3565b5f6040518083038185875af1925050503d805f81146110a5576040519150601f19603f3d011682016040523d82523d5f602084013e6110aa565b606091505b50509050806110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613457565b60405180910390fd5b50565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461112e9061315c565b80601f016020809104026020016040519081016040528092919081815260200182805461115a9061315c565b80156111a55780601f1061117c576101008083540402835291602001916111a5565b820191905f5260205f20905b81548152906001019060200180831161118857829003601f168201915b5050505050905090565b5f806111b961180a565b90505f6111c682866116e2565b90508381101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906134e5565b60405180910390fd5b6112188286868403611811565b60019250505092915050565b5f8061122e61180a565b905061123b818585611a5f565b600191505092915050565b600b5481565b600860159054906101000a900460ff1681565b6112676124d8565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516113019190612ddf565b60405180910390a25050565b6113156124d8565b6103e86003611322610cff565b61132c9190613247565b61133691906132b5565b811015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613573565b60405180910390fd5b80600b819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600b546040516113b09190612e07565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6113db6124d8565b5f6006541461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613601565b60405180910390fd5b436006819055506001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600860159054906101000a900460ff1660405161149a9190612ddf565b60405180910390a1565b6114ac6124d8565b620186a060016114ba610cff565b6114c49190613247565b6114ce91906132b5565b811015611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906136b5565b60405180910390fd5b80600c8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600d5481565b6115406124d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590613743565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f7f8c89c1b7cb774b61942e14f38654ed399d069012743d3f0dd361a2fd18cd0160405160405180910390a250565b61163c6124d8565b6103e86001611649610cff565b6116539190613247565b61165d91906132b5565b81101561169f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611696906137d1565b60405180910390fd5b80600a819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600a546040516116d79190612e07565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61176c6124d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d19061385f565b60405180910390fd5b6117e381612556565b50565b7f000000000000000000000000353d45ddb1794c13d9bc8b9120d150902c276ebf81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906138ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061397b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119c79190612e07565b60405180910390a3505050565b5f6119df84846116e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a595781811015611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906139e3565b60405180910390fd5b611a588484848403611811565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac490613a71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613aff565b60405180910390fd5b5f8111611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490613b67565b60405180910390fd5b600860149054906101000a900460ff161561211d57611b9a6110f7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c085750611bd86110f7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c4057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c7a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561211c57600860159054906101000a900460ff16611de35760115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d2e575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613bf5565b60405180910390fd5b611d756110f7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613c5d565b60405180910390fd5b5b7f000000000000000000000000353d45ddb1794c13d9bc8b9120d150902c276ebf73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611e85575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f2c57600954811115611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613ceb565b60405180910390fd5b600b54611edb83610f64565b82611ee69190613373565b1115611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613d79565b60405180910390fd5b61211b565b7f000000000000000000000000353d45ddb1794c13d9bc8b9120d150902c276ebf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611fce575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561201d57600a54811115612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613e07565b60405180910390fd5b61211a565b60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156120bb575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561211957600b546120cc83610f64565b826120d79190613373565b1115612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613d79565b60405180910390fd5b5b5b5b5b5b5f61212730610f64565b90505f600c54821015905080801561214b5750600860169054906101000a900460ff165b8015612163575060075f9054906101000a900460ff16155b80156121bb57507f000000000000000000000000353d45ddb1794c13d9bc8b9120d150902c276ebf73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561220e575060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612261575060105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156122a257600160075f6101000a81548160ff021916908315150217905550612288612619565b5f60075f6101000a81548160ff0219169083151502179055505b5f6001905060105f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612342575060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561234b575f90505b5f81156124c457600860179054906101000a900460ff16156123705761236f6126ee565b5b7f000000000000000000000000353d45ddb1794c13d9bc8b9120d150902c276ebf73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156123cc57505f600e54115b1561240a576064600e54866123e19190613247565b6123eb91906132b5565b905080600f5f8282546123fe9190613373565b925050819055506124a1565b7f000000000000000000000000353d45ddb1794c13d9bc8b9120d150902c276ebf73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561246657505f600d54115b156124a0576064600d548661247b9190613247565b61248591906132b5565b905080600f5f8282546124989190613373565b925050819055505b5b5f8111156124b5576124b4873083612793565b5b80856124c19190613e25565b94505b6124cf878787612793565b50505050505050565b6124e061180a565b73ffffffffffffffffffffffffffffffffffffffff166124fe6110f7565b73ffffffffffffffffffffffffffffffffffffffff1614612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90613ea2565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61262330610f64565b90505f600f5490505f82148061263857505f81145b156126445750506126ec565b600c5482111561265457600c5491505b5f61265e836129ff565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516126a3906133d3565b5f6040518083038185875af1925050503d805f81146126dd576040519150601f19603f3d011682016040523d82523d5f602084013e6126e2565b606091505b5050809150505050505b565b5f60065411612732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272990613f0a565b60405180910390fd5b5f4390505f60056006546127469190613373565b905080821161276457601e600d81905550601e600e8190555061278f565b6001600d819055506001600e819055505f600860176101000a81548160ff0219169083151502179055505b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890613a71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613aff565b60405180910390fd5b61287a838383612bef565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490613f98565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129e69190612e07565b60405180910390a36129f9848484612bf4565b50505050565b5f600267ffffffffffffffff811115612a1b57612a1a613fb6565b5b604051908082528060200260200182016040528015612a495781602001602082028036833780820191505090505b50905030815f81518110612a6057612a5f613fe3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612af7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b1b9190614024565b81600181518110612b2f57612b2e613fe3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612bbe95949392919061413f565b5f604051808303815f87803b158015612bd5575f80fd5b505af1158015612be7573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c2682612bfd565b9050919050565b612c3681612c1c565b8114612c40575f80fd5b50565b5f81359050612c5181612c2d565b92915050565b5f60208284031215612c6c57612c6b612bf9565b5b5f612c7984828501612c43565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612cb9578082015181840152602081019050612c9e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612cde82612c82565b612ce88185612c8c565b9350612cf8818560208601612c9c565b612d0181612cc4565b840191505092915050565b5f6020820190508181035f830152612d248184612cd4565b905092915050565b612d3581612c1c565b82525050565b5f602082019050612d4e5f830184612d2c565b92915050565b5f819050919050565b612d6681612d54565b8114612d70575f80fd5b50565b5f81359050612d8181612d5d565b92915050565b5f8060408385031215612d9d57612d9c612bf9565b5b5f612daa85828601612c43565b9250506020612dbb85828601612d73565b9150509250929050565b5f8115159050919050565b612dd981612dc5565b82525050565b5f602082019050612df25f830184612dd0565b92915050565b612e0181612d54565b82525050565b5f602082019050612e1a5f830184612df8565b92915050565b5f805f60608486031215612e3757612e36612bf9565b5b5f612e4486828701612c43565b9350506020612e5586828701612c43565b9250506040612e6686828701612d73565b9150509250925092565b5f60208284031215612e8557612e84612bf9565b5b5f612e9284828501612d73565b91505092915050565b5f60ff82169050919050565b612eb081612e9b565b82525050565b5f602082019050612ec95f830184612ea7565b92915050565b612ed881612dc5565b8114612ee2575f80fd5b50565b5f81359050612ef381612ecf565b92915050565b5f8060408385031215612f0f57612f0e612bf9565b5b5f612f1c85828601612c43565b9250506020612f2d85828601612ee5565b9150509250929050565b5f819050919050565b5f612f5a612f55612f5084612bfd565b612f37565b612bfd565b9050919050565b5f612f6b82612f40565b9050919050565b5f612f7c82612f61565b9050919050565b612f8c81612f72565b82525050565b5f602082019050612fa55f830184612f83565b92915050565b5f612fb582612f61565b9050919050565b612fc581612fab565b82525050565b5f602082019050612fde5f830184612fbc565b92915050565b5f8060408385031215612ffa57612ff9612bf9565b5b5f61300785828601612c43565b925050602061301885828601612c43565b9150509250929050565b7f464f54544945204552524f523a204e6f7420617574686f72697a6564000000005f82015250565b5f613056601c83612c8c565b915061306182613022565b602082019050919050565b5f6020820190508181035f8301526130838161304a565b9050919050565b5f8151905061309881612d5d565b92915050565b5f602082840312156130b3576130b2612bf9565b5b5f6130c08482850161308a565b91505092915050565b5f6040820190506130dc5f830185612d2c565b6130e96020830184612df8565b9392505050565b5f815190506130fe81612ecf565b92915050565b5f6020828403121561311957613118612bf9565b5b5f613126848285016130f0565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061317357607f821691505b6020821081036131865761318561312f565b5b50919050565b7f464f54544945204552524f523a205f666f7474696557616c6c657420616464725f8201527f6573732063616e6e6f7420626520300000000000000000000000000000000000602082015250565b5f6131e6602f83612c8c565b91506131f18261318c565b604082019050919050565b5f6020820190508181035f830152613213816131da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61325182612d54565b915061325c83612d54565b925082820261326a81612d54565b915082820484148315176132815761328061321a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6132bf82612d54565b91506132ca83612d54565b9250826132da576132d9613288565b5b828204905092915050565b7f464f54544945204552524f523a2043616e6e6f7420736574206d6178206275795f8201527f20616d6f756e74206c6f776572207468616e20302e3125000000000000000000602082015250565b5f61333f603783612c8c565b915061334a826132e5565b604082019050919050565b5f6020820190508181035f83015261336c81613333565b9050919050565b5f61337d82612d54565b915061338883612d54565b92508282019050808211156133a05761339f61321a565b5b92915050565b5f81905092915050565b50565b5f6133be5f836133a6565b91506133c9826133b0565b5f82019050919050565b5f6133dd826133b3565b9150819050919050565b7f464f54544945204552524f523a206661696c656420746f2077697468647261775f8201527f2066756e64730000000000000000000000000000000000000000000000000000602082015250565b5f613441602683612c8c565b915061344c826133e7565b604082019050919050565b5f6020820190508181035f83015261346e81613435565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6134cf602583612c8c565b91506134da82613475565b604082019050919050565b5f6020820190508181035f8301526134fc816134c3565b9050919050565b7f464f54544945204552524f523a2043616e6e6f7420736574206d61782077616c5f8201527f6c657420616d6f756e74206c6f776572207468616e20302e3325000000000000602082015250565b5f61355d603a83612c8c565b915061356882613503565b604082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f464f54544945204552524f523a20546f6b656e20737461746520697320616c725f8201527f65616479206c6976652021000000000000000000000000000000000000000000602082015250565b5f6135eb602b83612c8c565b91506135f682613591565b604082019050919050565b5f6020820190508181035f830152613618816135df565b9050919050565b7f464f54544945204552524f523a205377617020616d6f756e742063616e6e6f745f8201527f206265206c6f776572207468616e20302e3030312520746f74616c207375707060208201527f6c792e0000000000000000000000000000000000000000000000000000000000604082015250565b5f61369f604383612c8c565b91506136aa8261361f565b606082019050919050565b5f6020820190508181035f8301526136cc81613693565b9050919050565b7f464f54544945204552524f523a205f666f747469654d61726b6574696e6757615f8201527f6c6c657420616464726573732063616e6e6f7420626520300000000000000000602082015250565b5f61372d603883612c8c565b9150613738826136d3565b604082019050919050565b5f6020820190508181035f83015261375a81613721565b9050919050565b7f464f54544945204552524f523a2043616e6e6f7420736574206d61782073656c5f8201527f6c20616d6f756e74206c6f776572207468616e20302e31250000000000000000602082015250565b5f6137bb603883612c8c565b91506137c682613761565b604082019050919050565b5f6020820190508181035f8301526137e8816137af565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613849602683612c8c565b9150613854826137ef565b604082019050919050565b5f6020820190508181035f8301526138768161383d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6138d7602483612c8c565b91506138e28261387d565b604082019050919050565b5f6020820190508181035f830152613904816138cb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613965602283612c8c565b91506139708261390b565b604082019050919050565b5f6020820190508181035f83015261399281613959565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6139cd601d83612c8c565b91506139d882613999565b602082019050919050565b5f6020820190508181035f8301526139fa816139c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613a5b602583612c8c565b9150613a6682613a01565b604082019050919050565b5f6020820190508181035f830152613a8881613a4f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ae9602383612c8c565b9150613af482613a8f565b604082019050919050565b5f6020820190508181035f830152613b1681613add565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f613b51601d83612c8c565b9150613b5c82613b1d565b602082019050919050565b5f6020820190508181035f830152613b7e81613b45565b9050919050565b7f464f54544945204552524f523a2054726164696e67206973206e6f74206163745f8201527f6976652e00000000000000000000000000000000000000000000000000000000602082015250565b5f613bdf602483612c8c565b9150613bea82613b85565b604082019050919050565b5f6020820190508181035f830152613c0c81613bd3565b9050919050565b7f464f54544945204552524f523a2054726164696e6720697320656e61626c65645f82015250565b5f613c47602083612c8c565b9150613c5282613c13565b602082019050919050565b5f6020820190508181035f830152613c7481613c3b565b9050919050565b7f464f54544945204552524f523a20427579207472616e7366657220616d6f756e5f8201527f74206578636565647320746865206d6178206275792e00000000000000000000602082015250565b5f613cd5603683612c8c565b9150613ce082613c7b565b604082019050919050565b5f6020820190508181035f830152613d0281613cc9565b9050919050565b7f464f54544945204552524f523a2043616e6e6f7420457863656564206d6178205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f613d63602683612c8c565b9150613d6e82613d09565b604082019050919050565b5f6020820190508181035f830152613d9081613d57565b9050919050565b7f464f54544945204552524f523a2053656c6c207472616e7366657220616d6f755f8201527f6e74206578636565647320746865206d61782073656c6c2e0000000000000000602082015250565b5f613df1603883612c8c565b9150613dfc82613d97565b604082019050919050565b5f6020820190508181035f830152613e1e81613de5565b9050919050565b5f613e2f82612d54565b9150613e3a83612d54565b9250828203905081811115613e5257613e5161321a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613e8c602083612c8c565b9150613e9782613e58565b602082019050919050565b5f6020820190508181035f830152613eb981613e80565b9050919050565b7f54726164696e67206e6f74206c697665000000000000000000000000000000005f82015250565b5f613ef4601083612c8c565b9150613eff82613ec0565b602082019050919050565b5f6020820190508181035f830152613f2181613ee8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f82602683612c8c565b9150613f8d82613f28565b604082019050919050565b5f6020820190508181035f830152613faf81613f76565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061401e81612c2d565b92915050565b5f6020828403121561403957614038612bf9565b5b5f61404684828501614010565b91505092915050565b5f819050919050565b5f61407261406d6140688461404f565b612f37565b612d54565b9050919050565b61408281614058565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6140ba81612c1c565b82525050565b5f6140cb83836140b1565b60208301905092915050565b5f602082019050919050565b5f6140ed82614088565b6140f78185614092565b9350614102836140a2565b805f5b8381101561413257815161411988826140c0565b9750614124836140d7565b925050600181019050614105565b5085935050505092915050565b5f60a0820190506141525f830188612df8565b61415f6020830187614079565b818103604083015261417181866140e3565b90506141806060830185612d2c565b61418d6080830184612df8565b969550505050505056fea2646970667358221220f68d519765f367ccdd775802857f8c21d18fd9315f68b0691507d1b382c89ec964736f6c63430008140033

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.