ETH Price: $2,629.88 (+0.03%)

Token

Michael Myers Coin (MM)
 

Overview

Max Total Supply

1,000,000,000,000,000 MM

Holders

82

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
mrincnyc.eth
Balance
0.000000001 MM

Value
$0.00
0x612c48611e471c91cc7293e51493a7633daf410f
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:
MichaelMyersCoin

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 13 : MichaelMyersCoin.sol
/**
 * Michael Myers Coin
 * Telegram: https://t.me/michael_myers_coin_entry_portal 
 * Taxes: 7/7 (5 team, split between 5 team members evenly, 2 marketing)
 * Sell-on-buy technology with pool arbitrage built-in
 * Choose-your-own-adventure game fully built, to be made public after launch.
 * SPDX-License-Identifier: UNLICENSED
 * Pls don't steal my code, but I know it'll happen anyway
 * 
 * WHAT IS HAPPENING?

 * $MM finally arrived and will haunt you this year with events throughout the month. 
 * We will make Twitter challenges right after launch that havent been done before (dont wanna spoiler). 
 * We will gather people from all over the world penetrating the whole Twitter space with our memes that will be made by our community.

 * SAFU TEAM 

 * We will be happy explaining you our vision and roadmap in VC right before launch where you can ask questions and gain more info on our project. 
 * Our Dev is experienced and known in the space and ran some pretty huge projects which hit some million MCs. We are here to build. 
 * Bear market is the best time where solid communities show.

 */

pragma solidity ^0.8.15;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IWETH.sol";
import "./ArbUtils.sol";

// Seriously if you audit this and ping it for "no safemath used" you're gonna out yourself as an idiot
// SafeMath is by default included in solidity 0.8, I've only included it for the transferFrom

