ETH Price: $2,963.56 (-1.63%)
Gas: 2 Gwei

Token

Chosen (MORPHEUS)
 

Overview

Max Total Supply

1,000,000,000,000 MORPHEUS

Holders

177

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000 MORPHEUS

Value
$0.00
0x310e0565b3d000ca4bb4c81cb548f132a35a053d
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:
MorpheusChosen

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : morpheus.sol
/**
      The choice is yours, red or blue pill. You are not chosen.

            https://morpheus.red  ||  https://morpheus.blue

                      https://t.me/morpheuschosen
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.4;

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

/** imports @uniswap */
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";


/// @author Morpheus
/// @title You are not chosen. You must make the choice.
/// @notice Blue pill - conform to the establishment, ignorance, mediocracy | https://morpheus.blue
/// @dev Red pill - awaken to reality, live among wolves, coalesce into an avalanche | https://morpheus.red
contract MorpheusChosen is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router;

    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    address public morpheus;
    address public chosenVaultWallet;

    uint public cursedNumber = 6666666666666;

    /// @dev Morpheus
    /// @notice This is the structure that makes up the Mainframe
    struct Prestige {
        uint worthiness;
        uint loyalty;
        uint faith;
    }
    struct Chosen {
        string _alias;
        string _rank;
        Prestige _prestige;
    }
    string[] public aliasAssignOrder = ["BYTE", "HEX", "VIRTUAL", "HASH", "EXCEPTION", "PUBLIC", "BOOL", "ARRAY", "PRIVATE"];
    uint private _aliasGiven = 0;
    mapping(address => Chosen) public chosen; 
    mapping(address => uint) public nextBlessing; 
    mapping(string => uint) public blessingCooldown;
    mapping(string => uint) public cursePrice;

    struct BlessingsRequest {
        address _member;
        uint _timestamp;
        Chosen _snapshot;
    }
    BlessingsRequest[] public blessingsRequested;

    struct Rituals {
        uint _timestamp;
        Chosen _chosen;
        address _wallet;
        string _deed;
        uint _value;
    }
    Rituals[] public rituals;

    struct Curse {
        uint _timestamp;
        Chosen _chosen;
        address _wallet;
        address _to;
        string _curse;
        uint _value;
    }
    Curse[] public curses;
    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */
    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */

    //// addresses
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    //// bools
    bool public bluePilled = false;
    bool public redPilled = false;
    bool private swapping;
    bool public lpBurnEnabled = true;
    bool public societalRestrictions = true;
    bool public swapEnabled = false;
    bool public transferDelayEnabled = true;

    //// uint
    //. swap limits (for launch)
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    //. fees
    // buy fees
    uint256 public buyChosenVaultFee;
    uint256 public buyLiquidityFee;
    uint256 public buyMorpheusFee;
    uint256 public buyTotalFees;
    // sell fees
    uint256 public sellChosenVaultFee;
    uint256 public sellLiquidityFee;
    uint256 public sellMorpheusFee;
    uint256 public sellTotalFees;
    // tokens for fees
    uint256 public tokensForChosenVault;
    uint256 public tokensForLiquidity;
    uint256 public tokensForMorpheus;

    // lp burn
    uint256 public lpBurnFrequency = 3600 seconds; // 60 minutes
    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public percentForLPBurn = 30; // .30%
    uint256 public lastLpBurnTime;
    uint256 public lastManualLpBurnTime;

    //// mappings
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //// events
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event chosenVaultWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event morpheusUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor(address _vaultAddr) ERC20("Chosen", "MORPHEUS") {

        blessingCooldown["Acolyte"] = 21600;
        blessingCooldown["Cultist"] = 20700;
        blessingCooldown["Zealot"] = 19800;
        blessingCooldown["Prophet"] = 18900;
        blessingCooldown["Priest"] = 18000;
        blessingCooldown["Sentinel"] = 17100;
        blessingCooldown["Baron"] = 16200;
        blessingCooldown["Chosen"] = 15300;

        cursePrice["Acolyte"] = 0.05 ether;
        cursePrice["Cultist"] = 0.04 ether;
        cursePrice["Zealot"] = 0.03 ether;
        cursePrice["Prophet"] = 0.02 ether;
        cursePrice["Priest"] = 0.01 ether;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyChosenVaultFee = 4;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyMorpheusFee = 2;

        uint256 _sellChosenVaultFee = 4;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellMorpheusFee = 2;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

        maxTransactionAmount = 5_000_000_000 * 1e18; // 0.5% maxTransactionAmount
        maxWallet = 10_000_000_000 * 1e18; // 1% maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyChosenVaultFee = _buyChosenVaultFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyMorpheusFee = _buyMorpheusFee;
        buyTotalFees = buyChosenVaultFee + buyLiquidityFee + buyMorpheusFee;

        sellChosenVaultFee = _sellChosenVaultFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellMorpheusFee = _sellMorpheusFee;
        sellTotalFees = sellChosenVaultFee + sellLiquidityFee + sellMorpheusFee;

        chosenVaultWallet = _vaultAddr; // set as chosenVault wallet - 0x62F021240Ca0944ab78Dd809fdca0c6AC7F74047
        morpheus = msg.sender; // set as morpheus wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}


    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    /// @dev Morpheus
    /// @notice Reality sets in and there's no going back - morpheus.red
    function redPill() external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        require(bluePilled == false, "The momentary anomoly is forgotten and you tread on in an unending simulation");
        require(redPilled == false, "Reality is already set in, open your eyes");
        redPilled = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    /// @dev Morpheus
    /// @notice Ripple from reality fades and the anomoly never returns - morpheus.blue
    function bluePill() external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        require(bluePilled == false, "The momentary anomoly is forgotten and you tread on in an unending simulation");
        require(redPilled == false, "Reality is already set in, open your eyes");
        bluePilled = true;
    }

    /// @dev Morpheus
    /// @notice Remove societal bindings and unlock unrestricted [freedom] choice
    function manifestDestiny() external onlyOwner returns (bool) {
        societalRestrictions = false;
        return true;
    }

    /// @dev Morpheus
    /// @notice Root access to the Mainframe is revoked, Morpheus nor the establishment can alter the Mainframe
    function revokeRootAccess() external onlyOwner { 
        _transferOwnership(address(0));
    }  

    function worshipThroughSacrifice(string memory _theDeed) public payable returns (bool) {
        require(msg.value >= 0.05 ether, "Sacrifices come with a cost, value must be greater than or equal to 0.05 ether");
        rituals.push(Rituals(block.timestamp, chosen[msg.sender], msg.sender, _theDeed, msg.value));
        return true;
    }

    function worshipThroughRitual(string memory _theDeed) public payable returns (bool) {
        require(nextBlessing[msg.sender] != 0 && nextBlessing[msg.sender] != cursedNumber, "You are not apart of the Chosen");
        rituals.push(Rituals(block.timestamp, chosen[msg.sender], msg.sender, _theDeed, msg.value));
        return true;
    }
    
    function requestBlessing() public returns (bool) {
        require(block.timestamp >= nextBlessing[msg.sender] && nextBlessing[msg.sender] != cursedNumber, "You cannot receive a blessing from Morpheus yet");
        blessingsRequested.push(BlessingsRequest(msg.sender, block.timestamp, chosen[msg.sender]));
        nextBlessing[msg.sender] = block.timestamp + blessingCooldown[chosen[msg.sender]._rank];
        return true;
    }

    function curse(address _recipient, string memory _curseMessage) public payable returns (bool) {
        require(nextBlessing[msg.sender] != 0 && nextBlessing[msg.sender] != cursedNumber, "You are not apart of the Chosen");
        require(msg.value >= cursePrice[chosen[msg.sender]._rank], "Curse price too low. Increase value or climb ranks");
        curses.push(Curse(block.timestamp, chosen[msg.sender], msg.sender, _recipient, _curseMessage, msg.value));
        return true;
    }

    function stringIsEqualTo(string memory _str1, string memory _str2) internal pure returns(bool){
        return keccak256(abi.encodePacked(_str1)) == keccak256(abi.encodePacked(_str2)); 
    }

    function promoteChosenRank(address _champion, string memory _rank, uint _worthiness, uint _loyalty, uint _faith) external returns (bool) {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");

        // Surpassing Chosen is being one with Morpheus thus become Morpheus
        chosen[_champion] = Chosen(chosen[_champion]._alias, _rank, Prestige(_worthiness, _loyalty, _faith));
        if (stringIsEqualTo(_rank, "Morpheus")) {
            morpheus = _champion;
        }

        return true;
    } 


    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */
    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTransactionAmount(uint256 newValue) external onlyOwner {
        require(
            newValue >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newValue * (10**18);
    }

    function updateMaxWalletAmount(uint256 newValue) external onlyOwner {
        require(
            newValue >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newValue * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _chosenVaultFee,
        uint256 _liquidityFee,
        uint256 _morpheusFee
    ) external onlyOwner {
        buyChosenVaultFee = _chosenVaultFee;
        buyLiquidityFee = _liquidityFee;
        buyMorpheusFee = _morpheusFee;
        buyTotalFees = buyChosenVaultFee + buyLiquidityFee + buyMorpheusFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _chosenVaultFee,
        uint256 _liquidityFee,
        uint256 _morpheusFee
    ) external onlyOwner {
        sellChosenVaultFee = _chosenVaultFee;
        sellLiquidityFee = _liquidityFee;
        sellMorpheusFee = _morpheusFee;
        sellTotalFees = sellChosenVaultFee + sellLiquidityFee + sellMorpheusFee;
        require(sellTotalFees <= 15, "Must keep fees at 15% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateChosenVaultWallet(address newChosenVaultWallet) external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        emit chosenVaultWalletUpdated(newChosenVaultWallet, chosenVaultWallet);
        chosenVaultWallet = newChosenVaultWallet;
    }

    function updateMorpheusWallet(address newWallet) external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");

        emit morpheusUpdated(newWallet, morpheus);
        morpheus = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (societalRestrictions) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!redPilled) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMorpheus += (fees * sellMorpheusFee) / sellTotalFees;
                tokensForChosenVault += (fees * sellChosenVaultFee) / sellTotalFees;

                // sellers cannot receive blessings from Morpheus
                nextBlessing[from] = cursedNumber;
                chosen[from] = Chosen("NULL", "Cyanide Pilled", Prestige(0, 0, 0));
                curses.push(Curse(block.timestamp, chosen[msg.sender], address(this), from, "Cyanide Pilled, Comatose", 666));
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMorpheus += (fees * buyMorpheusFee) / buyTotalFees;
                tokensForChosenVault += (fees * buyChosenVaultFee) / buyTotalFees;

                // someone just chose the red pill
                if (nextBlessing[to] == 0) {
                    chosen[to] = Chosen(aliasAssignOrder[_aliasGiven % aliasAssignOrder.length], "Acolyte", Prestige(15, 15, 15));
                    _aliasGiven += 1;
                    nextBlessing[to] = block.timestamp + blessingCooldown["Acolyte"];
                }
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForChosenVault +
            tokensForMorpheus;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForChosenVault = ethBalance.mul(tokensForChosenVault).div(
            totalTokensToSwap
        );
        uint256 ethForMorpheus = ethBalance.mul(tokensForMorpheus).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForChosenVault - ethForMorpheus;

        tokensForLiquidity = 0;
        tokensForChosenVault = 0;
        tokensForMorpheus = 0;

        (success, ) = address(morpheus).call{value: ethForMorpheus}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }

    function withdrawSacrificialOfferings() external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "failed to withdraw");
    }
}

File 2 of 11 : 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 3 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_vaultAddr","type":"address"}],"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"chosenVaultWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"morpheusUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"aliasAssignOrder","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"blessingCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blessingsRequested","outputs":[{"internalType":"address","name":"_member","type":"address"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"components":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusChosen.Prestige","name":"_prestige","type":"tuple"}],"internalType":"struct MorpheusChosen.Chosen","name":"_snapshot","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bluePill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bluePilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyChosenVaultFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMorpheusFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"chosen","outputs":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusChosen.Prestige","name":"_prestige","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chosenVaultWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"string","name":"_curseMessage","type":"string"}],"name":"curse","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"cursePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cursedNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"curses","outputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"components":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusChosen.Prestige","name":"_prestige","type":"tuple"}],"internalType":"struct MorpheusChosen.Chosen","name":"_chosen","type":"tuple"},{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_curse","type":"string"},{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manifestDestiny","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"morpheus","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nextBlessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_champion","type":"address"},{"internalType":"string","name":"_rank","type":"string"},{"internalType":"uint256","name":"_worthiness","type":"uint256"},{"internalType":"uint256","name":"_loyalty","type":"uint256"},{"internalType":"uint256","name":"_faith","type":"uint256"}],"name":"promoteChosenRank","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redPill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redPilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestBlessing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeRootAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rituals","outputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"components":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusChosen.Prestige","name":"_prestige","type":"tuple"}],"internalType":"struct MorpheusChosen.Chosen","name":"_chosen","type":"tuple"},{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"string","name":"_deed","type":"string"},{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellChosenVaultFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMorpheusFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"societalRestrictions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForChosenVault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMorpheus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chosenVaultFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_morpheusFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newChosenVaultWallet","type":"address"}],"name":"updateChosenVaultWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMorpheusWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chosenVaultFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_morpheusFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSacrificialOfferings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_theDeed","type":"string"}],"name":"worshipThroughRitual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_theDeed","type":"string"}],"name":"worshipThroughSacrifice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