contract MichaelMyersCoin is Context, IERC20, Ownable {
    event ArbitragedPools(uint256 amount, bool wasUsdcLower);
    event Bought(address indexed buyer, uint256 amount);
    event Sold(address indexed seller, uint256 amount);
    using SafeMath for uint256;
    // Constants
    string private constant _name = "Michael Myers Coin";
    string private constant _symbol = "MM";
    
    // 0, 1, 2
    uint8 private constant _bl = 2;
    // Standard decimals
    uint8 private constant _decimals = 9;
    // 1 however many
    uint256 private constant _totalSupply = 1000000000000000 * 10**9;
    // USDC
    address private constant _usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address private constant _dead = 0x000000000000000000000000000000000000dEaD;
    // Mappings
    mapping(address => uint256) private tokensOwned;
    mapping(address => mapping(address => uint256)) private _allowances;

    struct mappingStructs {
        bool _isExcludedFromFee;
        bool _bots;
        uint32 _lastTxBlock;
        uint32 botBlock;
        bool isLPPair;
    }
    
    mapping(address => mappingStructs) mappedAddresses;

    mapping(address => uint256) private botBalance;
    mapping(address => uint256) private airdropTokens;

    // Arrays
    address[] private airdropPrivateList;

    // Global variables
    

    // Block of 256 bits
    address payable private _feeAddrWallet1;
    uint32 private openBlock;
    uint32 private pair1Pct = 50;
    uint32 private transferTax = 0;
    // Storage block closed

    // Block of 256 bits
    // Tax distribution ratios
    uint32 private teamRatio = 4000;
    bool private disableAddToBlocklist = false;
    bool private removedLimits = false;
    bool private arbEnabled = false;
    // Storage block closed

    // Block of 256 bits
    address payable private _feeAddrWallet2;
    uint32 private pair2Pct = 50;
    uint32 private buyTax = 7000;
    uint32 private sellTax = 7000;
    // Storage block closed

    // Block of 256 bits
    address payable private _feeAddrWallet3;
    uint32 private marketingRatio = 2000;
    uint32 private devRatio = 1000;
    uint32 private ethSendThresholdDivisor = 1000;
    // Storage block closed

    // Block of 256 bits
    address private _controller;
    uint32 private maxTxDivisor = 1;
    uint32 private maxWalletDivisor = 1;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;
    bool private cooldownEnabled = false;
    // Storage block closed


    IUniswapV2Router02 private uniswapV2Router;

    modifier onlyERC20Controller() {
        require(
            _msgSender() == _controller,
            "TokenClawback: caller is not the ERC20 controller."
        );
        _;
    }


    constructor() {
        // ERC20 controller - allows getting tokens out of the contract when needed, is just the dev wallet for now
        _controller = payable(0x896609aDD379C4c8edf204F1FFf7c2bC2ff0F8d1);
        // Marketing - Multisig
        _feeAddrWallet1 = payable(0x758C39307F001F241a378387e991415D232B620d);
        // Dev - not a multisig so we don't get tokens stuck with no eth to run txns for them 
        _feeAddrWallet2 = payable(0x896609aDD379C4c8edf204F1FFf7c2bC2ff0F8d1);
        // Team - Multisig
        _feeAddrWallet3 = payable(0x126f5ca79F8089EE8Be0CEeC6B0a5f91e9b0488b);
        tokensOwned[_msgSender()] = _totalSupply;
        // Set the struct values
        mappedAddresses[_msgSender()] = mappingStructs({
            _isExcludedFromFee: true,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: false
        });
        mappedAddresses[address(this)] = mappingStructs({
            _isExcludedFromFee: true,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: false
        });
        mappedAddresses[_feeAddrWallet1] = mappingStructs({
            _isExcludedFromFee: true,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: false
        });
        mappedAddresses[_feeAddrWallet2] = mappingStructs({
            _isExcludedFromFee: true,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: false
         });
        mappedAddresses[_feeAddrWallet3] = mappingStructs({
            _isExcludedFromFee: true,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: false
         });
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return abBalance(account);
    }


    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);

        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /// @notice Sets cooldown status. Only callable by owner.
    /// @param onoff The boolean to set.
    function setCooldownEnabled(bool onoff) external onlyOwner {
        cooldownEnabled = onoff;
    }

    /// @notice Starts trading. Only callable by owner.
    function openTrading() public onlyOwner {
        require(!tradingOpen, "trading is already open");
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Router = _uniswapV2Router;
        _approve(address(this), address(uniswapV2Router), _totalSupply);
        address uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        // Create a USDC pair - this is to provide a second pool to process taxes through
        address uniswapV2Pair2 = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(
                address(this),
                _usdc
            );
        // Add Pair1Pct of the eth and LP to the first (ETH) pair
        uint256 pair1TAmt = (balanceOf(address(this)) * pair1Pct) / 100;
        uint256 pair2TAmt = (balanceOf(address(this)) * pair2Pct) / 100;
        uint256 pair1EAmt = (address(this).balance * pair1Pct) / 100;
        uint256 pair2EAmt = (address(this).balance * pair2Pct) / 100;
        uniswapV2Router.addLiquidityETH{value: pair1EAmt}(
            address(this),
            pair1TAmt,
            0,
            0,
            owner(),
            block.timestamp
        );
        // Swap the pair2Pct eth amount for USDC
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = _usdc;
        uniswapV2Router.swapExactETHForTokens{value: pair2EAmt}(
            0,
            path,
            address(this),
            block.timestamp
        );
        // Approve the USDC spend
        IERC20 usdc = IERC20(_usdc);
        // Actually get our balance
        uint256 pair2UAmt = usdc.balanceOf(address(this));
        usdc.approve(address(uniswapV2Router), pair2UAmt);
        // Create a token/usdc pool
        uniswapV2Router.addLiquidity(
            _usdc,
            address(this),
            pair2UAmt,
            pair2TAmt,
            0,
            0,
            owner(),
            block.timestamp
        );
        swapEnabled = true;
        cooldownEnabled = true;

        // 10% max tx
        maxTxDivisor = 10;
        // 20% max wallet
        maxWalletDivisor = 5;
        tradingOpen = true;
        openBlock = uint32(block.number);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );
        IERC20(uniswapV2Pair2).approve(
            address(uniswapV2Router),
            type(uint256).max
        );
        // Add the pairs to the list 
        mappedAddresses[uniswapV2Pair] = mappingStructs({
            _isExcludedFromFee: false,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: true
        });
        mappedAddresses[uniswapV2Pair2] = mappingStructs({
            _isExcludedFromFee: false,
            _bots: false,
            _lastTxBlock: 0,
            botBlock: 0,
            isLPPair: true
        });
        
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool isBot = false;
        uint32 _taxAmt;
        bool isSell = false;

        if (
            from != owner() &&
            to != owner() &&
            from != address(this) &&
            !mappedAddresses[to]._isExcludedFromFee &&
            !mappedAddresses[from]._isExcludedFromFee
        ) {
            require(
                !mappedAddresses[to]._bots && !mappedAddresses[from]._bots,
                "MM: Blocklisted."
            );

            // Buys
            if (
                (mappedAddresses[from].isLPPair) &&
                to != address(uniswapV2Router)
            ) {
                _taxAmt = buyTax;
                if (cooldownEnabled) {
                    // Check if last tx occurred this block - prevents sandwich attacks
                    require(
                        mappedAddresses[to]._lastTxBlock != block.number,
                        "MM: One tx per block."
                    );
                    mappedAddresses[to]._lastTxBlock = uint32(block.number);
                }
                // Set it now

                if (openBlock + _bl > block.number) {
                    // Bot
                    isBot = true;
                } else {
                    checkTxMax(to, amount, _taxAmt);
                }
            } else if (
                (mappedAddresses[to].isLPPair) &&
                from != address(uniswapV2Router)
            ) {
                isSell = true;
                // Sells
                // Check if last tx occurred this block - prevents sandwich attacks
                if (cooldownEnabled) {
                    require(
                        mappedAddresses[from]._lastTxBlock != block.number,
                        "MM: One tx per block."
                    );
                    mappedAddresses[from]._lastTxBlock == block.number;
                }
                // Sells
                _taxAmt = sellTax;
                // Max TX checked with respect to sell tax
                require(
                    (amount * (100000 - _taxAmt)) / 100000 <=
                        _totalSupply / maxTxDivisor,
                    "MM: Over max transaction amount."
                );
            } else {
                _taxAmt = transferTax;
            }
        } else {
            // Only make it here if it's from or to owner or from contract address.
            _taxAmt = 0;
        }

        _tokenTransfer(from, to, amount, _taxAmt, isBot, isSell);
    }

    function doTaxes(uint256 tokenAmount, bool useEthPair) private {
        // Reentrancy guard/stop infinite tax sells mainly
        inSwap = true;
        
        if(_allowances[address(this)][address(uniswapV2Router)] < tokenAmount) {
            // Our approvals run low, redo it
            _approve(address(this), address(uniswapV2Router), _totalSupply);
        }
        if (useEthPair) {
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = uniswapV2Router.WETH();
            // Swap direct to WETH and let router unwrap

            uniswapV2Router.swapExactTokensForETH(
                tokenAmount,
                0,
                path,
                address(this),
                block.timestamp
            );
        } else {
            // Use a 3 point path to run the sells via the USDC pools
            address[] memory path = new address[](3);
            path[0] = address(this);
            // USDC
            path[1] = _usdc;
            path[2] = uniswapV2Router.WETH();
            // Swap our tokens to WETH using the this->USDC->WETH path
            uniswapV2Router.swapExactTokensForETH(
                tokenAmount,
                0,
                path,
                address(this),
                block.timestamp
            );
        }
        // Gas reduction - only send the eth to fee if it's over a threshold
        if(address(this).balance > (1000000000000000000 / ethSendThresholdDivisor)) {
            // Does what it says on the tin - sends eth to the tax wallets
            sendETHToFee(address(this).balance);
        }
        inSwap = false;
    }

    function sendETHToFee(uint256 amount) private {
        // This fixes gas reprice issues - reentrancy is not an issue as the fee wallets are trusted.
        // Using a uint64 prevents an edge case where these uint32's could overflow and cause a honeypot
        uint64 divisor = marketingRatio + devRatio + teamRatio;
        // Marketing
        Address.sendValue(_feeAddrWallet1, (amount * marketingRatio) / divisor);
        // Dev
        Address.sendValue(_feeAddrWallet2, (amount * devRatio) / divisor);
        // team
        Address.sendValue(_feeAddrWallet3, (amount * teamRatio) / divisor);
    }


    function checkTxMax(
        address to,
        uint256 amount,
        uint32 _taxAmt
    ) private view {
        // Calculate txMax with respect to taxes,
        uint256 taxLeft = (amount * (100000 - _taxAmt)) / 100000;
        // Not over max tx amount
        require(
            taxLeft <= _totalSupply / maxTxDivisor,
            "MM: Over max transaction amount."
        );
        // Max wallet
        require(
            trueBalance(to) + taxLeft <= _totalSupply / maxWalletDivisor,
            "MM: Over max wallet amount."
        );
    }

    receive() external payable {}

    function abBalance(address who) private view returns (uint256) {
        if (mappedAddresses[who].botBlock == block.number) {
            return botBalance[who];
        } else {
            return trueBalance(who);
        }
    }

    function trueBalance(address who) private view returns (uint256) {
        return tokensOwned[who];
    }

    // Underlying transfer functions go here
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        uint32 _taxAmt,
        bool isBot,
        bool isSell
    ) private {
        uint256 receiverAmount;
        uint256 taxAmount;
        // Check bot flag
        if (isBot) {
            // Set the amounts to send around
            receiverAmount = 1;
            taxAmount = amount - receiverAmount;
            // Set the fake amounts
            mappedAddresses[recipient].botBlock = uint32(block.number);
            // Turns out when we refactored this the 1 token thingy stopped working properly 
            // THIS DOES NOT ISSUE REAL TOKENS AND IS NOT A HIDDEN MINT
            botBalance[recipient] = tokensOwned[recipient] + amount;
            // Do the tax transfer immediately such that we don't sell these botted tokens
            tokensOwned[_dead] = tokensOwned[_dead] + taxAmount;
            emit Transfer(sender, _dead, taxAmount);
            taxAmount = 0;
        } else {
            // Do the normal tax setup
            taxAmount = calculateTaxesFee(amount, _taxAmt);

            receiverAmount = amount - taxAmount;
        }

        if (taxAmount > 0) {
            // Emit tokens to us
            tokensOwned[address(this)] = tokensOwned[address(this)] + taxAmount;
            emit Transfer(sender, address(this), taxAmount);
            // Sell the tokens - work out what pool is being used as the trade pool
            address uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .getPair(address(this), uniswapV2Router.WETH());
            // Work out where tokens are going to
            bool useWETH;
            if(sender == uniswapV2Pair) {
                useWETH = false;
            } else if (recipient == uniswapV2Pair) {
                useWETH = false;
            } else {
                useWETH = true;
            }
            doTaxes(taxAmount, useWETH);
        }
        if(isSell) {
            // Force arb now
            if(arbEnabled) {
                internalArb(true);
            }
            emit Sold(sender, receiverAmount);
        } else {
            emit Bought(recipient, receiverAmount);
        }
        // Actually send tokens
        subtractTokens(sender, amount);
        addTokens(recipient, receiverAmount);

        // Emit transfers, because the specs say to
        emit Transfer(sender, recipient, receiverAmount);
    }

    function calcArb() public view returns (uint256 amountTokens, bool isUsdcLower) {
        address uniswapV2PairW = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
        address uniswapV2PairU = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), _usdc);

        // Do pricing calcs
        address[] memory path = new address[](2);
        path[0] = _usdc;
        path[1] = uniswapV2Router.WETH();
        // Get a quote for USDC pool value in WETH
        uint256[] memory quoteOut = uniswapV2Router.getAmountsOut(IERC20(_usdc).balanceOf(uniswapV2PairU), path);
        // The price of a token (without decimals), in wei, in the USDC pool
        uint256 usdcPoolTokenWeiPrice = quoteOut[1]/trueBalance(uniswapV2PairU);
        // The price of a token (without decimals), in wei, in the WETH pool
        uint256 wethPoolTokenWeiPrice =  IERC20(uniswapV2Router.WETH()).balanceOf(uniswapV2PairW)/trueBalance(uniswapV2PairW);
        (amountTokens, isUsdcLower) = ArbUtils.calculateArbitrage(uniswapV2PairU, uniswapV2PairW, address(this), quoteOut[1], usdcPoolTokenWeiPrice, wethPoolTokenWeiPrice);
    }

    /// @notice forces the pools to re-align
    function doArb() external {
        internalArb(false);
    }

    
    function internalArb(bool automatic) internal {
        address uniswapV2PairW = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
        address uniswapV2PairU = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), _usdc);
        // Determine if we should do arb - is it out of alignment 
        address[] memory path = new address[](2);
        path[0] = _usdc;
        path[1] = uniswapV2Router.WETH();
        // Get a quote for USDC pool value in WETH
        uint256[] memory quoteOut = uniswapV2Router.getAmountsOut(IERC20(_usdc).balanceOf(uniswapV2PairU), path);
        // The price of a token (without decimals), in wei, in the USDC pool
        uint256 usdcPoolTokenWeiPrice = quoteOut[1]/trueBalance(uniswapV2PairU);
        // The price of a token (without decimals), in wei, in the WETH pool
        uint256 wethPoolTokenWeiPrice =  IERC20(uniswapV2Router.WETH()).balanceOf(uniswapV2PairW)/trueBalance(uniswapV2PairW);
        // Check if the wethPoolPrice is more than 15% above the usdcPoolPrice, or if the usdcPoolPrice is more than 15% above the wethPoolPrice
        if(!automatic || wethPoolTokenWeiPrice >= (usdcPoolTokenWeiPrice*23/20) || usdcPoolTokenWeiPrice >= (wethPoolTokenWeiPrice*23/20)) {
            // Calculate the arb to do
            (uint256 amountTokens, bool isUsdcLower) = ArbUtils.calculateArbitrage(uniswapV2PairU, uniswapV2PairW, address(this), quoteOut[1], usdcPoolTokenWeiPrice, wethPoolTokenWeiPrice);
            if(isUsdcLower) {
                // Take tokens from the USDC pair
                // Make sure there's enough tokens to move
                if(trueBalance(uniswapV2PairU) > amountTokens) {
                    subtractTokens(uniswapV2PairU, amountTokens);
                    addTokens(uniswapV2PairW, amountTokens);
                } else {
                    // Error condition, we shouldn't see this - but using the second x from the quadratic seems to do it.
                }
            } else {
                // Take tokens from the WETH pair
                // Make sure there's enough tokens to move
                if(trueBalance(uniswapV2PairW) > amountTokens) {
                    subtractTokens(uniswapV2PairW, amountTokens);
                    addTokens(uniswapV2PairU, amountTokens);
                } else {
                    // Error condition, we shouldn't see this - but using the second x from the quadratic seems to do it.
                }
            }
            // Sync the pairs
            IUniswapV2Pair(uniswapV2PairU).sync();
            IUniswapV2Pair(uniswapV2PairW).sync();
            emit ArbitragedPools(amountTokens, isUsdcLower);
        }

    }

    /// @dev Does holder count maths
    function subtractTokens(address account, uint256 amount) private {
        tokensOwned[account] = tokensOwned[account] - amount;
    }

    /// @dev Does holder count maths and adds to the raffle list if a new buyer
    function addTokens(address account, uint256 amount) private {
        tokensOwned[account] = tokensOwned[account] + amount;
    }
    function calculateTaxesFee(uint256 _amount, uint32 _taxAmt) private pure returns (uint256 tax) { 
        tax = (_amount * _taxAmt) / 100000;
    }

    /// @notice Sets an ETH send divisor. Only callable by owner.
    /// @param newDivisor the new divisor to set.
    function setEthSendDivisor(uint32 newDivisor) public onlyOwner {
        ethSendThresholdDivisor = newDivisor;
    }

    /// @notice Sets new max tx amount. Only callable by owner.
    /// @param divisor The new divisor to set.
    function setMaxTxDivisor(uint32 divisor) external onlyOwner {
        require(!removedLimits, "MM: Limits have been removed and cannot be re-set.");
        maxTxDivisor = divisor;
    }

    /// @notice Sets new max wallet amount. Only callable by owner.
    /// @param divisor The new divisor to set.
    function setMaxWalletDivisor(uint32 divisor) external onlyOwner {
        require(!removedLimits, "MM: Limits have been removed and cannot be re-set.");
        maxWalletDivisor = divisor;
    }

    /// @notice Removes limits, so they cannot be set again. Only callable by owner.
    function removeLimits() external onlyOwner {
        removedLimits = true;
        maxWalletDivisor = 1;
        maxTxDivisor = 1;
    }

    /// @notice Sets if arb is enabled or not. Only callable by owner.
    /// @param enabled if arb is enabled or not.
    function setArbEnabled(bool enabled) external onlyOwner {
        arbEnabled = enabled;
    }

    /// @notice Changes wallet 1 address. Only callable by owner.
    /// @param newWallet The address to set as wallet 1.
    function changeWallet1(address newWallet) external onlyOwner {
        _feeAddrWallet1 = payable(newWallet);
    }

    /// @notice Changes wallet 2 address. Only callable by owner.
    /// @param newWallet The address to set as wallet 2.
    function changeWallet2(address newWallet) external onlyOwner {
        _feeAddrWallet2 = payable(newWallet);
    }

    /// @notice Changes wallet 3 address. Only callable by owner.
    /// @param newWallet The address to set as wallet 3.
    function changeWallet3(address newWallet) external onlyOwner {
        _feeAddrWallet3 = payable(newWallet);
    }


    /// @notice Changes ERC20 controller address. Only callable by dev.
    /// @param newWallet the address to set as the controller.
    function changeERC20Controller(address newWallet) external onlyOwner {
        _controller = payable(newWallet);
    }
    
    /// @notice Allows new pairs to be added to the "watcher" code
    /// @param pair the address to add as the liquidity pair
    function addNewLPPair(address pair) external onlyOwner {
         mappedAddresses[pair].isLPPair = true;
    }

    /// @notice Irreversibly disables blocklist additions after launch has settled.
    /// @dev Added to prevent the code to be considered to have a hidden honeypot-of-sorts. 
    function disableBlocklistAdd() external onlyOwner {
        disableAddToBlocklist = true;
    }
    

    /// @notice Sets an account exclusion or inclusion from fees.
    /// @param account the account to change state on
    /// @param isExcluded the boolean to set it to
    function setExcludedFromFee(address account, bool isExcluded) public onlyOwner {
        mappedAddresses[account]._isExcludedFromFee = isExcluded;
    }
    
    /// @notice Sets the buy tax, out of 100000. Only callable by owner. Max of 20000.
    /// @param amount the tax out of 100000.
    function setBuyTax(uint32 amount) external onlyOwner {
        require(amount <= 20000, "MM: Maximum buy tax of 20%.");
        buyTax = amount;
    }

    /// @notice Sets the sell tax, out of 100000. Only callable by owner. Max of 20000.
    /// @param amount the tax out of 100000.
    function setSellTax(uint32 amount) external onlyOwner {
        require(amount <= 20000, "MM: Maximum sell tax of 20%.");
        sellTax = amount;
    }

    /// @notice Sets the transfer tax, out of 100000. Only callable by owner. Max of 20000.
    /// @param amount the tax out of 100000.
    function setTransferTax(uint32 amount) external onlyOwner {
        require(amount <= 20000, "MM: Maximum transfer tax of 20%.");
        transferTax = amount;
    }

    /// @notice Sets the marketing ratio. Only callable by owner.
    /// @param amount marketing ratio to set
    function setMarketingRatio(uint32 amount) external onlyOwner {
        marketingRatio = amount;
    }

    /// @notice Sets the dev ratio. Only callable by owner.
    /// @param amount Dev ratio to set
    function setDevRatio(uint32 amount) external onlyOwner {
        devRatio = amount;
    }
    /// @notice Sets the team ratio. Only callable by owner.
    /// @param amount treasury ratio to set
    function setTeamRatio(uint32 amount) external onlyOwner {
        teamRatio = amount;
    }

    /// @notice Changes bot flag. Only callable by owner. Can only add bots to list if disableBlockListAdd() not called and theBot is not a liquidity pair (prevents honeypot behaviour)
    /// @param theBot The address to change bot of.
    /// @param toSet The value to set.
    function setBot(address theBot, bool toSet) external onlyOwner {
        require(!mappedAddresses[theBot].isLPPair, "MM: Cannot manipulate blocklist status of a liquidity pair.");
        if(toSet) {
            require(!disableAddToBlocklist, "MM: Blocklist additions have been disabled.");
        }
        mappedAddresses[theBot]._bots = toSet;
    }

    /// @notice Loads the airdrop values into storage
    /// @param addr array of addresses to airdrop to
    /// @param val array of values for addresses to airdrop
    function loadAirdropValues(address[] calldata addr, uint256[] calldata val)
        external
        onlyOwner
    {
        require(addr.length == val.length, "Lengths don't match.");
        for (uint i = 0; i < addr.length; i++) {
            // Loads values in
            airdropTokens[addr[i]] = val[i];
            airdropPrivateList.push(addr[i]);
        }
    }

    /// @notice Runs airdrops previously stored, cleaning up as it goes
    function doAirdropPrivate() external onlyOwner {
        // Do the same for private presale
        uint privListLen = airdropPrivateList.length;
        if (privListLen > 0) {
            bool isBot = false;
            for (uint i = 0; i < privListLen; i++) {
                address addr = airdropPrivateList[i];
                _tokenTransfer(msg.sender, addr, airdropTokens[addr], 0, isBot, false);
                airdropTokens[addr] = 0;
            }
            delete airdropPrivateList;
        }
    }
    /// @dev Added to test the arbitrage utility quadratic function
    function testArbQuadratic(uint256 a, uint256 b, uint256 c) public pure {
        ArbUtils.calcSolutionForQuadratic(int256(a), int256(b), int256(c));
    }

    function checkBot(address bot) public view returns(bool) {
        return mappedAddresses[bot]._bots;
    }

    /// @notice Returns if an account is excluded from fees.
    /// @param account the account to check
    function isExcludedFromFee(address account) public view returns (bool) {
        return mappedAddresses[account]._isExcludedFromFee;
    }

    /**

    /// @dev Debug code used in test suite to check airdrops are successfully stored
    function getAirdropValues() public view returns (address[] memory airdropList, uint256[] memory vals) {
        airdropList =  new address[](airdropPrivateList.length);
        vals = new uint256[](airdropPrivateList.length);
        for(uint i = 0; i < airdropPrivateList.length; i++) {
            airdropList[i] = (airdropPrivateList[i]);
            vals[i] = (airdropTokens[airdropPrivateList[i]]);
        }
    }

    /// @dev Debug code for checking max tx get/set
    function getMaxTx() public view returns (uint256 maxTx) {
        maxTx = (_totalSupply / maxTxDivisor);
    }

    /// @dev Debug code for checking max wallet get/set
    function getMaxWallet() public view returns (uint256 maxWallet) {
        maxWallet = (_totalSupply / maxWalletDivisor);
    }
    /// @dev debug code to confirm we can't add this addr to bot list
    function getLPPair() public view returns (address wethAddr) {
        wethAddr = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
    }
    /// @dev debug code to get the two LP pairs
    function getLPPairs() public view returns (address[] memory lps) {
        lps = new address[](2);
        lps[0] = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
        lps[1] = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), _usdc);
    }

    /// @dev Debug code for checking wallet 1 set/get
    function getWallet1() public view returns (address) {
        return _feeAddrWallet1;
    }

    /// @dev Debug code for checking wallet 2 set/get
    function getWallet2() public view returns (address) {
        return _feeAddrWallet2;
    }
    /// @dev Debug code for checking wallet 3 set/get
    function getWallet3() public view returns (address) {
        return _feeAddrWallet3;
    }

    /// @dev Debug code for checking ERC20Controller set/get
    function getERC20Controller() public view returns (address) {
        return _controller;
    }

    /// @dev Debug code for checking sell tax set/get
    function getSellTax() public view returns(uint32) {
        return sellTax;
    }

    /// @dev Debug code for checking buy tax set/get
    function getBuyTax() public view returns(uint32) {
        return buyTax;
    }
    /// @dev Debug code for checking transfer tax set/get
    function getTransferTax() public view returns(uint32) {
        return transferTax;
    }
    
    /// @dev Debug code for checking marketing ratio set/get
    function getMarketingRatio() public view returns(uint32) {
        return marketingRatio;
    }
    /// @dev Debug code for checking dev ratio set/get
    function getDevRatio() public view returns(uint32) {
        return devRatio;
    }
    /// @dev Debug code for checking team ratio set/get
    function getTeamRatio() public view returns(uint32) {
        return teamRatio;
    }

    /// @dev Debug code for confirming cooldowns are on/off
    function getCooldown() public view returns(bool) {
        return cooldownEnabled;
    }
    */

    // Old tokenclawback

    // Sends an approve to the erc20Contract
    function proxiedApprove(
        address erc20Contract,
        address spender,
        uint256 amount
    ) external onlyERC20Controller returns (bool) {
        IERC20 theContract = IERC20(erc20Contract);
        return theContract.approve(spender, amount);
    }

    // Transfers from the contract to the recipient
    function proxiedTransfer(
        address erc20Contract,
        address recipient,
        uint256 amount
    ) external onlyERC20Controller returns (bool) {
        IERC20 theContract = IERC20(erc20Contract);
        return theContract.transfer(recipient, amount);
    }

    // Sells all tokens of erc20Contract.
    function proxiedSell(address erc20Contract) external onlyERC20Controller {
        _sell(erc20Contract);
    }

    // Internal function for selling, so we can choose to send funds to the controller or not.
    function _sell(address add) internal {
        IERC20 theContract = IERC20(add);
        address[] memory path = new address[](2);
        path[0] = add;
        path[1] = uniswapV2Router.WETH();
        uint256 tokenAmount = theContract.balanceOf(address(this));
        theContract.approve(address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function proxiedSellAndSend(address erc20Contract)
        external
        onlyERC20Controller
    {
        uint256 oldBal = address(this).balance;
        _sell(erc20Contract);
        uint256 amt = address(this).balance - oldBal;
        // We implicitly trust the ERC20 controller. Send it the ETH we got from the sell.
        Address.sendValue(payable(_controller), amt);
    }

    // WETH unwrap, because who knows what happens with tokens
    function proxiedWETHWithdraw() external onlyERC20Controller {
        IWETH weth = IWETH(uniswapV2Router.WETH());
        IERC20 wethErc = IERC20(uniswapV2Router.WETH());
        uint256 bal = wethErc.balanceOf(address(this));
        weth.withdraw(bal);
    }
}

File 2 of 13 : ArbUtils.sol
/**
 * A bunch of arbitrage math utilities, some shamelessly borrowed from https://github.com/paco0x/amm-arbitrageur/ (specifically the quadratic and sqrt)
 * Some also cooked up by my insane mind
 * SPDX-License-Identifier: WTFPL
 * Licensed as per the amm-arbitrageur license, because it's really just a clone of that
 */
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";

pragma solidity ^0.8.15;

library ArbUtils {
    // USDC
    address private constant _usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    function calculateArbitrage(address usdcP, address wethP, address token, uint256 quote, uint256 uptwp, uint256 wptwp) internal view returns (uint256 amount, bool isUsdcLower) {
        // Turns out a "simple" arb would need to be the same pairs
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // We need to work out the "cheaper" of the two, with respect for the fact the USDC/WETH pool is needed
        {
            int256 a1;
            int256 b1;
            int256 a2;
            int256 b2;
            if(uptwp < wptwp) {
                // USDC price is under WETH price
                // Calculate a1,b2,a2,b2
                a1 = (int256) (quote);
                
                b1 = (int256) (IERC20(token).balanceOf(usdcP));
                
                a2 = (int256) (IERC20(_uniswapV2Router.WETH()).balanceOf(wethP));
                
                b2 = (int256) (IERC20(token).balanceOf(wethP));
                
                isUsdcLower = true;
            } else {
               // WETH price is under USDC price
                // Calculate a1,b2,a2,b2
                a2 = (int256) (quote);
                b2 = (int256) (IERC20(token).balanceOf(usdcP));
                a1 = (int256) (IERC20(_uniswapV2Router.WETH()).balanceOf(wethP));
                b1 = (int256) (IERC20(token).balanceOf(wethP));
                isUsdcLower = false;
            }
            // Divide a, b, and c by a big number and then multiply it back out 
            // the divisor is 9 (decimals of token) + 18 (eth decimals)
            int256 a = (a1 * b1 - a2 * b2)/(10**27);
            int256 b = (2 * b1 * b2 * (a1 + a2))/(10**27);
            int256 c = (b1 * b2 * (a1 * b2 - a2 * b1))/(10**27);
            (int256 x1,) = calcSolutionForQuadratic(a, b, c);
            // This calculates the amount required to get the two into sync - not maximum profit. 
            amount = uint256(x1) * 2;

        }

    }

    /// @dev find solution of quadratic equation: ax^2 + bx + c = 0, only return the positive solution
    function calcSolutionForQuadratic(
        int256 a,
        int256 b,
        int256 c
    ) internal pure returns (int256 x1, int256 x2) {
        int256 m = b**2 - 4 * a * c;
        // m < 0 leads to complex number
        require(m > 0, 'Complex number');

        int256 sqrtM = int256(sqrt(uint256(m)));
        x1 = (-b + sqrtM) / (2 * a);
        x2 = (-b - sqrtM) / (2 * a);
    }

    /// @dev Newton’s method for caculating square root of n
    function sqrt(uint256 n) internal pure returns (uint256 res) {
        assert(n > 1);

        // The scale factor is a crude way to turn everything into integer calcs.
        // Actually do (n * 10 ^ 4) ^ (1/2)
        uint256 _n = n * 10**6;
        uint256 c = _n;
        res = _n;

        uint256 xi;
        while (true) {
            xi = (res + c / res) / 2;
            // don't need be too precise to save gas
            if (res - xi < 1000) {
                break;
            }
            res = xi;
        }
        res = res / 10**3;
    }
}

File 3 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 4 of 13 : 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 5 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 6 of 13 : 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 7 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : 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 9 of 13 : 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 10 of 13 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 11 of 13 : IWETH.sol
pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

File 12 of 13 : 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 13 of 13 : 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": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"wasUsdcLower","type":"bool"}],"name":"ArbitragedPools","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Bought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Sold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addNewLPPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcArb","outputs":[{"internalType":"uint256","name":"amountTokens","type":"uint256"},{"internalType":"bool","name":"isUsdcLower","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeERC20Controller","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeWallet3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"}],"name":"checkBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"disableBlocklistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"doAirdropPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"doArb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256[]","name":"val","type":"uint256[]"}],"name":"loadAirdropValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"erc20Contract","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"proxiedApprove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20Contract","type":"address"}],"name":"proxiedSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20Contract","type":"address"}],"name":"proxiedSellAndSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20Contract","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"proxiedTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiedWETHWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setArbEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"theBot","type":"address"},{"internalType":"bool","name":"toSet","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setDevRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newDivisor","type":"uint32"}],"name":"setEthSendDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setMarketingRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"divisor","type":"uint32"}],"name":"setMaxTxDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"divisor","type":"uint32"}],"name":"setMaxWalletDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setTeamRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"},{"internalType":"uint256","name":"c","type":"uint256"}],"name":"testArbQuadratic","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260078054601960c11b6001600160c01b039091161790556008805466ffffffffffffff63ffffffff60d81b011916610fa0601960d91b0117905560098054600160401b600160e01b039081167d07d0000000000000000000000000000000000000000000001b5800001b5817909155600a80549091167c010000000000000000000000000000000000000000000003e8000003e8179055600b805467ffffff00ffffffff19166001179055348015620000bc57600080fd5b50620000c833620007b0565b600a8054600160401b600160e01b03199081167b896609add379c4c8edf204f1fff7c2bc2ff0f8d10000000000000000179091556007805473758c39307f001f241a378387e991415d232b620d6001600160a01b031990911617905560088054600160381b600160d81b0319167a896609add379c4c8edf204f1fff7c2bc2ff0f8d100000000000000179055600980549091167b126f5ca79f8089ee8be0ceec6b0a5f91e9b0488b000000000000000017905569d3c21bcecceda100000060016000620001923390565b6001600160a01b031681526020808201929092526040908101600090812093909355805160a081018252600181529182018390528101829052606081018290526080810182905290600390336001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506040518060a00160405280600115158152602001600015158152602001600063ffffffff168152602001600063ffffffff1681526020016000151581525060036000306001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506040518060a00160405280600115158152602001600015158152602001600063ffffffff168152602001600063ffffffff1681526020016000151581525060036000600760009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506040518060a00160405280600115158152602001600015158152602001600063ffffffff168152602001600063ffffffff1681526020016000151581525060036000600860079054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506040518060a00160405280600115158152602001600015158152602001600063ffffffff168152602001600063ffffffff1681526020016000151581525060036000600960089054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506200074e620007ac60201b60201c565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda10000006040516200079e91815260200190565b60405180910390a362000800565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61593a80620008106000396000f3fe6080604052600436106102f65760003560e01c80636faae4a71161018f578063a3976257116100e1578063dd62ed3e1161008a578063f14e89d311610064578063f14e89d3146108d7578063f206bbb7146108f7578063f2fde38b1461091757600080fd5b8063dd62ed3e14610851578063e0195f0714610897578063e9cb414f146108b757600080fd5b8063bb1789d6116100bb578063bb1789d6146107fc578063c9567bf91461081c578063db932ae21461083157600080fd5b8063a39762571461077e578063a9059cbb1461079e578063b1a4e0dc146107be57600080fd5b80637a52da0e1161014357806395d89b411161011d57806395d89b41146106ee5780639bfb8b1614610734578063a10122331461075e57600080fd5b80637a52da0e1461069157806388a65f46146106b15780638da5cb5b146106c657600080fd5b806370bfdd9d1161017457806370bfdd9d14610652578063715018a614610667578063751039fc1461067c57600080fd5b80636faae4a71461061257806370a082311461063257600080fd5b80633334294711610248578063473071ce116101fc578063571cbe0a116101d6578063571cbe0a146105b25780635932ead1146105d25780636612e66f146105f257600080fd5b8063473071ce1461053957806350d78cc9146105595780635342acb41461057957600080fd5b8063342aa8b51161022d578063342aa8b5146104e457806338573ef814610504578063470054d41461051957600080fd5b806333342947146104a457806333a17282146104c457600080fd5b806318160ddd116102aa57806323b872dd1161028457806323b872dd14610453578063246bf85f14610473578063313ce5671461048857600080fd5b806318160ddd146103ec57806319db2dcb146104135780631c8179a51461043357600080fd5b8063095ea7b3116102db578063095ea7b31461037c57806313da0a14146103ac57806314b3b077146103cc57600080fd5b80630400bb7a1461030257806306fdde031461032457600080fd5b366102fd57005b600080fd5b34801561030e57600080fd5b5061032261031d36600461504c565b610937565b005b34801561033057600080fd5b5060408051808201909152601281527f4d69636861656c204d7965727320436f696e000000000000000000000000000060208201525b6040516103739190615072565b60405180910390f35b34801561038857600080fd5b5061039c6103973660046150dc565b61095b565b6040519015158152602001610373565b3480156103b857600080fd5b506103226103c736600461504c565b610972565b3480156103d857600080fd5b506103226103e7366004615108565b6109fc565b3480156103f857600080fd5b5069d3c21bcecceda10000005b604051908152602001610373565b34801561041f57600080fd5b5061032261042e366004615108565b610a33565b34801561043f57600080fd5b5061032261044e366004615171565b610a80565b34801561045f57600080fd5b5061039c61046e3660046151dd565b610bc1565b34801561047f57600080fd5b50610322610c2a565b34801561049457600080fd5b5060405160098152602001610373565b3480156104b057600080fd5b506103226104bf36600461504c565b610c36565b3480156104d057600080fd5b5061039c6104df3660046151dd565b610c66565b3480156104f057600080fd5b506103226104ff36600461522c565b610d6e565b34801561051057600080fd5b50610322610ecb565b34801561052557600080fd5b5061032261053436600461504c565b610f6f565b34801561054557600080fd5b50610322610554366004615108565b611015565b34801561056557600080fd5b5061032261057436600461504c565b6110a3565b34801561058557600080fd5b5061039c610594366004615108565b6001600160a01b031660009081526003602052604090205460ff1690565b3480156105be57600080fd5b5061039c6105cd3660046151dd565b6110c7565b3480156105de57600080fd5b506103226105ed366004615265565b6111a0565b3480156105fe57600080fd5b5061032261060d36600461522c565b6111ce565b34801561061e57600080fd5b5061032261062d36600461504c565b611201565b34801561063e57600080fd5b5061040561064d366004615108565b6112b0565b34801561065e57600080fd5b506103226112bb565b34801561067357600080fd5b506103226112da565b34801561068857600080fd5b506103226112ec565b34801561069d57600080fd5b506103226106ac366004615108565b611332565b3480156106bd57600080fd5b506103226113f2565b3480156106d257600080fd5b506000546040516001600160a01b039091168152602001610373565b3480156106fa57600080fd5b5060408051808201909152600281527f4d4d0000000000000000000000000000000000000000000000000000000000006020820152610366565b34801561074057600080fd5b50610749611654565b60408051928352901515602083015201610373565b34801561076a57600080fd5b50610322610779366004615108565b611c53565b34801561078a57600080fd5b5061032261079936600461504c565b611c9c565b3480156107aa57600080fd5b5061039c6107b93660046150dc565b611cc9565b3480156107ca57600080fd5b5061039c6107d9366004615108565b6001600160a01b0316600090815260036020526040902054610100900460ff1690565b34801561080857600080fd5b5061032261081736600461504c565b611cd6565b34801561082857600080fd5b50610322611d5e565b34801561083d57600080fd5b5061032261084c36600461504c565b61294f565b34801561085d57600080fd5b5061040561086c366004615282565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156108a357600080fd5b506103226108b2366004615108565b6129cb565b3480156108c357600080fd5b506103226108d2366004615108565b612a14565b3480156108e357600080fd5b506103226108f23660046152b0565b612a54565b34801561090357600080fd5b50610322610912366004615265565b612a5f565b34801561092357600080fd5b50610322610932366004615108565b612a8b565b61093f612b18565b600a805463ffffffff191663ffffffff92909216919091179055565b6000610968338484612b72565b5060015b92915050565b61097a612b18565b614e208163ffffffff1611156109d75760405162461bcd60e51b815260206004820181905260248201527f4d4d3a204d6178696d756d207472616e7366657220746178206f66203230252e60448201526064015b60405180910390fd5b6007805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b610a04612b18565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a3b612b18565b600880546001600160a01b03909216670100000000000000027fffffffffff0000000000000000000000000000000000000000ffffffffffffff909216919091179055565b610a88612b18565b828114610ad75760405162461bcd60e51b815260206004820152601460248201527f4c656e6774687320646f6e2774206d617463682e00000000000000000000000060448201526064016109ce565b60005b83811015610bba57828282818110610af457610af46152dc565b9050602002013560056000878785818110610b1157610b116152dc565b9050602002016020810190610b269190615108565b6001600160a01b031681526020810191909152604001600020556006858583818110610b5457610b546152dc565b9050602002016020810190610b699190615108565b815460018101835560009283526020909220909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0390921691909117905580610bb281615308565b915050610ada565b5050505050565b6000610bce848484612cca565b610c208433610c1b856040518060600160405280602881526020016158dd602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906132a4565b612b72565b5060019392505050565b610c3460006132d0565b565b610c3e612b18565b600a805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600a54600090600160401b90046001600160a01b0316336001600160a01b031614610cee5760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b60405163095ea7b360e01b81526001600160a01b0384811660048301526024820184905285919082169063095ea7b3906044015b6020604051808303816000875af1158015610d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d659190615321565b95945050505050565b610d76612b18565b6001600160a01b0382166000908152600360205260409020546a0100000000000000000000900460ff1615610e135760405162461bcd60e51b815260206004820152603b60248201527f4d4d3a2043616e6e6f74206d616e6970756c61746520626c6f636b6c6973742060448201527f737461747573206f662061206c697175696469747920706169722e000000000060648201526084016109ce565b8015610e9a57600854640100000000900460ff1615610e9a5760405162461bcd60e51b815260206004820152602b60248201527f4d4d3a20426c6f636b6c697374206164646974696f6e7320686176652062656560448201527f6e2064697361626c65642e00000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b03909116600090815260036020526040902080549115156101000261ff0019909216919091179055565b610ed3612b18565b6006548015610f6c576000805b82811015610f5d57600060068281548110610efd57610efd6152dc565b60009182526020808320909101546001600160a01b031680835260059091526040822054909250610f3391339184918781613a78565b6001600160a01b031660009081526005602052604081205580610f5581615308565b915050610ee0565b50610f6a6006600061501a565b505b50565b610f77612b18565b60085465010000000000900460ff1615610ff95760405162461bcd60e51b815260206004820152603260248201527f4d4d3a204c696d6974732068617665206265656e2072656d6f76656420616e6460448201527f2063616e6e6f742062652072652d7365742e000000000000000000000000000060648201526084016109ce565b600b805463ffffffff191663ffffffff92909216919091179055565b600a54600160401b90046001600160a01b0316336001600160a01b03161461109a5760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b610f6c81613f29565b6110ab612b18565b6008805463ffffffff191663ffffffff92909216919091179055565b600a54600090600160401b90046001600160a01b0316336001600160a01b03161461114f5760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301526024820184905285919082169063a9059cbb90604401610d22565b6111a8612b18565b600b80549115156701000000000000000267ff0000000000000019909216919091179055565b6111d6612b18565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b611209612b18565b60085465010000000000900460ff161561128b5760405162461bcd60e51b815260206004820152603260248201527f4d4d3a204c696d6974732068617665206265656e2072656d6f76656420616e6460448201527f2063616e6e6f742062652072652d7365742e000000000000000000000000000060648201526084016109ce565b600a805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b600061096c82614196565b6112c3612b18565b6008805464ff000000001916640100000000179055565b6112e2612b18565b610c346000614200565b6112f4612b18565b6008805465ff0000000000191665010000000000179055600b805463ffffffff19166001179055600a80546001600160e01b0316600160e01b179055565b600a54600160401b90046001600160a01b0316336001600160a01b0316146113b75760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b476113c182613f29565b60006113cd824761533e565b600a549091506113ed90600160401b90046001600160a01b03168261425d565b505050565b600a54600160401b90046001600160a01b0316336001600160a01b0316146114775760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b6000600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f09190615355565b90506000600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190615355565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d99190615372565b6040517f2e1a7d4d000000000000000000000000000000000000000000000000000000008152600481018290529091506001600160a01b03841690632e1a7d4d90602401600060405180830381600087803b15801561163757600080fd5b505af115801561164b573d6000803e3d6000fd5b50505050505050565b6000806000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d09190615355565b6001600160a01b031663e6a4390530600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611732573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117569190615355565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156117a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c59190615355565b90506000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561181c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118409190615355565b60405163e6a4390560e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063e6a4390590604401602060405180830381865afa1580156118a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c49190615355565b604080516002808252606082018352929350600092909160208301908036833701905050905073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881600081518110611912576119126152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a99190615355565b816001815181106119bc576119bc6152dc565b6001600160a01b039283166020918202929092010152600b546040516370a0823160e01b81528483166004820152600092600160401b9092049091169063d06ca61f9073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48906370a0823190602401602060405180830381865afa158015611a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5f9190615372565b846040518363ffffffff1660e01b8152600401611a7d9291906153e5565b600060405180830381865afa158015611a9a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ac29190810190615406565b90506000611ae5846001600160a01b031660009081526001602052604090205490565b82600181518110611af857611af86152dc565b6020026020010151611b0a91906154da565b90506000611b2d866001600160a01b031660009081526001602052604090205490565b600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba49190615355565b6040516370a0823160e01b81526001600160a01b03898116600483015291909116906370a0823190602401602060405180830381865afa158015611bec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c109190615372565b611c1a91906154da565b9050611c4485873086600181518110611c3557611c356152dc565b60200260200101518686614376565b90999098509650505050505050565b611c5b612b18565b600980546001600160a01b03909216600160401b027fffffffff0000000000000000000000000000000000000000ffffffffffffffff909216919091179055565b611ca4612b18565b6009805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b6000610968338484612cca565b611cde612b18565b614e208163ffffffff161115611d365760405162461bcd60e51b815260206004820152601c60248201527f4d4d3a204d6178696d756d2073656c6c20746178206f66203230252e0000000060448201526064016109ce565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b611d66612b18565b600b54640100000000900460ff1615611dc15760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016109ce565b600b80547fffffffff0000000000000000000000000000000000000000ffffffffffffffff167b7a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000001790819055737a250d5630b4cf539739df2c5dacb4c659f2488d90611e469030906001600160a01b03600160401b9091041669d3c21bcecceda1000000612b72565b6000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eaa9190615355565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1b9190615355565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8c9190615355565b90506000826001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff29190615355565b6040517fc9c6539600000000000000000000000000000000000000000000000000000000815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af115801561206d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120919190615355565b600754909150600090606490600160c01b900463ffffffff166120b3306112b0565b6120bd91906154ee565b6120c791906154da565b600854909150600090606490600160d81b900463ffffffff166120e9306112b0565b6120f391906154ee565b6120fd91906154da565b60075490915060009060649061212090600160c01b900463ffffffff16476154ee565b61212a91906154da565b60085490915060009060649061214d90600160d81b900463ffffffff16476154ee565b61215791906154da565b600b549091506001600160a01b03600160401b9091041663f305d71983308760008061218b6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156121f3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612218919061550d565b5050604080516002808252606082018352600093509091602083019080368337019050509050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b59190615355565b816000815181106122c8576122c86152dc565b60200260200101906001600160a01b031690816001600160a01b03168152505073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881600181518110612310576123106152dc565b6001600160a01b039283166020918202929092010152600b546040517f7ff36ab5000000000000000000000000000000000000000000000000000000008152600160401b90910490911690637ff36ab59084906123789060009086903090429060040161553b565b60006040518083038185885af1158015612396573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526123bf9190810190615406565b506040516370a0823160e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489060009082906370a0823190602401602060405180830381865afa158015612414573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124389190615372565b600b5460405163095ea7b360e01b81526001600160a01b03600160401b909204821660048201526024810183905291925083169063095ea7b3906044016020604051808303816000875af1158015612494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b89190615321565b50600b546001600160a01b03600160401b9091041663e8e3370073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4830848a6000806124ff6000546001600160a01b031690565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015260a483015290911660c48201524260e4820152610104016060604051808303816000875af1158015612576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259a919061550d565b5050600b8054600a80546001600160e01b03167c0a0000000000000000000000000000000000000000000000000000000017905567ffff00ffffffffff19166701010001000000051790819055600780547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff16600160a01b63ffffffff43160217905560405163095ea7b360e01b8152600160401b9091046001600160a01b03908116600483015260001960248301528b16915063095ea7b3906044016020604051808303816000875af1158015612676573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269a9190615321565b50600b5460405163095ea7b360e01b8152600160401b9091046001600160a01b039081166004830152600019602483015289169063095ea7b3906044016020604051808303816000875af11580156126f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061271a9190615321565b506040518060a00160405280600015158152602001600015158152602001600063ffffffff168152602001600063ffffffff16815260200160011515815250600360008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506040518060a00160405280600015158152602001600015158152602001600063ffffffff168152602001600063ffffffff16815260200160011515815250600360008a6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff02191690831515021790555090505050505050505050505050565b612957612b18565b614e208163ffffffff1611156129af5760405162461bcd60e51b815260206004820152601b60248201527f4d4d3a204d6178696d756d2062757920746178206f66203230252e000000000060448201526064016109ce565b6009805463ffffffff191663ffffffff92909216919091179055565b6129d3612b18565b600a80546001600160a01b03909216600160401b027fffffffff0000000000000000000000000000000000000000ffffffffffffffff909216919091179055565b612a1c612b18565b6001600160a01b0316600090815260036020526040902080546aff0000000000000000000019166a0100000000000000000000179055565b610bba8383836147fe565b612a67612b18565b6008805491151566010000000000000266ff00000000000019909216919091179055565b612a93612b18565b6001600160a01b038116612b0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109ce565b610f6c81614200565b6000546001600160a01b03163314610c345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ce565b6001600160a01b038316612bed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b038216612c695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316612d465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b038216612dc25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b60008111612e385760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016109ce565b60008080612e4e6000546001600160a01b031690565b6001600160a01b0316866001600160a01b031614158015612e7d57506000546001600160a01b03868116911614155b8015612e9257506001600160a01b0386163014155b8015612eb757506001600160a01b03851660009081526003602052604090205460ff16155b8015612edc57506001600160a01b03861660009081526003602052604090205460ff16155b15613289576001600160a01b038516600090815260036020526040902054610100900460ff16158015612f2d57506001600160a01b038616600090815260036020526040902054610100900460ff16155b612f795760405162461bcd60e51b815260206004820152601060248201527f4d4d3a20426c6f636b6c69737465642e0000000000000000000000000000000060448201526064016109ce565b6001600160a01b0386166000908152600360205260409020546a0100000000000000000000900460ff168015612fc45750600b546001600160a01b03868116600160401b9092041614155b156130d657600954600b5463ffffffff9091169250670100000000000000900460ff1615613093576001600160a01b038516600090815260036020526040902054436201000090910463ffffffff16036130605760405162461bcd60e51b815260206004820152601560248201527f4d4d3a204f6e652074782070657220626c6f636b2e000000000000000000000060448201526064016109ce565b6001600160a01b0385166000908152600360205260409020805465ffffffff00001916620100004363ffffffff16021790555b60075443906130b190600290600160a01b900463ffffffff16615570565b63ffffffff1611156130c6576001925061328e565b6130d18585846148ec565b61328e565b6001600160a01b0385166000908152600360205260409020546a0100000000000000000000900460ff1680156131215750600b546001600160a01b03878116600160401b9092041614155b156132725750600b54600190670100000000000000900460ff16156131c7576001600160a01b038616600090815260036020526040902054436201000090910463ffffffff16036131b45760405162461bcd60e51b815260206004820152601560248201527f4d4d3a204f6e652074782070657220626c6f636b2e000000000000000000000060448201526064016109ce565b6001600160a01b03861660005260036020525b600954600a5463ffffffff640100000000909204821693506131fc91600160e01b9091041669d3c21bcecceda10000006154da565b620186a061320a8482615598565b61321a9063ffffffff16876154ee565b61322491906154da565b11156130d15760405162461bcd60e51b815260206004820181905260248201527f4d4d3a204f766572206d6178207472616e73616374696f6e20616d6f756e742e60448201526064016109ce565b600754600160e01b900463ffffffff16915061328e565b600091505b61329c868686858786613a78565b505050505050565b600081848411156132c85760405162461bcd60e51b81526004016109ce9190615072565b505050900390565b6000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133499190615355565b6001600160a01b031663e6a4390530600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133cf9190615355565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa15801561341a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343e9190615355565b90506000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613495573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b99190615355565b60405163e6a4390560e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063e6a4390590604401602060405180830381865afa158015613519573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061353d9190615355565b604080516002808252606082018352929350600092909160208301908036833701905050905073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb488160008151811061358b5761358b6152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136229190615355565b81600181518110613635576136356152dc565b6001600160a01b039283166020918202929092010152600b546040516370a0823160e01b81528483166004820152600092600160401b9092049091169063d06ca61f9073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48906370a0823190602401602060405180830381865afa1580156136b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d89190615372565b846040518363ffffffff1660e01b81526004016136f69291906153e5565b600060405180830381865afa158015613713573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261373b9190810190615406565b9050600061375e846001600160a01b031660009081526001602052604090205490565b82600181518110613771576137716152dc565b602002602001015161378391906154da565b905060006137a6866001600160a01b031660009081526001602052604090205490565b600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061381d9190615355565b6040516370a0823160e01b81526001600160a01b03898116600483015291909116906370a0823190602401602060405180830381865afa158015613865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138899190615372565b61389391906154da565b90508615806138b8575060146138aa8360176154ee565b6138b491906154da565b8110155b806138d9575060146138cb8260176154ee565b6138d591906154da565b8210155b1561164b57600080613909878930886001815181106138fa576138fa6152dc565b60200260200101518888614376565b9150915080156139525781613933886001600160a01b031660009081526001602052604090205490565b111561394d576139438783614a27565b61394d8883614a6b565b61398c565b81613972896001600160a01b031660009081526001602052604090205490565b111561398c576139828883614a27565b61394d8783614a6b565b866001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139c757600080fd5b505af11580156139db573d6000803e3d6000fd5b50505050876001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a1a57600080fd5b505af1158015613a2e573d6000803e3d6000fd5b50506040805185815284151560208201527fc0d2cbff9eb511672403883070dc0720aca13a206999a4fe3e48d1a1e4642e27935001905060405180910390a1505050505050505050565b6000808315613bb55760019150613a8f828761533e565b6001600160a01b0388166000908152600360209081526040808320805469ffffffff000000000000191666010000000000004363ffffffff16021790556001909152902054909150613ae29087906155bd565b6001600160a01b038816600090815260046020908152604082209290925561dead9052600190527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d54613b369082906155bd565b61dead600081905260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d919091556040516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613ba59085815260200190565b60405180910390a3506000613bce565b613bbf8686614a8f565b9050613bcb818761533e565b91505b8015613e0d5730600090815260016020526040902054613bef9082906155bd565b30600081815260016020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613c409085815260200190565b60405180910390a36000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc19190615355565b6001600160a01b031663e6a4390530600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d479190615355565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015613d92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db69190615355565b90506000816001600160a01b03168a6001600160a01b031603613ddb57506000613e00565b816001600160a01b0316896001600160a01b031603613dfc57506000613e00565b5060015b613e0a8382614ab6565b50505b8215613e7a576008546601000000000000900460ff1615613e3257613e3260016132d0565b876001600160a01b03167fae92ab4b6f8f401ead768d3273e6bb937a13e39827d19c6376e8fd4512a05d9a83604051613e6d91815260200190565b60405180910390a2613ebe565b866001600160a01b03167fc55650ccda1011e1cdc769b1fbf546ebb8c97800b6072b49e06cd560305b1d6783604051613eb591815260200190565b60405180910390a25b613ec88887614a27565b613ed28783614a6b565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613f1791815260200190565b60405180910390a35050505050505050565b604080516002808252606082018352839260009291906020830190803683370190505090508281600081518110613f6257613f626152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ff99190615355565b8160018151811061400c5761400c6152dc565b6001600160a01b0392831660209182029290920101526040516370a0823160e01b81523060048201526000918416906370a0823190602401602060405180830381865afa158015614061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140859190615372565b600b5460405163095ea7b360e01b81526001600160a01b03600160401b909204821660048201526024810183905291925084169063095ea7b3906044016020604051808303816000875af11580156140e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141059190615321565b50600b546040517f791ac947000000000000000000000000000000000000000000000000000000008152600160401b9091046001600160a01b03169063791ac9479061415e9084906000908790309042906004016155d5565b600060405180830381600087803b15801561417857600080fd5b505af115801561418c573d6000803e3d6000fd5b5050505050505050565b6001600160a01b03811660009081526003602052604081205443660100000000000090910463ffffffff16036141e257506001600160a01b031660009081526004602052604090205490565b6001600160a01b03821660009081526001602052604090205461096c565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156142ad5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109ce565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146142fa576040519150601f19603f3d011682016040523d82523d6000602084013e6142ff565b606091505b50509050806113ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109ce565b600080737a250d5630b4cf539739df2c5dacb4c659f2488d8180808087891015614550576040516370a0823160e01b81526001600160a01b038e811660048301528b95508c16906370a0823190602401602060405180830381865afa1580156143e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144079190615372565b9250846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061446b9190615355565b6040516370a0823160e01b81526001600160a01b038e8116600483015291909116906370a0823190602401602060405180830381865afa1580156144b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144d79190615372565b6040516370a0823160e01b81526001600160a01b038e81166004830152919350908c16906370a0823190602401602060405180830381865afa158015614521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145459190615372565b905060019550614702565b6040516370a0823160e01b81526001600160a01b038e811660048301528b93508c16906370a0823190602401602060405180830381865afa158015614599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145bd9190615372565b9050846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146219190615355565b6040516370a0823160e01b81526001600160a01b038e8116600483015291909116906370a0823190602401602060405180830381865afa158015614669573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061468d9190615372565b6040516370a0823160e01b81526001600160a01b038e81166004830152919550908c16906370a0823190602401602060405180830381865afa1580156146d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146fb9190615372565b9250600095505b60006b033b2e3c9fd0803ce800000061471b8385615611565b6147258688615611565b61472f9190615698565b61473991906156d7565b905060006b033b2e3c9fd0803ce80000006147548588615705565b84614760886002615611565b61476a9190615611565b6147749190615611565b61477e91906156d7565b905060006b033b2e3c9fd0803ce80000006147998787615611565b6147a3868a615611565b6147ad9190615698565b6147b78689615611565b6147c19190615611565b6147cb91906156d7565b905060006147da8484846147fe565b5090506147e88160026154ee565b9a50505050505050505050965096945050505050565b600080808361480e876004615611565b6148189190615611565b614823600287615874565b61482d9190615698565b90506000811361487f5760405162461bcd60e51b815260206004820152600e60248201527f436f6d706c6578206e756d62657200000000000000000000000000000000000060448201526064016109ce565b600061488a82614ebd565b9050614897876002615611565b816148a188615883565b6148ab9190615705565b6148b591906156d7565b93506148c2876002615611565b816148cc88615883565b6148d69190615698565b6148e091906156d7565b92505050935093915050565b6000620186a06148fc8382615598565b61490c9063ffffffff16856154ee565b61491691906154da565b600a5490915061493d90600160e01b900463ffffffff1669d3c21bcecceda10000006154da565b81111561498c5760405162461bcd60e51b815260206004820181905260248201527f4d4d3a204f766572206d6178207472616e73616374696f6e20616d6f756e742e60448201526064016109ce565b600b546149a99063ffffffff1669d3c21bcecceda10000006154da565b816149c9866001600160a01b031660009081526001602052604090205490565b6149d391906155bd565b1115614a215760405162461bcd60e51b815260206004820152601b60248201527f4d4d3a204f766572206d61782077616c6c657420616d6f756e742e000000000060448201526064016109ce565b50505050565b6001600160a01b038216600090815260016020526040902054614a4b90829061533e565b6001600160a01b0390921660009081526001602052604090209190915550565b6001600160a01b038216600090815260016020526040902054614a4b9082906155bd565b6000620186a0614aa563ffffffff8416856154ee565b614aaf91906154da565b9392505050565b600b805465ff00000000001916650100000000001790819055306000908152600260209081526040808320600160401b9094046001600160a01b031683529290522054821115614b2957600b54614b29903090600160401b90046001600160a01b031669d3c21bcecceda1000000612b72565b8015614cab576040805160028082526060820183526000926020830190803683370190505090503081600081518110614b6457614b646152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614bfb9190615355565b81600181518110614c0e57614c0e6152dc565b6001600160a01b039283166020918202929092010152600b546040516318cbafe560e01b8152600160401b909104909116906318cbafe590614c5d9086906000908690309042906004016155d5565b6000604051808303816000875af1158015614c7c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614ca49190810190615406565b5050614e6d565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110614ce257614ce26152dc565b60200260200101906001600160a01b031690816001600160a01b03168152505073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881600181518110614d2a57614d2a6152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614dc19190615355565b81600281518110614dd457614dd46152dc565b6001600160a01b039283166020918202929092010152600b546040516318cbafe560e01b8152600160401b909104909116906318cbafe590614e239086906000908690309042906004016155d5565b6000604051808303816000875af1158015614e42573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614e6a9190810190615406565b50505b600a54614e9090640100000000900463ffffffff16670de0b6b3a764000061589f565b67ffffffffffffffff16471115614eaa57614eaa47614f2f565b5050600b805465ff000000000019169055565b600060018211614ecf57614ecf6158c6565b6000614ede83620f42406154ee565b91508190508060005b6002614ef385846154da565b614efd90866155bd565b614f0791906154da565b90506103e8614f16828661533e565b10614f2357809350614ee7565b610d656103e8856154da565b600854600a5460095460009263ffffffff90811692614f5a9290821691600160e01b90910416615570565b614f649190615570565b60075460095463ffffffff9283169350614fa8926001600160a01b03909216918491614f9991600160e01b90910416866154ee565b614fa391906154da565b61425d565b600854600a54614fe39167010000000000000090046001600160a01b03169067ffffffffffffffff841690614f999063ffffffff16866154ee565b600954600854610f6a91600160401b90046001600160a01b03169067ffffffffffffffff841690614f999063ffffffff16866154ee565b5080546000825590600052602060002090810190610f6c91905b808211156150485760008155600101615034565b5090565b60006020828403121561505e57600080fd5b813563ffffffff81168114614aaf57600080fd5b600060208083528351808285015260005b8181101561509f57858101830151858201604001528201615083565b818111156150b1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f6c57600080fd5b600080604083850312156150ef57600080fd5b82356150fa816150c7565b946020939093013593505050565b60006020828403121561511a57600080fd5b8135614aaf816150c7565b60008083601f84011261513757600080fd5b50813567ffffffffffffffff81111561514f57600080fd5b6020830191508360208260051b850101111561516a57600080fd5b9250929050565b6000806000806040858703121561518757600080fd5b843567ffffffffffffffff8082111561519f57600080fd5b6151ab88838901615125565b909650945060208701359150808211156151c457600080fd5b506151d187828801615125565b95989497509550505050565b6000806000606084860312156151f257600080fd5b83356151fd816150c7565b9250602084013561520d816150c7565b929592945050506040919091013590565b8015158114610f6c57600080fd5b6000806040838503121561523f57600080fd5b823561524a816150c7565b9150602083013561525a8161521e565b809150509250929050565b60006020828403121561527757600080fd5b8135614aaf8161521e565b6000806040838503121561529557600080fd5b82356152a0816150c7565b9150602083013561525a816150c7565b6000806000606084860312156152c557600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161531a5761531a6152f2565b5060010190565b60006020828403121561533357600080fd5b8151614aaf8161521e565b600082821015615350576153506152f2565b500390565b60006020828403121561536757600080fd5b8151614aaf816150c7565b60006020828403121561538457600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600081518084526020808501945080840160005b838110156153da5781516001600160a01b0316875295820195908201906001016153b5565b509495945050505050565b8281526040602082015260006153fe60408301846153a1565b949350505050565b6000602080838503121561541957600080fd5b825167ffffffffffffffff8082111561543157600080fd5b818501915085601f83011261544557600080fd5b8151818111156154575761545761538b565b8060051b604051601f19603f8301168101818110858211171561547c5761547c61538b565b60405291825284820192508381018501918883111561549a57600080fd5b938501935b828510156154b85784518452938501939285019261549f565b98975050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826154e9576154e96154c4565b500490565b6000816000190483118215151615615508576155086152f2565b500290565b60008060006060848603121561552257600080fd5b8351925060208401519150604084015190509250925092565b84815260806020820152600061555460808301866153a1565b6001600160a01b03949094166040830152506060015292915050565b600063ffffffff80831681851680830382111561558f5761558f6152f2565b01949350505050565b600063ffffffff838116908316818110156155b5576155b56152f2565b039392505050565b600082198211156155d0576155d06152f2565b500190565b85815284602082015260a0604082015260006155f460a08301866153a1565b6001600160a01b0394909416606083015250608001529392505050565b60006001600160ff1b03600084136000841385830485118282161615615639576156396152f2565b600160ff1b6000871286820588128184161615615658576156586152f2565b60008712925087820587128484161615615674576156746152f2565b8785058712818416161561568a5761568a6152f2565b505050929093029392505050565b600080831283600160ff1b018312811516156156b6576156b66152f2565b836001600160ff1b030183138116156156d1576156d16152f2565b50500390565b6000826156e6576156e66154c4565b600160ff1b821460001984141615615700576157006152f2565b500590565b6000808212826001600160ff1b0303841381151615615726576157266152f2565b82600160ff1b03841281161561573e5761573e6152f2565b50500190565b80825b60018086116157565750615788565b816001600160ff1b030482111561576f5761576f6152f2565b8086161561577c57918102915b9490941c938002615747565b935093915050565b60008280156157a657600181146157b0576157b9565b600191505061096c565b8291505061096c565b50816157c75750600061096c565b506001600082138082146157e05780156157fe57615817565b826001600160ff1b03048311156157f9576157f96152f2565b615817565b826001600160ff1b0305831215615817576158176152f2565b50808316156158235750805b6158338360011c83840283615744565b806001600160ff1b03048211600083131615615851576158516152f2565b80600160ff1b05821260008312161561586c5761586c6152f2565b029392505050565b6000614aaf60ff841683615790565b6000600160ff1b8203615898576158986152f2565b5060000390565b600067ffffffffffffffff808416806158ba576158ba6154c4565b92169190910492915050565b634e487b7160e01b600052600160045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220eef60a8f0438bb272383e067bbf55e60a696684b0b7ec1589aa52a457704180164736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102f65760003560e01c80636faae4a71161018f578063a3976257116100e1578063dd62ed3e1161008a578063f14e89d311610064578063f14e89d3146108d7578063f206bbb7146108f7578063f2fde38b1461091757600080fd5b8063dd62ed3e14610851578063e0195f0714610897578063e9cb414f146108b757600080fd5b8063bb1789d6116100bb578063bb1789d6146107fc578063c9567bf91461081c578063db932ae21461083157600080fd5b8063a39762571461077e578063a9059cbb1461079e578063b1a4e0dc146107be57600080fd5b80637a52da0e1161014357806395d89b411161011d57806395d89b41146106ee5780639bfb8b1614610734578063a10122331461075e57600080fd5b80637a52da0e1461069157806388a65f46146106b15780638da5cb5b146106c657600080fd5b806370bfdd9d1161017457806370bfdd9d14610652578063715018a614610667578063751039fc1461067c57600080fd5b80636faae4a71461061257806370a082311461063257600080fd5b80633334294711610248578063473071ce116101fc578063571cbe0a116101d6578063571cbe0a146105b25780635932ead1146105d25780636612e66f146105f257600080fd5b8063473071ce1461053957806350d78cc9146105595780635342acb41461057957600080fd5b8063342aa8b51161022d578063342aa8b5146104e457806338573ef814610504578063470054d41461051957600080fd5b806333342947146104a457806333a17282146104c457600080fd5b806318160ddd116102aa57806323b872dd1161028457806323b872dd14610453578063246bf85f14610473578063313ce5671461048857600080fd5b806318160ddd146103ec57806319db2dcb146104135780631c8179a51461043357600080fd5b8063095ea7b3116102db578063095ea7b31461037c57806313da0a14146103ac57806314b3b077146103cc57600080fd5b80630400bb7a1461030257806306fdde031461032457600080fd5b366102fd57005b600080fd5b34801561030e57600080fd5b5061032261031d36600461504c565b610937565b005b34801561033057600080fd5b5060408051808201909152601281527f4d69636861656c204d7965727320436f696e000000000000000000000000000060208201525b6040516103739190615072565b60405180910390f35b34801561038857600080fd5b5061039c6103973660046150dc565b61095b565b6040519015158152602001610373565b3480156103b857600080fd5b506103226103c736600461504c565b610972565b3480156103d857600080fd5b506103226103e7366004615108565b6109fc565b3480156103f857600080fd5b5069d3c21bcecceda10000005b604051908152602001610373565b34801561041f57600080fd5b5061032261042e366004615108565b610a33565b34801561043f57600080fd5b5061032261044e366004615171565b610a80565b34801561045f57600080fd5b5061039c61046e3660046151dd565b610bc1565b34801561047f57600080fd5b50610322610c2a565b34801561049457600080fd5b5060405160098152602001610373565b3480156104b057600080fd5b506103226104bf36600461504c565b610c36565b3480156104d057600080fd5b5061039c6104df3660046151dd565b610c66565b3480156104f057600080fd5b506103226104ff36600461522c565b610d6e565b34801561051057600080fd5b50610322610ecb565b34801561052557600080fd5b5061032261053436600461504c565b610f6f565b34801561054557600080fd5b50610322610554366004615108565b611015565b34801561056557600080fd5b5061032261057436600461504c565b6110a3565b34801561058557600080fd5b5061039c610594366004615108565b6001600160a01b031660009081526003602052604090205460ff1690565b3480156105be57600080fd5b5061039c6105cd3660046151dd565b6110c7565b3480156105de57600080fd5b506103226105ed366004615265565b6111a0565b3480156105fe57600080fd5b5061032261060d36600461522c565b6111ce565b34801561061e57600080fd5b5061032261062d36600461504c565b611201565b34801561063e57600080fd5b5061040561064d366004615108565b6112b0565b34801561065e57600080fd5b506103226112bb565b34801561067357600080fd5b506103226112da565b34801561068857600080fd5b506103226112ec565b34801561069d57600080fd5b506103226106ac366004615108565b611332565b3480156106bd57600080fd5b506103226113f2565b3480156106d257600080fd5b506000546040516001600160a01b039091168152602001610373565b3480156106fa57600080fd5b5060408051808201909152600281527f4d4d0000000000000000000000000000000000000000000000000000000000006020820152610366565b34801561074057600080fd5b50610749611654565b60408051928352901515602083015201610373565b34801561076a57600080fd5b50610322610779366004615108565b611c53565b34801561078a57600080fd5b5061032261079936600461504c565b611c9c565b3480156107aa57600080fd5b5061039c6107b93660046150dc565b611cc9565b3480156107ca57600080fd5b5061039c6107d9366004615108565b6001600160a01b0316600090815260036020526040902054610100900460ff1690565b34801561080857600080fd5b5061032261081736600461504c565b611cd6565b34801561082857600080fd5b50610322611d5e565b34801561083d57600080fd5b5061032261084c36600461504c565b61294f565b34801561085d57600080fd5b5061040561086c366004615282565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156108a357600080fd5b506103226108b2366004615108565b6129cb565b3480156108c357600080fd5b506103226108d2366004615108565b612a14565b3480156108e357600080fd5b506103226108f23660046152b0565b612a54565b34801561090357600080fd5b50610322610912366004615265565b612a5f565b34801561092357600080fd5b50610322610932366004615108565b612a8b565b61093f612b18565b600a805463ffffffff191663ffffffff92909216919091179055565b6000610968338484612b72565b5060015b92915050565b61097a612b18565b614e208163ffffffff1611156109d75760405162461bcd60e51b815260206004820181905260248201527f4d4d3a204d6178696d756d207472616e7366657220746178206f66203230252e60448201526064015b60405180910390fd5b6007805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b610a04612b18565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a3b612b18565b600880546001600160a01b03909216670100000000000000027fffffffffff0000000000000000000000000000000000000000ffffffffffffff909216919091179055565b610a88612b18565b828114610ad75760405162461bcd60e51b815260206004820152601460248201527f4c656e6774687320646f6e2774206d617463682e00000000000000000000000060448201526064016109ce565b60005b83811015610bba57828282818110610af457610af46152dc565b9050602002013560056000878785818110610b1157610b116152dc565b9050602002016020810190610b269190615108565b6001600160a01b031681526020810191909152604001600020556006858583818110610b5457610b546152dc565b9050602002016020810190610b699190615108565b815460018101835560009283526020909220909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0390921691909117905580610bb281615308565b915050610ada565b5050505050565b6000610bce848484612cca565b610c208433610c1b856040518060600160405280602881526020016158dd602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906132a4565b612b72565b5060019392505050565b610c3460006132d0565b565b610c3e612b18565b600a805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600a54600090600160401b90046001600160a01b0316336001600160a01b031614610cee5760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b60405163095ea7b360e01b81526001600160a01b0384811660048301526024820184905285919082169063095ea7b3906044015b6020604051808303816000875af1158015610d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d659190615321565b95945050505050565b610d76612b18565b6001600160a01b0382166000908152600360205260409020546a0100000000000000000000900460ff1615610e135760405162461bcd60e51b815260206004820152603b60248201527f4d4d3a2043616e6e6f74206d616e6970756c61746520626c6f636b6c6973742060448201527f737461747573206f662061206c697175696469747920706169722e000000000060648201526084016109ce565b8015610e9a57600854640100000000900460ff1615610e9a5760405162461bcd60e51b815260206004820152602b60248201527f4d4d3a20426c6f636b6c697374206164646974696f6e7320686176652062656560448201527f6e2064697361626c65642e00000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b03909116600090815260036020526040902080549115156101000261ff0019909216919091179055565b610ed3612b18565b6006548015610f6c576000805b82811015610f5d57600060068281548110610efd57610efd6152dc565b60009182526020808320909101546001600160a01b031680835260059091526040822054909250610f3391339184918781613a78565b6001600160a01b031660009081526005602052604081205580610f5581615308565b915050610ee0565b50610f6a6006600061501a565b505b50565b610f77612b18565b60085465010000000000900460ff1615610ff95760405162461bcd60e51b815260206004820152603260248201527f4d4d3a204c696d6974732068617665206265656e2072656d6f76656420616e6460448201527f2063616e6e6f742062652072652d7365742e000000000000000000000000000060648201526084016109ce565b600b805463ffffffff191663ffffffff92909216919091179055565b600a54600160401b90046001600160a01b0316336001600160a01b03161461109a5760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b610f6c81613f29565b6110ab612b18565b6008805463ffffffff191663ffffffff92909216919091179055565b600a54600090600160401b90046001600160a01b0316336001600160a01b03161461114f5760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301526024820184905285919082169063a9059cbb90604401610d22565b6111a8612b18565b600b80549115156701000000000000000267ff0000000000000019909216919091179055565b6111d6612b18565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b611209612b18565b60085465010000000000900460ff161561128b5760405162461bcd60e51b815260206004820152603260248201527f4d4d3a204c696d6974732068617665206265656e2072656d6f76656420616e6460448201527f2063616e6e6f742062652072652d7365742e000000000000000000000000000060648201526084016109ce565b600a805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b600061096c82614196565b6112c3612b18565b6008805464ff000000001916640100000000179055565b6112e2612b18565b610c346000614200565b6112f4612b18565b6008805465ff0000000000191665010000000000179055600b805463ffffffff19166001179055600a80546001600160e01b0316600160e01b179055565b600a54600160401b90046001600160a01b0316336001600160a01b0316146113b75760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b476113c182613f29565b60006113cd824761533e565b600a549091506113ed90600160401b90046001600160a01b03168261425d565b505050565b600a54600160401b90046001600160a01b0316336001600160a01b0316146114775760405162461bcd60e51b815260206004820152603260248201527f546f6b656e436c61776261636b3a2063616c6c6572206973206e6f74207468656044820152711022a92199181031b7b73a3937b63632b91760711b60648201526084016109ce565b6000600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f09190615355565b90506000600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190615355565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d99190615372565b6040517f2e1a7d4d000000000000000000000000000000000000000000000000000000008152600481018290529091506001600160a01b03841690632e1a7d4d90602401600060405180830381600087803b15801561163757600080fd5b505af115801561164b573d6000803e3d6000fd5b50505050505050565b6000806000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d09190615355565b6001600160a01b031663e6a4390530600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611732573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117569190615355565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156117a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c59190615355565b90506000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561181c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118409190615355565b60405163e6a4390560e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063e6a4390590604401602060405180830381865afa1580156118a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c49190615355565b604080516002808252606082018352929350600092909160208301908036833701905050905073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881600081518110611912576119126152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a99190615355565b816001815181106119bc576119bc6152dc565b6001600160a01b039283166020918202929092010152600b546040516370a0823160e01b81528483166004820152600092600160401b9092049091169063d06ca61f9073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48906370a0823190602401602060405180830381865afa158015611a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5f9190615372565b846040518363ffffffff1660e01b8152600401611a7d9291906153e5565b600060405180830381865afa158015611a9a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ac29190810190615406565b90506000611ae5846001600160a01b031660009081526001602052604090205490565b82600181518110611af857611af86152dc565b6020026020010151611b0a91906154da565b90506000611b2d866001600160a01b031660009081526001602052604090205490565b600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba49190615355565b6040516370a0823160e01b81526001600160a01b03898116600483015291909116906370a0823190602401602060405180830381865afa158015611bec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c109190615372565b611c1a91906154da565b9050611c4485873086600181518110611c3557611c356152dc565b60200260200101518686614376565b90999098509650505050505050565b611c5b612b18565b600980546001600160a01b03909216600160401b027fffffffff0000000000000000000000000000000000000000ffffffffffffffff909216919091179055565b611ca4612b18565b6009805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b6000610968338484612cca565b611cde612b18565b614e208163ffffffff161115611d365760405162461bcd60e51b815260206004820152601c60248201527f4d4d3a204d6178696d756d2073656c6c20746178206f66203230252e0000000060448201526064016109ce565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b611d66612b18565b600b54640100000000900460ff1615611dc15760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016109ce565b600b80547fffffffff0000000000000000000000000000000000000000ffffffffffffffff167b7a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000001790819055737a250d5630b4cf539739df2c5dacb4c659f2488d90611e469030906001600160a01b03600160401b9091041669d3c21bcecceda1000000612b72565b6000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eaa9190615355565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1b9190615355565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8c9190615355565b90506000826001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff29190615355565b6040517fc9c6539600000000000000000000000000000000000000000000000000000000815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af115801561206d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120919190615355565b600754909150600090606490600160c01b900463ffffffff166120b3306112b0565b6120bd91906154ee565b6120c791906154da565b600854909150600090606490600160d81b900463ffffffff166120e9306112b0565b6120f391906154ee565b6120fd91906154da565b60075490915060009060649061212090600160c01b900463ffffffff16476154ee565b61212a91906154da565b60085490915060009060649061214d90600160d81b900463ffffffff16476154ee565b61215791906154da565b600b549091506001600160a01b03600160401b9091041663f305d71983308760008061218b6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156121f3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612218919061550d565b5050604080516002808252606082018352600093509091602083019080368337019050509050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b59190615355565b816000815181106122c8576122c86152dc565b60200260200101906001600160a01b031690816001600160a01b03168152505073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881600181518110612310576123106152dc565b6001600160a01b039283166020918202929092010152600b546040517f7ff36ab5000000000000000000000000000000000000000000000000000000008152600160401b90910490911690637ff36ab59084906123789060009086903090429060040161553b565b60006040518083038185885af1158015612396573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526123bf9190810190615406565b506040516370a0823160e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489060009082906370a0823190602401602060405180830381865afa158015612414573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124389190615372565b600b5460405163095ea7b360e01b81526001600160a01b03600160401b909204821660048201526024810183905291925083169063095ea7b3906044016020604051808303816000875af1158015612494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b89190615321565b50600b546001600160a01b03600160401b9091041663e8e3370073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4830848a6000806124ff6000546001600160a01b031690565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015260a483015290911660c48201524260e4820152610104016060604051808303816000875af1158015612576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259a919061550d565b5050600b8054600a80546001600160e01b03167c0a0000000000000000000000000000000000000000000000000000000017905567ffff00ffffffffff19166701010001000000051790819055600780547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff16600160a01b63ffffffff43160217905560405163095ea7b360e01b8152600160401b9091046001600160a01b03908116600483015260001960248301528b16915063095ea7b3906044016020604051808303816000875af1158015612676573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269a9190615321565b50600b5460405163095ea7b360e01b8152600160401b9091046001600160a01b039081166004830152600019602483015289169063095ea7b3906044016020604051808303816000875af11580156126f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061271a9190615321565b506040518060a00160405280600015158152602001600015158152602001600063ffffffff168152602001600063ffffffff16815260200160011515815250600360008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff0219169083151502179055509050506040518060a00160405280600015158152602001600015158152602001600063ffffffff168152602001600063ffffffff16815260200160011515815250600360008a6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600a6101000a81548160ff02191690831515021790555090505050505050505050505050565b612957612b18565b614e208163ffffffff1611156129af5760405162461bcd60e51b815260206004820152601b60248201527f4d4d3a204d6178696d756d2062757920746178206f66203230252e000000000060448201526064016109ce565b6009805463ffffffff191663ffffffff92909216919091179055565b6129d3612b18565b600a80546001600160a01b03909216600160401b027fffffffff0000000000000000000000000000000000000000ffffffffffffffff909216919091179055565b612a1c612b18565b6001600160a01b0316600090815260036020526040902080546aff0000000000000000000019166a0100000000000000000000179055565b610bba8383836147fe565b612a67612b18565b6008805491151566010000000000000266ff00000000000019909216919091179055565b612a93612b18565b6001600160a01b038116612b0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109ce565b610f6c81614200565b6000546001600160a01b03163314610c345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ce565b6001600160a01b038316612bed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b038216612c695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316612d465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ce565b6001600160a01b038216612dc25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b60008111612e385760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016109ce565b60008080612e4e6000546001600160a01b031690565b6001600160a01b0316866001600160a01b031614158015612e7d57506000546001600160a01b03868116911614155b8015612e9257506001600160a01b0386163014155b8015612eb757506001600160a01b03851660009081526003602052604090205460ff16155b8015612edc57506001600160a01b03861660009081526003602052604090205460ff16155b15613289576001600160a01b038516600090815260036020526040902054610100900460ff16158015612f2d57506001600160a01b038616600090815260036020526040902054610100900460ff16155b612f795760405162461bcd60e51b815260206004820152601060248201527f4d4d3a20426c6f636b6c69737465642e0000000000000000000000000000000060448201526064016109ce565b6001600160a01b0386166000908152600360205260409020546a0100000000000000000000900460ff168015612fc45750600b546001600160a01b03868116600160401b9092041614155b156130d657600954600b5463ffffffff9091169250670100000000000000900460ff1615613093576001600160a01b038516600090815260036020526040902054436201000090910463ffffffff16036130605760405162461bcd60e51b815260206004820152601560248201527f4d4d3a204f6e652074782070657220626c6f636b2e000000000000000000000060448201526064016109ce565b6001600160a01b0385166000908152600360205260409020805465ffffffff00001916620100004363ffffffff16021790555b60075443906130b190600290600160a01b900463ffffffff16615570565b63ffffffff1611156130c6576001925061328e565b6130d18585846148ec565b61328e565b6001600160a01b0385166000908152600360205260409020546a0100000000000000000000900460ff1680156131215750600b546001600160a01b03878116600160401b9092041614155b156132725750600b54600190670100000000000000900460ff16156131c7576001600160a01b038616600090815260036020526040902054436201000090910463ffffffff16036131b45760405162461bcd60e51b815260206004820152601560248201527f4d4d3a204f6e652074782070657220626c6f636b2e000000000000000000000060448201526064016109ce565b6001600160a01b03861660005260036020525b600954600a5463ffffffff640100000000909204821693506131fc91600160e01b9091041669d3c21bcecceda10000006154da565b620186a061320a8482615598565b61321a9063ffffffff16876154ee565b61322491906154da565b11156130d15760405162461bcd60e51b815260206004820181905260248201527f4d4d3a204f766572206d6178207472616e73616374696f6e20616d6f756e742e60448201526064016109ce565b600754600160e01b900463ffffffff16915061328e565b600091505b61329c868686858786613a78565b505050505050565b600081848411156132c85760405162461bcd60e51b81526004016109ce9190615072565b505050900390565b6000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133499190615355565b6001600160a01b031663e6a4390530600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133cf9190615355565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa15801561341a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343e9190615355565b90506000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613495573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b99190615355565b60405163e6a4390560e01b815230600482015273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860248201526001600160a01b03919091169063e6a4390590604401602060405180830381865afa158015613519573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061353d9190615355565b604080516002808252606082018352929350600092909160208301908036833701905050905073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb488160008151811061358b5761358b6152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136229190615355565b81600181518110613635576136356152dc565b6001600160a01b039283166020918202929092010152600b546040516370a0823160e01b81528483166004820152600092600160401b9092049091169063d06ca61f9073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48906370a0823190602401602060405180830381865afa1580156136b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d89190615372565b846040518363ffffffff1660e01b81526004016136f69291906153e5565b600060405180830381865afa158015613713573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261373b9190810190615406565b9050600061375e846001600160a01b031660009081526001602052604090205490565b82600181518110613771576137716152dc565b602002602001015161378391906154da565b905060006137a6866001600160a01b031660009081526001602052604090205490565b600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061381d9190615355565b6040516370a0823160e01b81526001600160a01b03898116600483015291909116906370a0823190602401602060405180830381865afa158015613865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138899190615372565b61389391906154da565b90508615806138b8575060146138aa8360176154ee565b6138b491906154da565b8110155b806138d9575060146138cb8260176154ee565b6138d591906154da565b8210155b1561164b57600080613909878930886001815181106138fa576138fa6152dc565b60200260200101518888614376565b9150915080156139525781613933886001600160a01b031660009081526001602052604090205490565b111561394d576139438783614a27565b61394d8883614a6b565b61398c565b81613972896001600160a01b031660009081526001602052604090205490565b111561398c576139828883614a27565b61394d8783614a6b565b866001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139c757600080fd5b505af11580156139db573d6000803e3d6000fd5b50505050876001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a1a57600080fd5b505af1158015613a2e573d6000803e3d6000fd5b50506040805185815284151560208201527fc0d2cbff9eb511672403883070dc0720aca13a206999a4fe3e48d1a1e4642e27935001905060405180910390a1505050505050505050565b6000808315613bb55760019150613a8f828761533e565b6001600160a01b0388166000908152600360209081526040808320805469ffffffff000000000000191666010000000000004363ffffffff16021790556001909152902054909150613ae29087906155bd565b6001600160a01b038816600090815260046020908152604082209290925561dead9052600190527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d54613b369082906155bd565b61dead600081905260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d919091556040516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613ba59085815260200190565b60405180910390a3506000613bce565b613bbf8686614a8f565b9050613bcb818761533e565b91505b8015613e0d5730600090815260016020526040902054613bef9082906155bd565b30600081815260016020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613c409085815260200190565b60405180910390a36000600b60089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc19190615355565b6001600160a01b031663e6a4390530600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d479190615355565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015613d92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db69190615355565b90506000816001600160a01b03168a6001600160a01b031603613ddb57506000613e00565b816001600160a01b0316896001600160a01b031603613dfc57506000613e00565b5060015b613e0a8382614ab6565b50505b8215613e7a576008546601000000000000900460ff1615613e3257613e3260016132d0565b876001600160a01b03167fae92ab4b6f8f401ead768d3273e6bb937a13e39827d19c6376e8fd4512a05d9a83604051613e6d91815260200190565b60405180910390a2613ebe565b866001600160a01b03167fc55650ccda1011e1cdc769b1fbf546ebb8c97800b6072b49e06cd560305b1d6783604051613eb591815260200190565b60405180910390a25b613ec88887614a27565b613ed28783614a6b565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613f1791815260200190565b60405180910390a35050505050505050565b604080516002808252606082018352839260009291906020830190803683370190505090508281600081518110613f6257613f626152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ff99190615355565b8160018151811061400c5761400c6152dc565b6001600160a01b0392831660209182029290920101526040516370a0823160e01b81523060048201526000918416906370a0823190602401602060405180830381865afa158015614061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140859190615372565b600b5460405163095ea7b360e01b81526001600160a01b03600160401b909204821660048201526024810183905291925084169063095ea7b3906044016020604051808303816000875af11580156140e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141059190615321565b50600b546040517f791ac947000000000000000000000000000000000000000000000000000000008152600160401b9091046001600160a01b03169063791ac9479061415e9084906000908790309042906004016155d5565b600060405180830381600087803b15801561417857600080fd5b505af115801561418c573d6000803e3d6000fd5b5050505050505050565b6001600160a01b03811660009081526003602052604081205443660100000000000090910463ffffffff16036141e257506001600160a01b031660009081526004602052604090205490565b6001600160a01b03821660009081526001602052604090205461096c565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156142ad5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109ce565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146142fa576040519150601f19603f3d011682016040523d82523d6000602084013e6142ff565b606091505b50509050806113ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109ce565b600080737a250d5630b4cf539739df2c5dacb4c659f2488d8180808087891015614550576040516370a0823160e01b81526001600160a01b038e811660048301528b95508c16906370a0823190602401602060405180830381865afa1580156143e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144079190615372565b9250846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061446b9190615355565b6040516370a0823160e01b81526001600160a01b038e8116600483015291909116906370a0823190602401602060405180830381865afa1580156144b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144d79190615372565b6040516370a0823160e01b81526001600160a01b038e81166004830152919350908c16906370a0823190602401602060405180830381865afa158015614521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145459190615372565b905060019550614702565b6040516370a0823160e01b81526001600160a01b038e811660048301528b93508c16906370a0823190602401602060405180830381865afa158015614599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145bd9190615372565b9050846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146219190615355565b6040516370a0823160e01b81526001600160a01b038e8116600483015291909116906370a0823190602401602060405180830381865afa158015614669573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061468d9190615372565b6040516370a0823160e01b81526001600160a01b038e81166004830152919550908c16906370a0823190602401602060405180830381865afa1580156146d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146fb9190615372565b9250600095505b60006b033b2e3c9fd0803ce800000061471b8385615611565b6147258688615611565b61472f9190615698565b61473991906156d7565b905060006b033b2e3c9fd0803ce80000006147548588615705565b84614760886002615611565b61476a9190615611565b6147749190615611565b61477e91906156d7565b905060006b033b2e3c9fd0803ce80000006147998787615611565b6147a3868a615611565b6147ad9190615698565b6147b78689615611565b6147c19190615611565b6147cb91906156d7565b905060006147da8484846147fe565b5090506147e88160026154ee565b9a50505050505050505050965096945050505050565b600080808361480e876004615611565b6148189190615611565b614823600287615874565b61482d9190615698565b90506000811361487f5760405162461bcd60e51b815260206004820152600e60248201527f436f6d706c6578206e756d62657200000000000000000000000000000000000060448201526064016109ce565b600061488a82614ebd565b9050614897876002615611565b816148a188615883565b6148ab9190615705565b6148b591906156d7565b93506148c2876002615611565b816148cc88615883565b6148d69190615698565b6148e091906156d7565b92505050935093915050565b6000620186a06148fc8382615598565b61490c9063ffffffff16856154ee565b61491691906154da565b600a5490915061493d90600160e01b900463ffffffff1669d3c21bcecceda10000006154da565b81111561498c5760405162461bcd60e51b815260206004820181905260248201527f4d4d3a204f766572206d6178207472616e73616374696f6e20616d6f756e742e60448201526064016109ce565b600b546149a99063ffffffff1669d3c21bcecceda10000006154da565b816149c9866001600160a01b031660009081526001602052604090205490565b6149d391906155bd565b1115614a215760405162461bcd60e51b815260206004820152601b60248201527f4d4d3a204f766572206d61782077616c6c657420616d6f756e742e000000000060448201526064016109ce565b50505050565b6001600160a01b038216600090815260016020526040902054614a4b90829061533e565b6001600160a01b0390921660009081526001602052604090209190915550565b6001600160a01b038216600090815260016020526040902054614a4b9082906155bd565b6000620186a0614aa563ffffffff8416856154ee565b614aaf91906154da565b9392505050565b600b805465ff00000000001916650100000000001790819055306000908152600260209081526040808320600160401b9094046001600160a01b031683529290522054821115614b2957600b54614b29903090600160401b90046001600160a01b031669d3c21bcecceda1000000612b72565b8015614cab576040805160028082526060820183526000926020830190803683370190505090503081600081518110614b6457614b646152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614bfb9190615355565b81600181518110614c0e57614c0e6152dc565b6001600160a01b039283166020918202929092010152600b546040516318cbafe560e01b8152600160401b909104909116906318cbafe590614c5d9086906000908690309042906004016155d5565b6000604051808303816000875af1158015614c7c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614ca49190810190615406565b5050614e6d565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110614ce257614ce26152dc565b60200260200101906001600160a01b031690816001600160a01b03168152505073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881600181518110614d2a57614d2a6152dc565b60200260200101906001600160a01b031690816001600160a01b031681525050600b60089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614dc19190615355565b81600281518110614dd457614dd46152dc565b6001600160a01b039283166020918202929092010152600b546040516318cbafe560e01b8152600160401b909104909116906318cbafe590614e239086906000908690309042906004016155d5565b6000604051808303816000875af1158015614e42573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614e6a9190810190615406565b50505b600a54614e9090640100000000900463ffffffff16670de0b6b3a764000061589f565b67ffffffffffffffff16471115614eaa57614eaa47614f2f565b5050600b805465ff000000000019169055565b600060018211614ecf57614ecf6158c6565b6000614ede83620f42406154ee565b91508190508060005b6002614ef385846154da565b614efd90866155bd565b614f0791906154da565b90506103e8614f16828661533e565b10614f2357809350614ee7565b610d656103e8856154da565b600854600a5460095460009263ffffffff90811692614f5a9290821691600160e01b90910416615570565b614f649190615570565b60075460095463ffffffff9283169350614fa8926001600160a01b03909216918491614f9991600160e01b90910416866154ee565b614fa391906154da565b61425d565b600854600a54614fe39167010000000000000090046001600160a01b03169067ffffffffffffffff841690614f999063ffffffff16866154ee565b600954600854610f6a91600160401b90046001600160a01b03169067ffffffffffffffff841690614f999063ffffffff16866154ee565b5080546000825590600052602060002090810190610f6c91905b808211156150485760008155600101615034565b5090565b60006020828403121561505e57600080fd5b813563ffffffff81168114614aaf57600080fd5b600060208083528351808285015260005b8181101561509f57858101830151858201604001528201615083565b818111156150b1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f6c57600080fd5b600080604083850312156150ef57600080fd5b82356150fa816150c7565b946020939093013593505050565b60006020828403121561511a57600080fd5b8135614aaf816150c7565b60008083601f84011261513757600080fd5b50813567ffffffffffffffff81111561514f57600080fd5b6020830191508360208260051b850101111561516a57600080fd5b9250929050565b6000806000806040858703121561518757600080fd5b843567ffffffffffffffff8082111561519f57600080fd5b6151ab88838901615125565b909650945060208701359150808211156151c457600080fd5b506151d187828801615125565b95989497509550505050565b6000806000606084860312156151f257600080fd5b83356151fd816150c7565b9250602084013561520d816150c7565b929592945050506040919091013590565b8015158114610f6c57600080fd5b6000806040838503121561523f57600080fd5b823561524a816150c7565b9150602083013561525a8161521e565b809150509250929050565b60006020828403121561527757600080fd5b8135614aaf8161521e565b6000806040838503121561529557600080fd5b82356152a0816150c7565b9150602083013561525a816150c7565b6000806000606084860312156152c557600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161531a5761531a6152f2565b5060010190565b60006020828403121561533357600080fd5b8151614aaf8161521e565b600082821015615350576153506152f2565b500390565b60006020828403121561536757600080fd5b8151614aaf816150c7565b60006020828403121561538457600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600081518084526020808501945080840160005b838110156153da5781516001600160a01b0316875295820195908201906001016153b5565b509495945050505050565b8281526040602082015260006153fe60408301846153a1565b949350505050565b6000602080838503121561541957600080fd5b825167ffffffffffffffff8082111561543157600080fd5b818501915085601f83011261544557600080fd5b8151818111156154575761545761538b565b8060051b604051601f19603f8301168101818110858211171561547c5761547c61538b565b60405291825284820192508381018501918883111561549a57600080fd5b938501935b828510156154b85784518452938501939285019261549f565b98975050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826154e9576154e96154c4565b500490565b6000816000190483118215151615615508576155086152f2565b500290565b60008060006060848603121561552257600080fd5b8351925060208401519150604084015190509250925092565b84815260806020820152600061555460808301866153a1565b6001600160a01b03949094166040830152506060015292915050565b600063ffffffff80831681851680830382111561558f5761558f6152f2565b01949350505050565b600063ffffffff838116908316818110156155b5576155b56152f2565b039392505050565b600082198211156155d0576155d06152f2565b500190565b85815284602082015260a0604082015260006155f460a08301866153a1565b6001600160a01b0394909416606083015250608001529392505050565b60006001600160ff1b03600084136000841385830485118282161615615639576156396152f2565b600160ff1b6000871286820588128184161615615658576156586152f2565b60008712925087820587128484161615615674576156746152f2565b8785058712818416161561568a5761568a6152f2565b505050929093029392505050565b600080831283600160ff1b018312811516156156b6576156b66152f2565b836001600160ff1b030183138116156156d1576156d16152f2565b50500390565b6000826156e6576156e66154c4565b600160ff1b821460001984141615615700576157006152f2565b500590565b6000808212826001600160ff1b0303841381151615615726576157266152f2565b82600160ff1b03841281161561573e5761573e6152f2565b50500190565b80825b60018086116157565750615788565b816001600160ff1b030482111561576f5761576f6152f2565b8086161561577c57918102915b9490941c938002615747565b935093915050565b60008280156157a657600181146157b0576157b9565b600191505061096c565b8291505061096c565b50816157c75750600061096c565b506001600082138082146157e05780156157fe57615817565b826001600160ff1b03048311156157f9576157f96152f2565b615817565b826001600160ff1b0305831215615817576158176152f2565b50808316156158235750805b6158338360011c83840283615744565b806001600160ff1b03048211600083131615615851576158516152f2565b80600160ff1b05821260008312161561586c5761586c6152f2565b029392505050565b6000614aaf60ff841683615790565b6000600160ff1b8203615898576158986152f2565b5060000390565b600067ffffffffffffffff808416806158ba576158ba6154c4565b92169190910492915050565b634e487b7160e01b600052600160045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220eef60a8f0438bb272383e067bbf55e60a696684b0b7ec1589aa52a457704180164736f6c634300080f0033

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.