650610344c6aaa600990815560046101a0818152634259544560e01b6101c052608090815260036101e0908152620908ab60eb1b6102005260a0526007610220818152661592549515505360ca1b6102405260c0526102608381526309082a6960e31b6102805260e0526102a08481526822ac21a2a82a24a7a760b91b6102c0526101005260066102e0908152655055424c494360d01b6103005261012052610320928352631093d3d360e21b6103405261014092909252600561036090815264415252415960d81b61038052610160526103e06040526103a0918252665052495641544560c81b6103c052610180919091526200010191600a91906200097c565b506000600b556013805466ffffffff00ffff60a01b1916630100010160b81b179055610e10602255610708602355601e6024553480156200014157600080fd5b5060405162005e6938038062005e69833981016040819052620001649162000a53565b6040518060400160405280600681526020016521b437b9b2b760d11b815250604051806040016040528060088152602001674d4f52504845555360c01b8152508160039081620001b5919062000b29565b506004620001c4828262000b29565b505050620001e1620001db620006e860201b60201c565b620006ec565b615460600e60405162000201906641636f6c79746560c81b815260070190565b90815260408051918290036020018220929092556610dd5b1d1a5cdd60ca1b808252600e6007808401829052845193849003602790810185206150dc9055651699585b1bdd60d21b808652600680870185905287519687900360269081018820614d58905566141c9bdc1a195d60ca1b808952888601879052895198899003850189206149d4905565141c9a595cdd60d21b808a528984018890528a51998a900383018a2061465090556714d95b9d1a5b995b60c21b8a5260088a018890528a51998a90036028018a206142cc9055642130b937b760d91b8a5260058a018890528a51998a90036025018a20613f4890556521b437b9b2b760d11b8a528984019790975289519889900382018920613bc490556641636f6c79746560c81b8952600f8987018190528a51998a900386018a2066b1a2bc2ec50000905597895288860188905289519889900385018920668e1bc9bf040000905592885287820187905288519788900381018820666a94d74f4300009055918752928601859052865195869003909101852066470de4df82000090559184528301919091529151908190039091019020662386f26fc100009055737a250d5630b4cf539739df2c5dacb4c659f2488d620003d58160016200073e565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200042f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000455919062000a53565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c9919062000a53565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000517573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200053d919062000a53565b601380546001600160a01b0319166001600160a01b03929092169182179055620005699060016200073e565b60135462000582906001600160a01b0316600162000773565b6b1027e72f1f128130880000006014556b204fce5e3e250261100000006016556004600060028282826c0c9f2c9cd04674edea40000000612710620005c982600562000c0b565b620005d5919062000c2d565b60155560178790556018869055601985905584620005f4878962000c50565b62000600919062000c50565b601a55601b849055601c839055601d829055816200061f848662000c50565b6200062b919062000c50565b601e55600880546001600160a01b038b166001600160a01b0319918216179091556007805490911633179055620006766200066e6005546001600160a01b031690565b6001620007c7565b62000683306001620007c7565b6200069261dead6001620007c7565b620006b1620006a96005546001600160a01b031690565b60016200073e565b620006be3060016200073e565b620006cd61dead60016200073e565b620006d9338262000830565b50505050505050505062000c6b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200074862000919565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620007d162000919565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200088c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620008a0919062000c50565b90915550506001600160a01b03821660009081526020819052604081208054839290620008cf90849062000c50565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620009755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000883565b565b505050565b828054828255906000526020600020908101928215620009c7579160200282015b82811115620009c75782518290620009b6908262000b29565b50916020019190600101906200099d565b50620009d5929150620009d9565b5090565b80821115620009d5576000620009f08282620009fa565b50600101620009d9565b50805462000a089062000a9b565b6000825580601f1062000a19575050565b601f01602090049060005260206000209081019062000a39919062000a3c565b50565b5b80821115620009d5576000815560010162000a3d565b60006020828403121562000a6657600080fd5b81516001600160a01b038116811462000a7e57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ab057607f821691505b60208210810362000ad157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200097757600081815260208120601f850160051c8101602086101562000b005750805b601f850160051c820191505b8181101562000b215782815560010162000b0c565b505050505050565b81516001600160401b0381111562000b455762000b4562000a85565b62000b5d8162000b56845462000a9b565b8462000ad7565b602080601f83116001811462000b95576000841562000b7c5750858301515b600019600386901b1c1916600185901b17855562000b21565b600085815260208120601f198616915b8281101562000bc65788860151825594840194600190910190840162000ba5565b508582101562000be55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000c285762000c2862000bf5565b500290565b60008262000c4b57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000c665762000c6662000bf5565b500190565b6151ee8062000c7b6000396000f3fe6080604052600436106104775760003560e01c8063963a01d11161024a578063cd99db1d11610139578063e884f260116100b6578063f8b45b051161007a578063f8b45b0514610d72578063fa298d8714610d88578063fe72b27a14610dc0578063ff47730814610de0578063ff54e50914610e0057600080fd5b8063e884f26014610cdf578063f11a24d314610cf4578063f2fde38b14610d0a578063f605391214610d2a578063f637434214610d5c57600080fd5b8063dbbb4c31116100fd578063dbbb4c3114610c3b578063dd62ed3e14610c51578063e2f4560514610c71578063e369287e14610c87578063e613a5fa14610ca757600080fd5b8063cd99db1d14610863578063cf8c7a9b14610bd2578063d257b34f14610bf2578063d84e21b114610c12578063d85ba06314610c2557600080fd5b8063b5f588e8116101c7578063c18bc1951161018b578063c18bc19514610b38578063c3287ddd14610b58578063c53614fd14610b85578063c876d0b914610b9b578063c8c8ebe414610bbc57600080fd5b8063b5f588e814610a84578063b62496f514610ab3578063b8e234cb14610ae3578063c024666814610af8578063c17b5b8c14610b1857600080fd5b8063a457c2d71161020e578063a457c2d7146109ee578063a4c82a0014610a0e578063a9059cbb14610a24578063aa49802314610a44578063ac7f38d214610a6457600080fd5b8063963a01d11461096c5780639a7a23d6146109825780639ec22c0e146109a2578063a04b099a146109b8578063a2811760146109cd57600080fd5b80633d796abc11610366578063715018a6116102e35780638095d564116102a75780638095d564146108e35780638d1a5858146109035780638da5cb5b14610919578063924de9b71461093757806395d89b411461095757600080fd5b8063715018a614610863578063730c1888146108785780637571336a146108985780637a1e290f146108b857806380209940146108cd57600080fd5b806349bd5a5e1161032a57806349bd5a5e1461079d5780634fbee193146107bd5780636a486a8e146107f65780636ddd17131461080c57806370a082311461082d57600080fd5b80633d796abc146107025780633dc0f5aa146107335780633f18dc09146107465780633fa49c6b14610767578063414441af1461078757600080fd5b806323b872dd116103f45780632e82f1a0116103b85780632e82f1a014610661578063313ce56714610682578063373731e51461069e57806339509351146106b35780633a289b10146106d357600080fd5b806323b872dd146105de578063273c230a146105fe57806327c8f8351461061457806329d7034c1461062a5780632c3e486c1461064b57600080fd5b80631694505e1161043b5780631694505e1461055d57806318160ddd1461057d578063184c16c51461059c578063199ffc72146105b25780631a8145bb146105c857600080fd5b806306fdde0314610483578063095ea7b3146104ae57806310d5de53146104de578063128bb7911461050e578063156bda821461052557600080fd5b3661047e57005b600080fd5b34801561048f57600080fd5b50610498610e13565b6040516104a59190614803565b60405180910390f35b3480156104ba57600080fd5b506104ce6104c936600461482b565b610ea5565b60405190151581526020016104a5565b3480156104ea57600080fd5b506104ce6104f9366004614857565b60286020526000908152604090205460ff1681565b34801561051a57600080fd5b50610523610ebd565b005b34801561053157600080fd5b50600854610545906001600160a01b031681565b6040516001600160a01b0390911681526020016104a5565b34801561056957600080fd5b50600654610545906001600160a01b031681565b34801561058957600080fd5b506002545b6040519081526020016104a5565b3480156105a857600080fd5b5061058e60235481565b3480156105be57600080fd5b5061058e60245481565b3480156105d457600080fd5b5061058e60205481565b3480156105ea57600080fd5b506104ce6105f9366004614874565b610f59565b34801561060a57600080fd5b5061058e601f5481565b34801561062057600080fd5b5061054561dead81565b34801561063657600080fd5b506013546104ce90600160a81b900460ff1681565b34801561065757600080fd5b5061058e60225481565b34801561066d57600080fd5b506013546104ce90600160b81b900460ff1681565b34801561068e57600080fd5b50604051601281526020016104a5565b3480156106aa57600080fd5b50610523610f7d565b3480156106bf57600080fd5b506104ce6106ce36600461482b565b611037565b3480156106df57600080fd5b506106f36106ee3660046148b5565b611059565b6040516104a59392919061492d565b34801561070e57600080fd5b5061072261071d3660046148b5565b6111fc565b6040516104a595949392919061495d565b6104ce610741366004614a4d565b611432565b34801561075257600080fd5b506013546104ce90600160a01b900460ff1681565b34801561077357600080fd5b50610523610782366004614857565b6117d9565b34801561079357600080fd5b5061058e60215481565b3480156107a957600080fd5b50601354610545906001600160a01b031681565b3480156107c957600080fd5b506104ce6107d8366004614857565b6001600160a01b031660009081526027602052604090205460ff1690565b34801561080257600080fd5b5061058e601e5481565b34801561081857600080fd5b506013546104ce90600160c81b900460ff1681565b34801561083957600080fd5b5061058e610848366004614857565b6001600160a01b031660009081526020819052604090205490565b34801561086f57600080fd5b50610523611860565b34801561088457600080fd5b50610523610893366004614aad565b611874565b3480156108a457600080fd5b506105236108b3366004614ae2565b611986565b3480156108c457600080fd5b506104ce6119b9565b3480156108d957600080fd5b5061058e60175481565b3480156108ef57600080fd5b506105236108fe366004614b17565b611cbf565b34801561090f57600080fd5b5061058e60095481565b34801561092557600080fd5b506005546001600160a01b0316610545565b34801561094357600080fd5b50610523610952366004614b43565b611d45565b34801561096357600080fd5b50610498611d6b565b34801561097857600080fd5b5061058e60195481565b34801561098e57600080fd5b5061052361099d366004614ae2565b611d7a565b3480156109ae57600080fd5b5061058e60265481565b3480156109c457600080fd5b506104ce611e14565b3480156109d957600080fd5b506013546104ce90600160c01b900460ff1681565b3480156109fa57600080fd5b506104ce610a0936600461482b565b611e31565b348015610a1a57600080fd5b5061058e60255481565b348015610a3057600080fd5b506104ce610a3f36600461482b565b611eac565b348015610a5057600080fd5b50610523610a5f3660046148b5565b611eba565b348015610a7057600080fd5b50610498610a7f3660046148b5565b611f75565b348015610a9057600080fd5b50610aa4610a9f366004614857565b612021565b6040516104a593929190614b5e565b348015610abf57600080fd5b506104ce610ace366004614857565b60296020526000908152604090205460ff1681565b348015610aef57600080fd5b50610523612174565b348015610b0457600080fd5b50610523610b13366004614ae2565b612213565b348015610b2457600080fd5b50610523610b33366004614b17565b61227a565b348015610b4457600080fd5b50610523610b533660046148b5565b6122fb565b348015610b6457600080fd5b5061058e610b73366004614857565b600d6020526000908152604090205481565b348015610b9157600080fd5b5061058e601d5481565b348015610ba757600080fd5b506013546104ce90600160d01b900460ff1681565b348015610bc857600080fd5b5061058e60145481565b348015610bde57600080fd5b50610523610bed366004614857565b6123aa565b348015610bfe57600080fd5b506104ce610c0d3660046148b5565b612431565b6104ce610c20366004614baf565b612565565b348015610c3157600080fd5b5061058e601a5481565b348015610c4757600080fd5b5061058e601b5481565b348015610c5d57600080fd5b5061058e610c6c366004614be4565b612847565b348015610c7d57600080fd5b5061058e60155481565b348015610c9357600080fd5b506104ce610ca2366004614c1d565b612872565b348015610cb357600080fd5b5061058e610cc2366004614baf565b8051602081830181018051600f8252928201919093012091525481565b348015610ceb57600080fd5b506104ce612a2a565b348015610d0057600080fd5b5061058e60185481565b348015610d1657600080fd5b50610523610d25366004614857565b612a47565b348015610d3657600080fd5b50610d4a610d453660046148b5565b612abd565b6040516104a596959493929190614c88565b348015610d6857600080fd5b5061058e601c5481565b348015610d7e57600080fd5b5061058e60165481565b348015610d9457600080fd5b5061058e610da3366004614baf565b8051602081830181018051600e8252928201919093012091525481565b348015610dcc57600080fd5b506104ce610ddb3660046148b5565b612cfd565b348015610dec57600080fd5b50600754610545906001600160a01b031681565b6104ce610e0e366004614baf565b612f0e565b606060038054610e2290614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e90614cde565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b5050505050905090565b600033610eb3818585612fa4565b5060019392505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610ee790614d18565b60405180910390fd5b601354600160a01b900460ff1615610f1a5760405162461bcd60e51b8152600401610ee790614d4f565b601354600160a81b900460ff1615610f445760405162461bcd60e51b8152600401610ee790614dc2565b6013805460ff60a01b1916600160a01b179055565b600033610f678582856130c8565b610f72858585613142565b506001949350505050565b6007546001600160a01b03163314610fa75760405162461bcd60e51b8152600401610ee790614d18565b604051600090339047908381818185875af1925050503d8060008114610fe9576040519150601f19603f3d011682016040523d82523d6000602084013e610fee565b606091505b50509050806110345760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610ee7565b50565b600033610eb381858561104a8383612847565b6110549190614e21565b612fa4565b6010818154811061106957600080fd5b600091825260209091206007909102018054600182015460408051606081019091526002840180546001600160a01b039094169550919392909190829082906110b190614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546110dd90614cde565b801561112a5780601f106110ff5761010080835404028352916020019161112a565b820191906000526020600020905b81548152906001019060200180831161110d57829003601f168201915b5050505050815260200160018201805461114390614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461116f90614cde565b80156111bc5780601f10611191576101008083540402835291602001916111bc565b820191906000526020600020905b81548152906001019060200180831161119f57829003601f168201915b5050505050815260200160028201604051806060016040529081600082015481526020016001820154815260200160028201548152505081525050905083565b6011818154811061120c57600080fd5b90600052602060002090600902016000915090508060000154908060010160405180606001604052908160008201805461124590614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461127190614cde565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b505050505081526020016001820180546112d790614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461130390614cde565b80156113505780601f1061132557610100808354040283529160200191611350565b820191906000526020600020905b81548152906001019060200180831161133357829003601f168201915b50505091835250506040805160608101825260028401548152600384015460208281019190915260049094015491810191909152910152600682015460078301805492936001600160a01b03909216926113a990614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590614cde565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b5050505050908060080154905085565b336000908152600d6020526040812054158015906114615750600954336000908152600d602052604090205414155b6114ad5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b336000908152600c6020526040908190209051600f916114d291600190910190614e39565b90815260200160405180910390205434101561154b5760405162461bcd60e51b815260206004820152603260248201527f437572736520707269636520746f6f206c6f772e20496e6372656173652076616044820152716c7565206f7220636c696d622072616e6b7360701b6064820152608401610ee7565b60126040518060c00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461159e90614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca90614cde565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b5050505050815260200160018201805461163090614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461165c90614cde565b80156116a95780601f1061167e576101008083540402835291602001916116a9565b820191906000526020600020905b81548152906001019060200180831161168c57829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845233848301526001600160a01b03891692840192909252908201869052346080909201919091528254600181810185556000948552938290208351600a9092020190815590820151805192939192909183019081906117409082614ef5565b50602082015160018201906117559082614ef5565b5060409182015180516002830155602081015160038301558201516004909101558201516006820180546001600160a01b039283166001600160a01b0319918216179091556060840151600784018054919093169116179055608082015160088201906117c29082614ef5565b5060a0820151816009015550506001905092915050565b6007546001600160a01b031633146118035760405162461bcd60e51b8152600401610ee790614d18565b6008546040516001600160a01b03918216918316907f585d5d76ca696451c0a095343cb5c4d73934e0296ce13416e50623f32e78e0ac90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b611868613f45565b6118726000613f9f565b565b61187c613f45565b6102588310156118ea5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610ee7565b6103e882111580156118fa575060015b61195f5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610ee7565b60229290925560245560138054911515600160b81b0260ff60b81b19909216919091179055565b61198e613f45565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b336000908152600d602052604081205442108015906119e95750600954336000908152600d602052604090205414155b611a4d5760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f742072656365697665206120626c657373696e6720667260448201526e1bdb48135bdc9c1a195d5cc81e595d608a1b6064820152608401610ee7565b604080516060808201835233808352426020808501919091526000918252600c9052839020835191820184528054601094840192919082908290611a9090614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611abc90614cde565b8015611b095780601f10611ade57610100808354040283529160200191611b09565b820191906000526020600020905b815481529060010190602001808311611aec57829003601f168201915b50505050508152602001600182018054611b2290614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4e90614cde565b8015611b9b5780601f10611b7057610100808354040283529160200191611b9b565b820191906000526020600020905b815481529060010190602001808311611b7e57829003601f168201915b50505091835250506040805160608101825260028481015482526003850154602080840191909152600490950154828401529284015292909352845460018082018755600096875295829020855160079092020180546001600160a01b0319166001600160a01b039092169190911781559084015194810194909455820151805192939290918301908190611c309082614ef5565b5060208201516001820190611c459082614ef5565b5060409182015180516002830155602080820151600384015590830151600490920191909155336000908152600c9091528190209051600e9350611c8f9250600190910190614e39565b90815260200160405180910390205442611ca99190614e21565b336000908152600d602052604090205550600190565b611cc7613f45565b60178390556018829055601981905580611ce18385614e21565b611ceb9190614e21565b601a819055600a1015611d405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ee7565b505050565b611d4d613f45565b60138054911515600160c81b0260ff60c81b19909216919091179055565b606060048054610e2290614cde565b611d82613f45565b6013546001600160a01b0390811690831603611e065760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ee7565b611e108282613ff1565b5050565b6000611e1e613f45565b506013805460ff60c01b19169055600190565b60003381611e3f8286612847565b905083811015611e9f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ee7565b610f728286868403612fa4565b600033610eb3818585613142565b611ec2613f45565b670de0b6b3a76400006103e8611ed760025490565b611ee2906005614fb5565b611eec9190614fea565b611ef69190614fea565b811015611f5d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610ee7565b611f6f81670de0b6b3a7640000614fb5565b60145550565b600a8181548110611f8557600080fd5b906000526020600020016000915090508054611fa090614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611fcc90614cde565b80156120195780601f10611fee57610100808354040283529160200191612019565b820191906000526020600020905b815481529060010190602001808311611ffc57829003601f168201915b505050505081565b600c6020526000908152604090208054819061203c90614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461206890614cde565b80156120b55780601f1061208a576101008083540402835291602001916120b5565b820191906000526020600020905b81548152906001019060200180831161209857829003601f168201915b5050505050908060010180546120ca90614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546120f690614cde565b80156121435780601f1061211857610100808354040283529160200191612143565b820191906000526020600020905b81548152906001019060200180831161212657829003601f168201915b5050604080516060810182526002870154815260038701546020820152600490960154908601525091929150849050565b6007546001600160a01b0316331461219e5760405162461bcd60e51b8152600401610ee790614d18565b601354600160a01b900460ff16156121c85760405162461bcd60e51b8152600401610ee790614d4f565b601354600160a81b900460ff16156121f25760405162461bcd60e51b8152600401610ee790614dc2565b6013805464ff000000ff60a81b191664010000000160a81b17905542602555565b61221b613f45565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b612282613f45565b601b839055601c829055601d8190558061229c8385614e21565b6122a69190614e21565b601e819055600f1015611d405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610ee7565b612303613f45565b670de0b6b3a76400006103e861231860025490565b61232390600a614fb5565b61232d9190614fea565b6123379190614fea565b8110156123925760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610ee7565b6123a481670de0b6b3a7640000614fb5565b60165550565b6007546001600160a01b031633146123d45760405162461bcd60e51b8152600401610ee790614d18565b6007546040516001600160a01b03918216918316907ff348ecf13e26f7720f87efe7fcf69c202dc41c5cab439cc253a1dd71034ba7ed90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061243b613f45565b620186a061244860025490565b612453906001614fb5565b61245d9190614fea565b8210156124ca5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ee7565b6103e86124d660025490565b6124e1906005614fb5565b6124eb9190614fea565b8211156125575760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ee7565b50601581905560015b919050565b336000908152600d6020526040812054158015906125945750600954336000908152600d602052604090205414155b6125e05760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b60116040518060a00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461263390614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461265f90614cde565b80156126ac5780601f10612681576101008083540402835291602001916126ac565b820191906000526020600020905b81548152906001019060200180831161268f57829003601f168201915b505050505081526020016001820180546126c590614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546126f190614cde565b801561273e5780601f106127135761010080835404028352916020019161273e565b820191906000526020600020905b81548152906001019060200180831161272157829003601f168201915b5050509183525050604080516060808201835260028501548252600385015460208381019190915260049095015482840152928401529284523384830152918301879052349290910191909152825460018181018555600094855293829020835160099092020190815590820151805192939192909183019081906127c39082614ef5565b50602082015160018201906127d89082614ef5565b5060409182015180516002830155602081015160038301558201516004909101558201516006820180546001600160a01b0319166001600160a01b03909216919091179055606082015160078201906128319082614ef5565b5060808201518160080155505060019050919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546000906001600160a01b0316331461289f5760405162461bcd60e51b8152600401610ee790614d18565b604080516060810182526001600160a01b0388166000908152600c6020529190912080548291906128cf90614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546128fb90614cde565b80156129485780601f1061291d57610100808354040283529160200191612948565b820191906000526020600020905b81548152906001019060200180831161292b57829003601f168201915b5050509183525050602080820188905260408051606081018252888152808301889052808201879052928101929092526001600160a01b0389166000908152600c909152208151819061299b9082614ef5565b50602082015160018201906129b09082614ef5565b5060409182015180516002830155602080820151600384015590830151600490920191909155815180830190925260088252674d6f72706865757360c01b908201526129fd908690614045565b15612a1e57600780546001600160a01b0319166001600160a01b0388161790555b50600195945050505050565b6000612a34613f45565b506013805460ff60d01b19169055600190565b612a4f613f45565b6001600160a01b038116612ab45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ee7565b61103481613f9f565b60128181548110612acd57600080fd5b90600052602060002090600a020160009150905080600001549080600101604051806060016040529081600082018054612b0690614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3290614cde565b8015612b7f5780601f10612b5457610100808354040283529160200191612b7f565b820191906000526020600020905b815481529060010190602001808311612b6257829003601f168201915b50505050508152602001600182018054612b9890614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc490614cde565b8015612c115780601f10612be657610100808354040283529160200191612c11565b820191906000526020600020905b815481529060010190602001808311612bf457829003601f168201915b505050918352505060408051606081018252600284015481526003840154602080830191909152600490940154918101919091529101526006820154600783015460088401805493946001600160a01b03938416949390921692612c7490614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca090614cde565b8015612ced5780601f10612cc257610100808354040283529160200191612ced565b820191906000526020600020905b815481529060010190602001808311612cd057829003601f168201915b5050505050908060090154905086565b6000612d07613f45565b602354602654612d179190614e21565b4211612d655760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610ee7565b6103e8821115612dca5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610ee7565b426026556013546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015612e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e3d9190614ffe565b90506000612e57612710612e51848761409e565b906140b1565b90508015612e7857601354612e78906001600160a01b031661dead836140bd565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b158015612ec257600080fd5b505af1158015612ed6573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b600066b1a2bc2ec500003410156125e05760405162461bcd60e51b815260206004820152604e60248201527f5361637269666963657320636f6d652077697468206120636f73742c2076616c60448201527f7565206d7573742062652067726561746572207468616e206f7220657175616c60648201526d103a37901817181a9032ba3432b960911b608482015260a401610ee7565b6001600160a01b0383166130065760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ee7565b6001600160a01b0382166130675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ee7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006130d48484612847565b9050600019811461313c578181101561312f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ee7565b61313c8484848403612fa4565b50505050565b6001600160a01b0383166131685760405162461bcd60e51b8152600401610ee790615017565b6001600160a01b03821661318e5760405162461bcd60e51b8152600401610ee79061505c565b806000036131a257611d40838360006140bd565b601354600160c01b900460ff1615613627576005546001600160a01b038481169116148015906131e057506005546001600160a01b03838116911614155b80156131f457506001600160a01b03821615155b801561320b57506001600160a01b03821661dead14155b80156132215750601354600160b01b900460ff16155b1561362757601354600160a81b900460ff166132bb576001600160a01b03831660009081526027602052604090205460ff168061327657506001600160a01b03821660009081526027602052604090205460ff165b6132bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ee7565b601354600160d01b900460ff16156133c1576005546001600160a01b038381169116148015906132f957506006546001600160a01b03838116911614155b801561331357506013546001600160a01b03838116911614155b156133c157326000908152602a602052604090205443116133ae5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ee7565b326000908152602a602052604090204390555b6001600160a01b03831660009081526029602052604090205460ff16801561340257506001600160a01b03821660009081526028602052604090205460ff16155b156134e6576014548111156134775760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ee7565b6016546001600160a01b03831660009081526020819052604090205461349d9083614e21565b11156134e15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b613627565b6001600160a01b03821660009081526029602052604090205460ff16801561352757506001600160a01b03831660009081526028602052604090205460ff16155b1561359d576014548111156134e15760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ee7565b6001600160a01b03821660009081526028602052604090205460ff16613627576016546001600160a01b0383166000908152602081905260409020546135e39083614e21565b11156136275760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b30600090815260208190526040902054601554811080159081906136545750601354600160c81b900460ff165b801561366a5750601354600160b01b900460ff16155b801561368f57506001600160a01b03851660009081526029602052604090205460ff16155b80156136b457506001600160a01b03851660009081526027602052604090205460ff16155b80156136d957506001600160a01b03841660009081526027602052604090205460ff16155b15613707576013805460ff60b01b1916600160b01b1790556136f9614211565b6013805460ff60b01b191690555b601354600160b01b900460ff1615801561373957506001600160a01b03841660009081526029602052604090205460ff165b801561374e5750601354600160b81b900460ff165b801561376957506022546025546137659190614e21565b4210155b801561378e57506001600160a01b03851660009081526027602052604090205460ff16155b1561379d5761379b614449565b505b6013546001600160a01b03861660009081526027602052604090205460ff600160b01b9092048216159116806137eb57506001600160a01b03851660009081526027602052604090205460ff165b156137f4575060005b60008115613f31576001600160a01b03861660009081526029602052604090205460ff16801561382657506000601e54115b15613c4f576138456064612e51601e548861409e90919063ffffffff16565b9050601e54601c54826138589190614fb5565b6138629190614fea565b602060008282546138739190614e21565b9091555050601e54601d546138889083614fb5565b6138929190614fea565b602160008282546138a39190614e21565b9091555050601e54601b546138b89083614fb5565b6138c29190614fea565b601f60008282546138d39190614e21565b90915550506009546001600160a01b0388166000818152600d6020908152604080832094909455835160a08101855260046060808301918252631395531360e21b608084015290825285518087018752600e81526d10de585b9a591948141a5b1b195960921b81850152828401528551908101865283815280830184905280860184905281860152928252600c905291909120815181906139749082614ef5565b50602082015160018201906139899082614ef5565b5060409182015180516002830155602080820151600384015590830151600490920191909155815160c081018352428152336000908152600c8352839020835160608101909452805460129492938401929190829082906139e990614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054613a1590614cde565b8015613a625780601f10613a3757610100808354040283529160200191613a62565b820191906000526020600020905b815481529060010190602001808311613a4557829003601f168201915b50505050508152602001600182018054613a7b90614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054613aa790614cde565b8015613af45780601f10613ac957610100808354040283529160200191613af4565b820191906000526020600020905b815481529060010190602001808311613ad757829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845230848301526001600160a01b038d16848401528251808401909352601883527f4379616e6964652050696c6c65642c20436f6d61746f736500000000000000008383015283019190915261029a6080909201919091528254600181810185556000948552938290208351600a909202019081559082015180519293919290918301908190613bbb9082614ef5565b5060208201516001820190613bd09082614ef5565b5060409182015180516002830155602081015160038301558201516004909101558201516006820180546001600160a01b039283166001600160a01b031991821617909155606084015160078401805491909316911617905560808201516008820190613c3d9082614ef5565b5060a082015181600901555050613f13565b6001600160a01b03871660009081526029602052604090205460ff168015613c7957506000601a54115b15613f1357613c986064612e51601a548861409e90919063ffffffff16565b9050601a5460185482613cab9190614fb5565b613cb59190614fea565b60206000828254613cc69190614e21565b9091555050601a54601954613cdb9083614fb5565b613ce59190614fea565b60216000828254613cf69190614e21565b9091555050601a54601754613d0b9083614fb5565b613d159190614fea565b601f6000828254613d269190614e21565b90915550506001600160a01b0386166000908152600d60205260408120549003613f13576040518060600160405280600a8080549050600b54613d69919061509f565b81548110613d7957613d796150b3565b906000526020600020018054613d8e90614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054613dba90614cde565b8015613e075780601f10613ddc57610100808354040283529160200191613e07565b820191906000526020600020905b815481529060010190602001808311613dea57829003601f168201915b5050509183525050604080518082018252600781526641636f6c79746560c81b602082810191909152808401919091528151606081018352600f80825281830181905281840152928201929092526001600160a01b0389166000908152600c909252902081518190613e799082614ef5565b5060208201516001820190613e8e9082614ef5565b50604091820151805160028301556020810151600383015590910151600490910155600b805460019190600090613ec6908490614e21565b9091555050604080516641636f6c79746560c81b8152600e6007820152905190819003602701902054613ef99042614e21565b6001600160a01b0387166000908152600d60205260409020555b8015613f2457613f248730836140bd565b613f2e81866150c9565b94505b613f3c8787876140bd565b50505050505050565b6005546001600160a01b031633146118725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ee7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60008160405160200161405891906150e0565b604051602081830303815290604052805190602001208360405160200161407f91906150e0565b6040516020818303038152906040528051906020012014905092915050565b60006140aa8284614fb5565b9392505050565b60006140aa8284614fea565b6001600160a01b0383166140e35760405162461bcd60e51b8152600401610ee790615017565b6001600160a01b0382166141095760405162461bcd60e51b8152600401610ee79061505c565b6001600160a01b038316600090815260208190526040902054818110156141815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ee7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906141b8908490614e21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161420491815260200190565b60405180910390a361313c565b3060009081526020819052604081205490506000602154601f546020546142389190614e21565b6142429190614e21565b90506000821580614251575081155b1561425b57505050565b601554614269906014614fb5565b8311156142815760155461427e906014614fb5565b92505b6000600283602054866142949190614fb5565b61429e9190614fea565b6142a89190614fea565b905060006142b68583614593565b9050476142c28261459f565b60006142ce4783614593565b905060006142eb87612e51601f548561409e90919063ffffffff16565b9050600061430888612e516021548661409e90919063ffffffff16565b905060008161431784866150c9565b61432191906150c9565b60006020819055601f81905560218190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461437e576040519150601f19603f3d011682016040523d82523d6000602084013e614383565b606091505b509098505086158015906143975750600081115b156143e8576143a687826146f9565b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114614435576040519150601f19603f3d011682016040523d82523d6000602084013e61443a565b606091505b50505050505050505050505050565b426025556013546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa15801561449a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144be9190614ffe565b905060006144dd612710612e516024548561409e90919063ffffffff16565b905080156144fe576013546144fe906001600160a01b031661dead836140bd565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561454857600080fd5b505af115801561455c573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006140aa82846150c9565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106145d4576145d46150b3565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561462d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061465191906150fc565b81600181518110614664576146646150b3565b6001600160a01b03928316602091820292909201015260065461468a9130911684612fa4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906146c3908590600090869030904290600401615119565b600060405180830381600087803b1580156146dd57600080fd5b505af11580156146f1573d6000803e3d6000fd5b505050505050565b6006546147119030906001600160a01b031684612fa4565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561477f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906147a4919061518a565b5050505050565b60005b838110156147c65781810151838201526020016147ae565b8381111561313c5750506000910152565b600081518084526147ef8160208601602086016147ab565b601f01601f19169290920160200192915050565b6020815260006140aa60208301846147d7565b6001600160a01b038116811461103457600080fd5b6000806040838503121561483e57600080fd5b823561484981614816565b946020939093013593505050565b60006020828403121561486957600080fd5b81356140aa81614816565b60008060006060848603121561488957600080fd5b833561489481614816565b925060208401356148a481614816565b929592945050506040919091013590565b6000602082840312156148c757600080fd5b5035919050565b6000815160a084526148e360a08501826147d7565b9050602083015184820360208601526148fc82826147d7565b915050604083015161492560408601828051825260208082015190830152604090810151910152565b509392505050565b60018060a01b038416815282602082015260606040820152600061495460608301846148ce565b95945050505050565b85815260a06020820152600061497660a08301876148ce565b6001600160a01b0386166040840152828103606084015261499781866147d7565b9150508260808301529695505050505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126149d157600080fd5b813567ffffffffffffffff808211156149ec576149ec6149aa565b604051601f8301601f19908116603f01168101908282118183101715614a1457614a146149aa565b81604052838152866020858801011115614a2d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215614a6057600080fd5b8235614a6b81614816565b9150602083013567ffffffffffffffff811115614a8757600080fd5b614a93858286016149c0565b9150509250929050565b8035801515811461256057600080fd5b600080600060608486031215614ac257600080fd5b8335925060208401359150614ad960408501614a9d565b90509250925092565b60008060408385031215614af557600080fd5b8235614b0081614816565b9150614b0e60208401614a9d565b90509250929050565b600080600060608486031215614b2c57600080fd5b505081359360208301359350604090920135919050565b600060208284031215614b5557600080fd5b6140aa82614a9d565b60a081526000614b7160a08301866147d7565b8281036020840152614b8381866147d7565b915050614ba760408301848051825260208082015190830152604090810151910152565b949350505050565b600060208284031215614bc157600080fd5b813567ffffffffffffffff811115614bd857600080fd5b614ba7848285016149c0565b60008060408385031215614bf757600080fd5b8235614c0281614816565b91506020830135614c1281614816565b809150509250929050565b600080600080600060a08688031215614c3557600080fd5b8535614c4081614816565b9450602086013567ffffffffffffffff811115614c5c57600080fd5b614c68888289016149c0565b959895975050505060408401359360608101359360809091013592509050565b86815260c060208201526000614ca160c08301886148ce565b6001600160a01b038781166040850152861660608401528281036080840152614cca81866147d7565b9150508260a0830152979650505050505050565b600181811c90821680614cf257607f821691505b602082108103614d1257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f596f7520617265206e6f742074686520536861706572206f6620466f726d7300604082015260600190565b6020808252604d908201527f546865206d6f6d656e7461727920616e6f6d6f6c7920697320666f72676f747460408201527f656e20616e6420796f75207472656164206f6e20696e20616e20756e656e646960608201526c37339039b4b6bab630ba34b7b760991b608082015260a00190565b60208082526029908201527f5265616c69747920697320616c72656164792073657420696e2c206f70656e20604082015268796f7572206579657360b81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614e3457614e34614e0b565b500190565b6000808354614e4781614cde565b60018281168015614e5f5760018114614e7457614ea3565b60ff1984168752821515830287019450614ea3565b8760005260208060002060005b85811015614e9a5781548a820152908401908201614e81565b50505082870194505b50929695505050505050565b601f821115611d4057600081815260208120601f850160051c81016020861015614ed65750805b601f850160051c820191505b818110156146f157828155600101614ee2565b815167ffffffffffffffff811115614f0f57614f0f6149aa565b614f2381614f1d8454614cde565b84614eaf565b602080601f831160018114614f585760008415614f405750858301515b600019600386901b1c1916600185901b1785556146f1565b600085815260208120601f198616915b82811015614f8757888601518255948401946001909101908401614f68565b5085821015614fa55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000816000190483118215151615614fcf57614fcf614e0b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082614ff957614ff9614fd4565b500490565b60006020828403121561501057600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826150ae576150ae614fd4565b500690565b634e487b7160e01b600052603260045260246000fd5b6000828210156150db576150db614e0b565b500390565b600082516150f28184602087016147ab565b9190910192915050565b60006020828403121561510e57600080fd5b81516140aa81614816565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156151695784516001600160a01b031683529383019391830191600101615144565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561519f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209749ad1270e9f4378329dace2f6d0be42565205468082f3425d1d210192af67b64736f6c634300080f003300000000000000000000000062f021240ca0944ab78dd809fdca0c6ac7f74047

Deployed Bytecode

0x6080604052600436106104775760003560e01c8063963a01d11161024a578063cd99db1d11610139578063e884f260116100b6578063f8b45b051161007a578063f8b45b0514610d72578063fa298d8714610d88578063fe72b27a14610dc0578063ff47730814610de0578063ff54e50914610e0057600080fd5b8063e884f26014610cdf578063f11a24d314610cf4578063f2fde38b14610d0a578063f605391214610d2a578063f637434214610d5c57600080fd5b8063dbbb4c31116100fd578063dbbb4c3114610c3b578063dd62ed3e14610c51578063e2f4560514610c71578063e369287e14610c87578063e613a5fa14610ca757600080fd5b8063cd99db1d14610863578063cf8c7a9b14610bd2578063d257b34f14610bf2578063d84e21b114610c12578063d85ba06314610c2557600080fd5b8063b5f588e8116101c7578063c18bc1951161018b578063c18bc19514610b38578063c3287ddd14610b58578063c53614fd14610b85578063c876d0b914610b9b578063c8c8ebe414610bbc57600080fd5b8063b5f588e814610a84578063b62496f514610ab3578063b8e234cb14610ae3578063c024666814610af8578063c17b5b8c14610b1857600080fd5b8063a457c2d71161020e578063a457c2d7146109ee578063a4c82a0014610a0e578063a9059cbb14610a24578063aa49802314610a44578063ac7f38d214610a6457600080fd5b8063963a01d11461096c5780639a7a23d6146109825780639ec22c0e146109a2578063a04b099a146109b8578063a2811760146109cd57600080fd5b80633d796abc11610366578063715018a6116102e35780638095d564116102a75780638095d564146108e35780638d1a5858146109035780638da5cb5b14610919578063924de9b71461093757806395d89b411461095757600080fd5b8063715018a614610863578063730c1888146108785780637571336a146108985780637a1e290f146108b857806380209940146108cd57600080fd5b806349bd5a5e1161032a57806349bd5a5e1461079d5780634fbee193146107bd5780636a486a8e146107f65780636ddd17131461080c57806370a082311461082d57600080fd5b80633d796abc146107025780633dc0f5aa146107335780633f18dc09146107465780633fa49c6b14610767578063414441af1461078757600080fd5b806323b872dd116103f45780632e82f1a0116103b85780632e82f1a014610661578063313ce56714610682578063373731e51461069e57806339509351146106b35780633a289b10146106d357600080fd5b806323b872dd146105de578063273c230a146105fe57806327c8f8351461061457806329d7034c1461062a5780632c3e486c1461064b57600080fd5b80631694505e1161043b5780631694505e1461055d57806318160ddd1461057d578063184c16c51461059c578063199ffc72146105b25780631a8145bb146105c857600080fd5b806306fdde0314610483578063095ea7b3146104ae57806310d5de53146104de578063128bb7911461050e578063156bda821461052557600080fd5b3661047e57005b600080fd5b34801561048f57600080fd5b50610498610e13565b6040516104a59190614803565b60405180910390f35b3480156104ba57600080fd5b506104ce6104c936600461482b565b610ea5565b60405190151581526020016104a5565b3480156104ea57600080fd5b506104ce6104f9366004614857565b60286020526000908152604090205460ff1681565b34801561051a57600080fd5b50610523610ebd565b005b34801561053157600080fd5b50600854610545906001600160a01b031681565b6040516001600160a01b0390911681526020016104a5565b34801561056957600080fd5b50600654610545906001600160a01b031681565b34801561058957600080fd5b506002545b6040519081526020016104a5565b3480156105a857600080fd5b5061058e60235481565b3480156105be57600080fd5b5061058e60245481565b3480156105d457600080fd5b5061058e60205481565b3480156105ea57600080fd5b506104ce6105f9366004614874565b610f59565b34801561060a57600080fd5b5061058e601f5481565b34801561062057600080fd5b5061054561dead81565b34801561063657600080fd5b506013546104ce90600160a81b900460ff1681565b34801561065757600080fd5b5061058e60225481565b34801561066d57600080fd5b506013546104ce90600160b81b900460ff1681565b34801561068e57600080fd5b50604051601281526020016104a5565b3480156106aa57600080fd5b50610523610f7d565b3480156106bf57600080fd5b506104ce6106ce36600461482b565b611037565b3480156106df57600080fd5b506106f36106ee3660046148b5565b611059565b6040516104a59392919061492d565b34801561070e57600080fd5b5061072261071d3660046148b5565b6111fc565b6040516104a595949392919061495d565b6104ce610741366004614a4d565b611432565b34801561075257600080fd5b506013546104ce90600160a01b900460ff1681565b34801561077357600080fd5b50610523610782366004614857565b6117d9565b34801561079357600080fd5b5061058e60215481565b3480156107a957600080fd5b50601354610545906001600160a01b031681565b3480156107c957600080fd5b506104ce6107d8366004614857565b6001600160a01b031660009081526027602052604090205460ff1690565b34801561080257600080fd5b5061058e601e5481565b34801561081857600080fd5b506013546104ce90600160c81b900460ff1681565b34801561083957600080fd5b5061058e610848366004614857565b6001600160a01b031660009081526020819052604090205490565b34801561086f57600080fd5b50610523611860565b34801561088457600080fd5b50610523610893366004614aad565b611874565b3480156108a457600080fd5b506105236108b3366004614ae2565b611986565b3480156108c457600080fd5b506104ce6119b9565b3480156108d957600080fd5b5061058e60175481565b3480156108ef57600080fd5b506105236108fe366004614b17565b611cbf565b34801561090f57600080fd5b5061058e60095481565b34801561092557600080fd5b506005546001600160a01b0316610545565b34801561094357600080fd5b50610523610952366004614b43565b611d45565b34801561096357600080fd5b50610498611d6b565b34801561097857600080fd5b5061058e60195481565b34801561098e57600080fd5b5061052361099d366004614ae2565b611d7a565b3480156109ae57600080fd5b5061058e60265481565b3480156109c457600080fd5b506104ce611e14565b3480156109d957600080fd5b506013546104ce90600160c01b900460ff1681565b3480156109fa57600080fd5b506104ce610a0936600461482b565b611e31565b348015610a1a57600080fd5b5061058e60255481565b348015610a3057600080fd5b506104ce610a3f36600461482b565b611eac565b348015610a5057600080fd5b50610523610a5f3660046148b5565b611eba565b348015610a7057600080fd5b50610498610a7f3660046148b5565b611f75565b348015610a9057600080fd5b50610aa4610a9f366004614857565b612021565b6040516104a593929190614b5e565b348015610abf57600080fd5b506104ce610ace366004614857565b60296020526000908152604090205460ff1681565b348015610aef57600080fd5b50610523612174565b348015610b0457600080fd5b50610523610b13366004614ae2565b612213565b348015610b2457600080fd5b50610523610b33366004614b17565b61227a565b348015610b4457600080fd5b50610523610b533660046148b5565b6122fb565b348015610b6457600080fd5b5061058e610b73366004614857565b600d6020526000908152604090205481565b348015610b9157600080fd5b5061058e601d5481565b348015610ba757600080fd5b506013546104ce90600160d01b900460ff1681565b348015610bc857600080fd5b5061058e60145481565b348015610bde57600080fd5b50610523610bed366004614857565b6123aa565b348015610bfe57600080fd5b506104ce610c0d3660046148b5565b612431565b6104ce610c20366004614baf565b612565565b348015610c3157600080fd5b5061058e601a5481565b348015610c4757600080fd5b5061058e601b5481565b348015610c5d57600080fd5b5061058e610c6c366004614be4565b612847565b348015610c7d57600080fd5b5061058e60155481565b348015610c9357600080fd5b506104ce610ca2366004614c1d565b612872565b348015610cb357600080fd5b5061058e610cc2366004614baf565b8051602081830181018051600f8252928201919093012091525481565b348015610ceb57600080fd5b506104ce612a2a565b348015610d0057600080fd5b5061058e60185481565b348015610d1657600080fd5b50610523610d25366004614857565b612a47565b348015610d3657600080fd5b50610d4a610d453660046148b5565b612abd565b6040516104a596959493929190614c88565b348015610d6857600080fd5b5061058e601c5481565b348015610d7e57600080fd5b5061058e60165481565b348015610d9457600080fd5b5061058e610da3366004614baf565b8051602081830181018051600e8252928201919093012091525481565b348015610dcc57600080fd5b506104ce610ddb3660046148b5565b612cfd565b348015610dec57600080fd5b50600754610545906001600160a01b031681565b6104ce610e0e366004614baf565b612f0e565b606060038054610e2290614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e90614cde565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b5050505050905090565b600033610eb3818585612fa4565b5060019392505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610ee790614d18565b60405180910390fd5b601354600160a01b900460ff1615610f1a5760405162461bcd60e51b8152600401610ee790614d4f565b601354600160a81b900460ff1615610f445760405162461bcd60e51b8152600401610ee790614dc2565b6013805460ff60a01b1916600160a01b179055565b600033610f678582856130c8565b610f72858585613142565b506001949350505050565b6007546001600160a01b03163314610fa75760405162461bcd60e51b8152600401610ee790614d18565b604051600090339047908381818185875af1925050503d8060008114610fe9576040519150601f19603f3d011682016040523d82523d6000602084013e610fee565b606091505b50509050806110345760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610ee7565b50565b600033610eb381858561104a8383612847565b6110549190614e21565b612fa4565b6010818154811061106957600080fd5b600091825260209091206007909102018054600182015460408051606081019091526002840180546001600160a01b039094169550919392909190829082906110b190614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546110dd90614cde565b801561112a5780601f106110ff5761010080835404028352916020019161112a565b820191906000526020600020905b81548152906001019060200180831161110d57829003601f168201915b5050505050815260200160018201805461114390614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461116f90614cde565b80156111bc5780601f10611191576101008083540402835291602001916111bc565b820191906000526020600020905b81548152906001019060200180831161119f57829003601f168201915b5050505050815260200160028201604051806060016040529081600082015481526020016001820154815260200160028201548152505081525050905083565b6011818154811061120c57600080fd5b90600052602060002090600902016000915090508060000154908060010160405180606001604052908160008201805461124590614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461127190614cde565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b505050505081526020016001820180546112d790614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461130390614cde565b80156113505780601f1061132557610100808354040283529160200191611350565b820191906000526020600020905b81548152906001019060200180831161133357829003601f168201915b50505091835250506040805160608101825260028401548152600384015460208281019190915260049094015491810191909152910152600682015460078301805492936001600160a01b03909216926113a990614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590614cde565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b5050505050908060080154905085565b336000908152600d6020526040812054158015906114615750600954336000908152600d602052604090205414155b6114ad5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b336000908152600c6020526040908190209051600f916114d291600190910190614e39565b90815260200160405180910390205434101561154b5760405162461bcd60e51b815260206004820152603260248201527f437572736520707269636520746f6f206c6f772e20496e6372656173652076616044820152716c7565206f7220636c696d622072616e6b7360701b6064820152608401610ee7565b60126040518060c00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461159e90614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca90614cde565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b5050505050815260200160018201805461163090614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461165c90614cde565b80156116a95780601f1061167e576101008083540402835291602001916116a9565b820191906000526020600020905b81548152906001019060200180831161168c57829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845233848301526001600160a01b03891692840192909252908201869052346080909201919091528254600181810185556000948552938290208351600a9092020190815590820151805192939192909183019081906117409082614ef5565b50602082015160018201906117559082614ef5565b5060409182015180516002830155602081015160038301558201516004909101558201516006820180546001600160a01b039283166001600160a01b0319918216179091556060840151600784018054919093169116179055608082015160088201906117c29082614ef5565b5060a0820151816009015550506001905092915050565b6007546001600160a01b031633146118035760405162461bcd60e51b8152600401610ee790614d18565b6008546040516001600160a01b03918216918316907f585d5d76ca696451c0a095343cb5c4d73934e0296ce13416e50623f32e78e0ac90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b611868613f45565b6118726000613f9f565b565b61187c613f45565b6102588310156118ea5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610ee7565b6103e882111580156118fa575060015b61195f5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610ee7565b60229290925560245560138054911515600160b81b0260ff60b81b19909216919091179055565b61198e613f45565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b336000908152600d602052604081205442108015906119e95750600954336000908152600d602052604090205414155b611a4d5760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f742072656365697665206120626c657373696e6720667260448201526e1bdb48135bdc9c1a195d5cc81e595d608a1b6064820152608401610ee7565b604080516060808201835233808352426020808501919091526000918252600c9052839020835191820184528054601094840192919082908290611a9090614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611abc90614cde565b8015611b095780601f10611ade57610100808354040283529160200191611b09565b820191906000526020600020905b815481529060010190602001808311611aec57829003601f168201915b50505050508152602001600182018054611b2290614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4e90614cde565b8015611b9b5780601f10611b7057610100808354040283529160200191611b9b565b820191906000526020600020905b815481529060010190602001808311611b7e57829003601f168201915b50505091835250506040805160608101825260028481015482526003850154602080840191909152600490950154828401529284015292909352845460018082018755600096875295829020855160079092020180546001600160a01b0319166001600160a01b039092169190911781559084015194810194909455820151805192939290918301908190611c309082614ef5565b5060208201516001820190611c459082614ef5565b5060409182015180516002830155602080820151600384015590830151600490920191909155336000908152600c9091528190209051600e9350611c8f9250600190910190614e39565b90815260200160405180910390205442611ca99190614e21565b336000908152600d602052604090205550600190565b611cc7613f45565b60178390556018829055601981905580611ce18385614e21565b611ceb9190614e21565b601a819055600a1015611d405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ee7565b505050565b611d4d613f45565b60138054911515600160c81b0260ff60c81b19909216919091179055565b606060048054610e2290614cde565b611d82613f45565b6013546001600160a01b0390811690831603611e065760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ee7565b611e108282613ff1565b5050565b6000611e1e613f45565b506013805460ff60c01b19169055600190565b60003381611e3f8286612847565b905083811015611e9f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ee7565b610f728286868403612fa4565b600033610eb3818585613142565b611ec2613f45565b670de0b6b3a76400006103e8611ed760025490565b611ee2906005614fb5565b611eec9190614fea565b611ef69190614fea565b811015611f5d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610ee7565b611f6f81670de0b6b3a7640000614fb5565b60145550565b600a8181548110611f8557600080fd5b906000526020600020016000915090508054611fa090614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611fcc90614cde565b80156120195780601f10611fee57610100808354040283529160200191612019565b820191906000526020600020905b815481529060010190602001808311611ffc57829003601f168201915b505050505081565b600c6020526000908152604090208054819061203c90614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461206890614cde565b80156120b55780601f1061208a576101008083540402835291602001916120b5565b820191906000526020600020905b81548152906001019060200180831161209857829003601f168201915b5050505050908060010180546120ca90614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546120f690614cde565b80156121435780601f1061211857610100808354040283529160200191612143565b820191906000526020600020905b81548152906001019060200180831161212657829003601f168201915b5050604080516060810182526002870154815260038701546020820152600490960154908601525091929150849050565b6007546001600160a01b0316331461219e5760405162461bcd60e51b8152600401610ee790614d18565b601354600160a01b900460ff16156121c85760405162461bcd60e51b8152600401610ee790614d4f565b601354600160a81b900460ff16156121f25760405162461bcd60e51b8152600401610ee790614dc2565b6013805464ff000000ff60a81b191664010000000160a81b17905542602555565b61221b613f45565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b612282613f45565b601b839055601c829055601d8190558061229c8385614e21565b6122a69190614e21565b601e819055600f1015611d405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610ee7565b612303613f45565b670de0b6b3a76400006103e861231860025490565b61232390600a614fb5565b61232d9190614fea565b6123379190614fea565b8110156123925760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610ee7565b6123a481670de0b6b3a7640000614fb5565b60165550565b6007546001600160a01b031633146123d45760405162461bcd60e51b8152600401610ee790614d18565b6007546040516001600160a01b03918216918316907ff348ecf13e26f7720f87efe7fcf69c202dc41c5cab439cc253a1dd71034ba7ed90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061243b613f45565b620186a061244860025490565b612453906001614fb5565b61245d9190614fea565b8210156124ca5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ee7565b6103e86124d660025490565b6124e1906005614fb5565b6124eb9190614fea565b8211156125575760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ee7565b50601581905560015b919050565b336000908152600d6020526040812054158015906125945750600954336000908152600d602052604090205414155b6125e05760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b60116040518060a00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461263390614cde565b80601f016020809104026020016040519081016040528092919081815260200182805461265f90614cde565b80156126ac5780601f10612681576101008083540402835291602001916126ac565b820191906000526020600020905b81548152906001019060200180831161268f57829003601f168201915b505050505081526020016001820180546126c590614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546126f190614cde565b801561273e5780601f106127135761010080835404028352916020019161273e565b820191906000526020600020905b81548152906001019060200180831161272157829003601f168201915b5050509183525050604080516060808201835260028501548252600385015460208381019190915260049095015482840152928401529284523384830152918301879052349290910191909152825460018181018555600094855293829020835160099092020190815590820151805192939192909183019081906127c39082614ef5565b50602082015160018201906127d89082614ef5565b5060409182015180516002830155602081015160038301558201516004909101558201516006820180546001600160a01b0319166001600160a01b03909216919091179055606082015160078201906128319082614ef5565b5060808201518160080155505060019050919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546000906001600160a01b0316331461289f5760405162461bcd60e51b8152600401610ee790614d18565b604080516060810182526001600160a01b0388166000908152600c6020529190912080548291906128cf90614cde565b80601f01602080910402602001604051908101604052809291908181526020018280546128fb90614cde565b80156129485780601f1061291d57610100808354040283529160200191612948565b820191906000526020600020905b81548152906001019060200180831161292b57829003601f168201915b5050509183525050602080820188905260408051606081018252888152808301889052808201879052928101929092526001600160a01b0389166000908152600c909152208151819061299b9082614ef5565b50602082015160018201906129b09082614ef5565b5060409182015180516002830155602080820151600384015590830151600490920191909155815180830190925260088252674d6f72706865757360c01b908201526129fd908690614045565b15612a1e57600780546001600160a01b0319166001600160a01b0388161790555b50600195945050505050565b6000612a34613f45565b506013805460ff60d01b19169055600190565b612a4f613f45565b6001600160a01b038116612ab45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ee7565b61103481613f9f565b60128181548110612acd57600080fd5b90600052602060002090600a020160009150905080600001549080600101604051806060016040529081600082018054612b0690614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3290614cde565b8015612b7f5780601f10612b5457610100808354040283529160200191612b7f565b820191906000526020600020905b815481529060010190602001808311612b6257829003601f168201915b50505050508152602001600182018054612b9890614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc490614cde565b8015612c115780601f10612be657610100808354040283529160200191612c11565b820191906000526020600020905b815481529060010190602001808311612bf457829003601f168201915b505050918352505060408051606081018252600284015481526003840154602080830191909152600490940154918101919091529101526006820154600783015460088401805493946001600160a01b03938416949390921692612c7490614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca090614cde565b8015612ced5780601f10612cc257610100808354040283529160200191612ced565b820191906000526020600020905b815481529060010190602001808311612cd057829003601f168201915b5050505050908060090154905086565b6000612d07613f45565b602354602654612d179190614e21565b4211612d655760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610ee7565b6103e8821115612dca5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610ee7565b426026556013546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015612e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e3d9190614ffe565b90506000612e57612710612e51848761409e565b906140b1565b90508015612e7857601354612e78906001600160a01b031661dead836140bd565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b158015612ec257600080fd5b505af1158015612ed6573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b600066b1a2bc2ec500003410156125e05760405162461bcd60e51b815260206004820152604e60248201527f5361637269666963657320636f6d652077697468206120636f73742c2076616c60448201527f7565206d7573742062652067726561746572207468616e206f7220657175616c60648201526d103a37901817181a9032ba3432b960911b608482015260a401610ee7565b6001600160a01b0383166130065760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ee7565b6001600160a01b0382166130675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ee7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006130d48484612847565b9050600019811461313c578181101561312f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ee7565b61313c8484848403612fa4565b50505050565b6001600160a01b0383166131685760405162461bcd60e51b8152600401610ee790615017565b6001600160a01b03821661318e5760405162461bcd60e51b8152600401610ee79061505c565b806000036131a257611d40838360006140bd565b601354600160c01b900460ff1615613627576005546001600160a01b038481169116148015906131e057506005546001600160a01b03838116911614155b80156131f457506001600160a01b03821615155b801561320b57506001600160a01b03821661dead14155b80156132215750601354600160b01b900460ff16155b1561362757601354600160a81b900460ff166132bb576001600160a01b03831660009081526027602052604090205460ff168061327657506001600160a01b03821660009081526027602052604090205460ff165b6132bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ee7565b601354600160d01b900460ff16156133c1576005546001600160a01b038381169116148015906132f957506006546001600160a01b03838116911614155b801561331357506013546001600160a01b03838116911614155b156133c157326000908152602a602052604090205443116133ae5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ee7565b326000908152602a602052604090204390555b6001600160a01b03831660009081526029602052604090205460ff16801561340257506001600160a01b03821660009081526028602052604090205460ff16155b156134e6576014548111156134775760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ee7565b6016546001600160a01b03831660009081526020819052604090205461349d9083614e21565b11156134e15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b613627565b6001600160a01b03821660009081526029602052604090205460ff16801561352757506001600160a01b03831660009081526028602052604090205460ff16155b1561359d576014548111156134e15760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ee7565b6001600160a01b03821660009081526028602052604090205460ff16613627576016546001600160a01b0383166000908152602081905260409020546135e39083614e21565b11156136275760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b30600090815260208190526040902054601554811080159081906136545750601354600160c81b900460ff165b801561366a5750601354600160b01b900460ff16155b801561368f57506001600160a01b03851660009081526029602052604090205460ff16155b80156136b457506001600160a01b03851660009081526027602052604090205460ff16155b80156136d957506001600160a01b03841660009081526027602052604090205460ff16155b15613707576013805460ff60b01b1916600160b01b1790556136f9614211565b6013805460ff60b01b191690555b601354600160b01b900460ff1615801561373957506001600160a01b03841660009081526029602052604090205460ff165b801561374e5750601354600160b81b900460ff165b801561376957506022546025546137659190614e21565b4210155b801561378e57506001600160a01b03851660009081526027602052604090205460ff16155b1561379d5761379b614449565b505b6013546001600160a01b03861660009081526027602052604090205460ff600160b01b9092048216159116806137eb57506001600160a01b03851660009081526027602052604090205460ff165b156137f4575060005b60008115613f31576001600160a01b03861660009081526029602052604090205460ff16801561382657506000601e54115b15613c4f576138456064612e51601e548861409e90919063ffffffff16565b9050601e54601c54826138589190614fb5565b6138629190614fea565b602060008282546138739190614e21565b9091555050601e54601d546138889083614fb5565b6138929190614fea565b602160008282546138a39190614e21565b9091555050601e54601b546138b89083614fb5565b6138c29190614fea565b601f60008282546138d39190614e21565b90915550506009546001600160a01b0388166000818152600d6020908152604080832094909455835160a08101855260046060808301918252631395531360e21b608084015290825285518087018752600e81526d10de585b9a591948141a5b1b195960921b81850152828401528551908101865283815280830184905280860184905281860152928252600c905291909120815181906139749082614ef5565b50602082015160018201906139899082614ef5565b5060409182015180516002830155602080820151600384015590830151600490920191909155815160c081018352428152336000908152600c8352839020835160608101909452805460129492938401929190829082906139e990614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054613a1590614cde565b8015613a625780601f10613a3757610100808354040283529160200191613a62565b820191906000526020600020905b815481529060010190602001808311613a4557829003601f168201915b50505050508152602001600182018054613a7b90614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054613aa790614cde565b8015613af45780601f10613ac957610100808354040283529160200191613af4565b820191906000526020600020905b815481529060010190602001808311613ad757829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845230848301526001600160a01b038d16848401528251808401909352601883527f4379616e6964652050696c6c65642c20436f6d61746f736500000000000000008383015283019190915261029a6080909201919091528254600181810185556000948552938290208351600a909202019081559082015180519293919290918301908190613bbb9082614ef5565b5060208201516001820190613bd09082614ef5565b5060409182015180516002830155602081015160038301558201516004909101558201516006820180546001600160a01b039283166001600160a01b031991821617909155606084015160078401805491909316911617905560808201516008820190613c3d9082614ef5565b5060a082015181600901555050613f13565b6001600160a01b03871660009081526029602052604090205460ff168015613c7957506000601a54115b15613f1357613c986064612e51601a548861409e90919063ffffffff16565b9050601a5460185482613cab9190614fb5565b613cb59190614fea565b60206000828254613cc69190614e21565b9091555050601a54601954613cdb9083614fb5565b613ce59190614fea565b60216000828254613cf69190614e21565b9091555050601a54601754613d0b9083614fb5565b613d159190614fea565b601f6000828254613d269190614e21565b90915550506001600160a01b0386166000908152600d60205260408120549003613f13576040518060600160405280600a8080549050600b54613d69919061509f565b81548110613d7957613d796150b3565b906000526020600020018054613d8e90614cde565b80601f0160208091040260200160405190810160405280929190818152602001828054613dba90614cde565b8015613e075780601f10613ddc57610100808354040283529160200191613e07565b820191906000526020600020905b815481529060010190602001808311613dea57829003601f168201915b5050509183525050604080518082018252600781526641636f6c79746560c81b602082810191909152808401919091528151606081018352600f80825281830181905281840152928201929092526001600160a01b0389166000908152600c909252902081518190613e799082614ef5565b5060208201516001820190613e8e9082614ef5565b50604091820151805160028301556020810151600383015590910151600490910155600b805460019190600090613ec6908490614e21565b9091555050604080516641636f6c79746560c81b8152600e6007820152905190819003602701902054613ef99042614e21565b6001600160a01b0387166000908152600d60205260409020555b8015613f2457613f248730836140bd565b613f2e81866150c9565b94505b613f3c8787876140bd565b50505050505050565b6005546001600160a01b031633146118725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ee7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60008160405160200161405891906150e0565b604051602081830303815290604052805190602001208360405160200161407f91906150e0565b6040516020818303038152906040528051906020012014905092915050565b60006140aa8284614fb5565b9392505050565b60006140aa8284614fea565b6001600160a01b0383166140e35760405162461bcd60e51b8152600401610ee790615017565b6001600160a01b0382166141095760405162461bcd60e51b8152600401610ee79061505c565b6001600160a01b038316600090815260208190526040902054818110156141815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ee7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906141b8908490614e21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161420491815260200190565b60405180910390a361313c565b3060009081526020819052604081205490506000602154601f546020546142389190614e21565b6142429190614e21565b90506000821580614251575081155b1561425b57505050565b601554614269906014614fb5565b8311156142815760155461427e906014614fb5565b92505b6000600283602054866142949190614fb5565b61429e9190614fea565b6142a89190614fea565b905060006142b68583614593565b9050476142c28261459f565b60006142ce4783614593565b905060006142eb87612e51601f548561409e90919063ffffffff16565b9050600061430888612e516021548661409e90919063ffffffff16565b905060008161431784866150c9565b61432191906150c9565b60006020819055601f81905560218190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461437e576040519150601f19603f3d011682016040523d82523d6000602084013e614383565b606091505b509098505086158015906143975750600081115b156143e8576143a687826146f9565b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114614435576040519150601f19603f3d011682016040523d82523d6000602084013e61443a565b606091505b50505050505050505050505050565b426025556013546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa15801561449a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144be9190614ffe565b905060006144dd612710612e516024548561409e90919063ffffffff16565b905080156144fe576013546144fe906001600160a01b031661dead836140bd565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561454857600080fd5b505af115801561455c573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006140aa82846150c9565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106145d4576145d46150b3565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561462d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061465191906150fc565b81600181518110614664576146646150b3565b6001600160a01b03928316602091820292909201015260065461468a9130911684612fa4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906146c3908590600090869030904290600401615119565b600060405180830381600087803b1580156146dd57600080fd5b505af11580156146f1573d6000803e3d6000fd5b505050505050565b6006546147119030906001600160a01b031684612fa4565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561477f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906147a4919061518a565b5050505050565b60005b838110156147c65781810151838201526020016147ae565b8381111561313c5750506000910152565b600081518084526147ef8160208601602086016147ab565b601f01601f19169290920160200192915050565b6020815260006140aa60208301846147d7565b6001600160a01b038116811461103457600080fd5b6000806040838503121561483e57600080fd5b823561484981614816565b946020939093013593505050565b60006020828403121561486957600080fd5b81356140aa81614816565b60008060006060848603121561488957600080fd5b833561489481614816565b925060208401356148a481614816565b929592945050506040919091013590565b6000602082840312156148c757600080fd5b5035919050565b6000815160a084526148e360a08501826147d7565b9050602083015184820360208601526148fc82826147d7565b915050604083015161492560408601828051825260208082015190830152604090810151910152565b509392505050565b60018060a01b038416815282602082015260606040820152600061495460608301846148ce565b95945050505050565b85815260a06020820152600061497660a08301876148ce565b6001600160a01b0386166040840152828103606084015261499781866147d7565b9150508260808301529695505050505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126149d157600080fd5b813567ffffffffffffffff808211156149ec576149ec6149aa565b604051601f8301601f19908116603f01168101908282118183101715614a1457614a146149aa565b81604052838152866020858801011115614a2d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215614a6057600080fd5b8235614a6b81614816565b9150602083013567ffffffffffffffff811115614a8757600080fd5b614a93858286016149c0565b9150509250929050565b8035801515811461256057600080fd5b600080600060608486031215614ac257600080fd5b8335925060208401359150614ad960408501614a9d565b90509250925092565b60008060408385031215614af557600080fd5b8235614b0081614816565b9150614b0e60208401614a9d565b90509250929050565b600080600060608486031215614b2c57600080fd5b505081359360208301359350604090920135919050565b600060208284031215614b5557600080fd5b6140aa82614a9d565b60a081526000614b7160a08301866147d7565b8281036020840152614b8381866147d7565b915050614ba760408301848051825260208082015190830152604090810151910152565b949350505050565b600060208284031215614bc157600080fd5b813567ffffffffffffffff811115614bd857600080fd5b614ba7848285016149c0565b60008060408385031215614bf757600080fd5b8235614c0281614816565b91506020830135614c1281614816565b809150509250929050565b600080600080600060a08688031215614c3557600080fd5b8535614c4081614816565b9450602086013567ffffffffffffffff811115614c5c57600080fd5b614c68888289016149c0565b959895975050505060408401359360608101359360809091013592509050565b86815260c060208201526000614ca160c08301886148ce565b6001600160a01b038781166040850152861660608401528281036080840152614cca81866147d7565b9150508260a0830152979650505050505050565b600181811c90821680614cf257607f821691505b602082108103614d1257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f596f7520617265206e6f742074686520536861706572206f6620466f726d7300604082015260600190565b6020808252604d908201527f546865206d6f6d656e7461727920616e6f6d6f6c7920697320666f72676f747460408201527f656e20616e6420796f75207472656164206f6e20696e20616e20756e656e646960608201526c37339039b4b6bab630ba34b7b760991b608082015260a00190565b60208082526029908201527f5265616c69747920697320616c72656164792073657420696e2c206f70656e20604082015268796f7572206579657360b81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614e3457614e34614e0b565b500190565b6000808354614e4781614cde565b60018281168015614e5f5760018114614e7457614ea3565b60ff1984168752821515830287019450614ea3565b8760005260208060002060005b85811015614e9a5781548a820152908401908201614e81565b50505082870194505b50929695505050505050565b601f821115611d4057600081815260208120601f850160051c81016020861015614ed65750805b601f850160051c820191505b818110156146f157828155600101614ee2565b815167ffffffffffffffff811115614f0f57614f0f6149aa565b614f2381614f1d8454614cde565b84614eaf565b602080601f831160018114614f585760008415614f405750858301515b600019600386901b1c1916600185901b1785556146f1565b600085815260208120601f198616915b82811015614f8757888601518255948401946001909101908401614f68565b5085821015614fa55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000816000190483118215151615614fcf57614fcf614e0b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082614ff957614ff9614fd4565b500490565b60006020828403121561501057600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826150ae576150ae614fd4565b500690565b634e487b7160e01b600052603260045260246000fd5b6000828210156150db576150db614e0b565b500390565b600082516150f28184602087016147ab565b9190910192915050565b60006020828403121561510e57600080fd5b81516140aa81614816565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156151695784516001600160a01b031683529383019391830191600101615144565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561519f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209749ad1270e9f4378329dace2f6d0be42565205468082f3425d1d210192af67b64736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000062f021240ca0944ab78dd809fdca0c6ac7f74047

-----Decoded View---------------
Arg [0] : _vaultAddr (address): 0x62F021240Ca0944ab78Dd809fdca0c6AC7F74047

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000062f021240ca0944ab78dd809fdca0c6ac7f74047


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.