ETH Price: $1,583.60 (-2.96%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Auction

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 0 runs

Other Settings:
default evmVersion
File 1 of 13 : Auction.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.4.25 <0.7.0;

/** OpenZeppelin Dependencies */
// import "@openzeppelin/contracts-upgradeable/contracts/proxy/Initializable.sol";
import '@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol';
/** Uniswap */
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
/** Local Interfaces */
import './interfaces/IToken.sol';
import './interfaces/IAuction.sol';
import './interfaces/IStaking.sol';
import './interfaces/IAuctionV1.sol';

contract Auction is IAuction, Initializable, AccessControlUpgradeable {
    using SafeMathUpgradeable for uint256;

    /** Events */
    event Bid(
        address indexed account,
        uint256 value,
        uint256 indexed auctionId,
        uint256 time
    );

    event VentureBid(
        address indexed account,
        uint256 ethBid,
        uint256 indexed auctionId,
        uint256 time,
        address[] coins,
        uint256[] amountBought
    );

    event Withdraval(
        address indexed account,
        uint256 value,
        uint256 indexed auctionId,
        uint256 time,
        uint256 stakeDays
    );

    event AuctionIsOver(uint256 eth, uint256 token, uint256 indexed auctionId);

    /** Structs */
    struct AuctionReserves {
        uint256 eth; // Amount of Eth in the auction
        uint256 token; // Amount of Axn in auction for day
        uint256 uniswapLastPrice; // Last known uniswap price from last bid
        uint256 uniswapMiddlePrice; // Using middle price days to calculate avg price
    }

    struct UserBid {
        uint256 eth; // Amount of ethereum
        address ref; // Referrer address for bid
        bool withdrawn; // Determine withdrawn
    }

    struct Addresses {
        address mainToken; // Axion token address
        address staking; // Staking platform
        address payable uniswap; // Uniswap Main Router
        address payable recipient; // Origin address for excess ethereum in auction
    }

    struct Options {
        uint256 autoStakeDays; // # of days bidder must stake once axion is won from auction
        uint256 referrerPercent; // Referral Bonus %
        uint256 referredPercent; // Referral Bonus %
        bool referralsOn; // If on referrals are used on auction
        uint256 discountPercent; // Discount in comparison to uniswap price in auction
        uint256 premiumPercent; // Premium in comparions to unsiwap price in auction
    }

    /** Roles */
    bytes32 public constant MIGRATOR_ROLE = keccak256('MIGRATOR_ROLE');
    bytes32 public constant MANAGER_ROLE = keccak256('MANAGER_ROLE');
    bytes32 public constant CALLER_ROLE = keccak256('CALLER_ROLE');

    /** Mapping */
    mapping(uint256 => AuctionReserves) public reservesOf; // [day],
    mapping(address => uint256[]) public auctionsOf;
    mapping(uint256 => mapping(address => UserBid)) public auctionBidOf;
    mapping(uint256 => mapping(address => bool)) public existAuctionsOf;

    /** Simple types */
    uint256 public lastAuctionEventId; // Index for Auction
    uint256 public lastAuctionEventIdV1; // Last index for layer 1 auction
    uint256 public start; // Beginning of contract
    uint256 public stepTimestamp; // # of seconds per "axion day" (86400)

    Options public options; // Auction options (see struct above)
    Addresses public addresses; // (See Address struct above)
    IAuctionV1 public auctionV1; // V1 Auction contract for backwards compatibility

    bool public init_; // Unneeded legacy variable to ensure init is only called once.

    mapping(uint256 => mapping(address => uint256)) public autoStakeDaysOf; // NOT USED

    uint256 public middlePriceDays; // When calculating auction price this is used to determine average

    struct VentureToken {
        address coin; // address of token to buy from swap
        uint96 percentage; // % of token to buy NOTE: (On a VCA day all Venture tokens % should add up to 100%)
    }

    struct AuctionData {
        uint8 mode; // 1 = VCA, 0 = Normal Auction
        VentureToken[] tokens; // Tokens to buy in VCA
    }

    AuctionData[7] internal auctions; // 7 values for 7 days of the week
    uint8 internal ventureAutoStakeDays; // # of auto stake days for VCA Auction

    /* UGPADEABILITY: New variables must go below here. */

    /** modifiers */
    modifier onlyCaller() {
        require(
            hasRole(CALLER_ROLE, _msgSender()),
            'Caller is not a caller role'
        );
        _;
    }

    modifier onlyManager() {
        require(
            hasRole(MANAGER_ROLE, _msgSender()),
            'Caller is not a manager role'
        );
        _;
    }

    modifier onlyMigrator() {
        require(
            hasRole(MIGRATOR_ROLE, _msgSender()),
            'Caller is not a migrator'
        );
        _;
    }

    /** Update Price of current auction
        Get current axion day
        Get uniswapLastPrice
        Set middlePrice
     */
    function _updatePrice() internal {
        uint256 currentAuctionId = getCurrentAuctionId();

        /** Set reserves of */
        reservesOf[currentAuctionId].uniswapLastPrice = getUniswapLastPrice();
        reservesOf[currentAuctionId]
            .uniswapMiddlePrice = getUniswapMiddlePriceForDays();
    }

    /**
        Get token paths
        Use uniswap to buy tokens back and send to staking platform using (addresses.staking)

        @param tokenAddress {address} - Token to buy from uniswap
        @param amountOutMin {uint256} - Slippage tolerance for router
        @param amount {uint256} - Min amount expected
        @param deadline {uint256} - Deadline for trade (used for uniswap router)
     */
    function _swapEthForToken(
        address tokenAddress,
        uint256 amountOutMin,
        uint256 amount,
        uint256 deadline
    ) private returns (uint256) {
        address[] memory path = new address[](2);

        path[0] = IUniswapV2Router02(addresses.uniswap).WETH();
        path[1] = tokenAddress;

        return
            IUniswapV2Router02(addresses.uniswap).swapExactETHForTokens{
                value: amount
            }(amountOutMin, path, addresses.staking, deadline)[1];
    }

    /**
        Bid function which routes to either venture bid or bid internal

        @param amountOutMin {uint256[]} - Slippage tolerance for uniswap router 
        @param deadline {uint256} - Deadline for trade (used for uniswap router)
        @param ref {address} - Referrer Address to get % axion from bid
     */
    function bid(
        uint256[] calldata amountOutMin,
        uint256 deadline,
        address ref
    ) external payable {
        uint256 currentDay = getCurrentDay();
        uint8 auctionMode = auctions[currentDay].mode;

        if (auctionMode == 0) {
            bidInternal(amountOutMin[0], deadline);
        } else if (auctionMode == 1) {
            ventureBid(amountOutMin, deadline, currentDay);
        }
    }

    /**
        BidInternal - Buys back axion from uniswap router and sends to staking platform

        @param amountOutMin {uint256} - Slippage tolerance for uniswap router 
        @param deadline {uint256} - Deadline for trade (used for uniswap router)
     */
    function bidInternal(uint256 amountOutMin, uint256 deadline) internal {
        _saveAuctionData();
        _updatePrice();

        /** Get percentage for recipient and uniswap (Extra function really unnecessary) */
        (uint256 toRecipient, uint256 toUniswap) =
            _calculateRecipientAndUniswapAmountsToSend();

        /** Buy back tokens from uniswap and send to staking contract */
        _swapEthForToken(
            addresses.mainToken,
            amountOutMin,
            toUniswap,
            deadline
        );

        /** Get Auction ID */
        uint256 auctionId = getCurrentAuctionId();

        /** Run common shared functionality between VCA and Normal */
        bidCommon(auctionId);

        /** Transfer any eithereum in contract to recipient address */
        addresses.recipient.transfer(toRecipient);

        /** Send event to blockchain */
        emit Bid(msg.sender, msg.value, auctionId, now);
    }

    /**
        BidInternal - Buys back axion from uniswap router and sends to staking platform

        @param amountOutMin {uint256[]} - Slippage tolerance for uniswap router 
        @param deadline {uint256} - Deadline for trade (used for uniswap router)
        @param currentDay {uint256} - currentAuctionId
     */
    function ventureBid(
        uint256[] memory amountOutMin,
        uint256 deadline,
        uint256 currentDay
    ) internal {
        _saveAuctionData();
        _updatePrice();

        /** Get the token(s) of the day */
        VentureToken[] storage tokens = auctions[currentDay].tokens;
        /** Create array to determine amount bought for each token */
        address[] memory coinsBought = new address[](tokens.length);
        uint256[] memory amountsBought = new uint256[](tokens.length);

        (uint256 toRecipient, uint256 toUniswap) =
            _calculateRecipientAndUniswapAmountsToSendVCA();

        /** Loop over tokens to purchase */
        for (uint8 i = 0; i < tokens.length; i++) {
            /** Determine amount to purchase based on ethereum bid */
            uint256 amountBought;
            uint256 amountToBuy = toUniswap.mul(tokens[i].percentage).div(100);

            /** If token is 0xFFfFfF... we buy no token and just distribute the bidded ethereum */
            if (
                tokens[i].coin !=
                address(0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF)
            ) {
                amountBought = _swapEthForToken(
                    tokens[i].coin,
                    amountOutMin[i],
                    amountToBuy,
                    deadline
                );

                IStaking(addresses.staking).updateTokenPricePerShare(
                    msg.sender,
                    addresses.recipient,
                    tokens[i].coin,
                    amountBought
                );
            } else {
                amountBought = amountToBuy;

                IStaking(addresses.staking).updateTokenPricePerShare{
                    value: amountToBuy
                }(msg.sender, addresses.recipient, tokens[i].coin, amountToBuy); // Payable amount
            }

            coinsBought[i] = tokens[i].coin;
            amountsBought[i] = amountBought;
        }

        uint256 currentAuctionId = getCurrentAuctionId();
        bidCommon(currentAuctionId);

        /** Transfer any eithereum in contract to recipient address */
        addresses.recipient.transfer(toRecipient);

        emit VentureBid(
            msg.sender,
            msg.value,
            currentAuctionId,
            now,
            coinsBought,
            amountsBought
        );
    }

    /**
        Bid Common - Set common values for bid

        @param auctionId (uint256) - ID of auction
     */
    function bidCommon(uint256 auctionId) internal {
        /** Set auctionBid for bidder */
        auctionBidOf[auctionId][_msgSender()].eth = auctionBidOf[auctionId][
            _msgSender()
        ]
            .eth
            .add(msg.value);

        /** Set existsOf in order to include all auction bids for current user into one */
        if (!existAuctionsOf[auctionId][_msgSender()]) {
            auctionsOf[_msgSender()].push(auctionId);
            existAuctionsOf[auctionId][_msgSender()] = true;
        }

        reservesOf[auctionId].eth = reservesOf[auctionId].eth.add(msg.value);

        /** auction oversell check */
        uint256 tokensSold =
            (reservesOf[auctionId].eth *
                reservesOf[auctionId].uniswapMiddlePrice) / 1e18;

        uint256 tokensSoldFinal =
            tokensSold
                .add(tokensSold.mul(options.discountPercent).div(100))
                .sub(tokensSold.mul(options.premiumPercent).div(100));

        require(
            tokensSoldFinal <= reservesOf[auctionId].token,
            'Auction reached capacity'
        );
    }

    /**
        getUniswapLastPrice - Use uniswap router to determine current price based on ethereum
    */
    function getUniswapLastPrice() internal view returns (uint256) {
        address[] memory path = new address[](2);

        path[0] = IUniswapV2Router02(addresses.uniswap).WETH();
        path[1] = addresses.mainToken;

        uint256 price =
            IUniswapV2Router02(addresses.uniswap).getAmountsOut(1e18, path)[1];

        return price;
    }

    /**
        getUniswapMiddlePriceForDays
            Use the "last known price" for the last {middlePriceDays} days to determine middle price by taking an average
     */
    function getUniswapMiddlePriceForDays() internal view returns (uint256) {
        uint256 currentAuctionId = getCurrentAuctionId();

        uint256 index = currentAuctionId;
        uint256 sum;
        uint256 points;

        while (points != middlePriceDays) {
            if (reservesOf[index].uniswapLastPrice != 0) {
                sum = sum.add(reservesOf[index].uniswapLastPrice);
                points = points.add(1);
            }

            if (index == 0) break;

            index = index.sub(1);
        }

        if (sum == 0) return getUniswapLastPrice();
        else return sum.div(points);
    }

    /**
        withdraw - Withdraws an auction bid and stakes axion in staking contract

        @param auctionId {uint256} - Auction to withdraw from
        @param stakeDays {uint256} - # of days to stake in portal
     */
    function withdraw(uint256 auctionId, uint256 stakeDays) external {
        _saveAuctionData();
        _updatePrice();

        /** Require the # of days staking > options */
        uint8 auctionMode = auctions[auctionId.mod(7)].mode;
        if (auctionMode == 0) {
            require(
                stakeDays >= options.autoStakeDays,
                'Auction: stakeDays < minimum days'
            );
        } else if (auctionMode == 1) {
            require(
                stakeDays >= ventureAutoStakeDays,
                'Auction: stakeDays < minimum days'
            );
        }

        /** Require # of staking days < 5556 */
        require(stakeDays <= 5555, 'Auction: stakeDays > 5555');

        UserBid storage userBid = auctionBidOf[auctionId][_msgSender()];

        require(
            userBid.eth > 0 && userBid.withdrawn == false,
            'Auction: Zero bid or withdrawn'
        );

        /** Set Withdrawn to true */
        userBid.withdrawn = true;

        /** Call common withdraw functions */
        withdrawInternal(userBid.ref, userBid.eth, auctionId, stakeDays);
    }

    /**
        withdraw - Withdraws an auction bid and stakes axion in staking contract

        @param auctionId {uint256} - Auction to withdraw from
        @param stakeDays {uint256} - # of days to stake in portal
        NOTE: No longer needed, as there is most likely not more bids from v1 that have not been withdraw 
     */
    function withdrawV1(uint256 auctionId, uint256 stakeDays) external {
        _saveAuctionData();
        _updatePrice();

        // Backward compatability with v1 auction
        require(
            auctionId <= lastAuctionEventIdV1,
            'Auction: Invalid auction id'
        );
        /** Ensure stake days > options  */
        require(
            stakeDays >= options.autoStakeDays,
            'Auction: stakeDays < minimum days'
        );
        require(stakeDays <= 5555, 'Auction: stakeDays > 5555');

        /** This stops a user from using WithdrawV1 twice, since the bid is put into memory at the end */
        UserBid storage userBid = auctionBidOf[auctionId][_msgSender()];
        require(
            userBid.eth == 0 && userBid.withdrawn == false,
            'Auction: Invalid auction ID'
        );

        (uint256 eth, address ref) =
            auctionV1.auctionBetOf(auctionId, _msgSender());
        require(eth > 0, 'Auction: Zero balance in auction/invalid auction ID');

        /** Common withdraw functionality */
        withdrawInternal(ref, eth, auctionId, stakeDays);

        /** Bring v1 auction bid to v2 */
        auctionBidOf[auctionId][_msgSender()] = UserBid({
            eth: eth,
            ref: ref,
            withdrawn: true
        });

        auctionsOf[_msgSender()].push(auctionId);
    }

    function withdrawInternal(
        address ref,
        uint256 eth,
        uint256 auctionId,
        uint256 stakeDays
    ) internal {
        require(
            getCurrentAuctionId() > auctionId,
            'Auction: Auction is active'
        );

        /** Calculate payout for bidder */
        uint256 payout = _calculatePayout(auctionId, eth);
        uint256 uniswapPayoutWithPercent =
            _calculatePayoutWithUniswap(auctionId, eth, payout);

        /** If auction is undersold, send overage to weekly auction */
        if (payout > uniswapPayoutWithPercent) {
            uint256 nextWeeklyAuction = calculateNearestWeeklyAuction();

            reservesOf[nextWeeklyAuction].token = reservesOf[nextWeeklyAuction]
                .token
                .add(payout.sub(uniswapPayoutWithPercent));

            payout = uniswapPayoutWithPercent;
        }

        /** Burn tokens and then call external stake on staking contract */
        IToken(addresses.mainToken).burn(address(this), payout);

        if (auctionId <= 202) {
            /** If referrer is empty simple task */
            if (address(ref) != address(0)) {
                (uint256 toRefMintAmount, uint256 toUserMintAmount) =
                    _calculateRefAndUserAmountsToMint(payout);

                /** Add referral % to payout */
                payout = payout.add(toUserMintAmount);
                payout = payout.add(payout.div(10));

                /** We do not want to mint if the referral address is the dEaD address */
                if (
                    address(ref) !=
                    address(0x000000000000000000000000000000000000dEaD)
                ) {
                    IStaking(addresses.staking).externalStake(
                        toRefMintAmount,
                        14,
                        ref
                    );
                }
            }
        } else if (auctionId <= 261) {
            uint256 oldPayout = payout;
            //add bonus percentage based on years stake length
            if (stakeDays >= 350) {
                payout = payout.add(
                    payout.mul(stakeDays.div(350).add(5)).div(100)
                ); // multiply by percent divide by 100
            }

            //add 10% payout bonus if auction mode is regular
            uint8 auctionMode = auctions[auctionId.mod(7)].mode;

            if (auctionMode == 0) {
                uint256 payoutBonus = oldPayout.div(10);
                payout = payout.add(payoutBonus);
            }
        } else {
            if (stakeDays >= 350) {
                payout = payout.add(
                    payout.mul(stakeDays.div(350).add(5)).div(100)
                ); // multiply by percent divide by 100
            }
        }

        /** Call external stake for referrer and bidder */
        IStaking(addresses.staking).externalStake(
            payout,
            stakeDays,
            _msgSender()
        );

        emit Withdraval(msg.sender, payout, auctionId, now, stakeDays);
    }

    /** External Contract Caller functions 
        @param amount {uint256} - amount to add to next dailyAuction
    */
    function callIncomeDailyTokensTrigger(uint256 amount)
        external
        override
        onlyCaller
    {
        // Adds a specified amount of axion to tomorrows auction
        uint256 currentAuctionId = getCurrentAuctionId();
        uint256 nextAuctionId = currentAuctionId + 1;

        reservesOf[nextAuctionId].token = reservesOf[nextAuctionId].token.add(
            amount
        );
    }

    /** Add Reserves to specified Auction
        @param daysInFuture {uint256} - CurrentAuctionId + daysInFuture to send Axion to
        @param amount {uint256} - Amount of axion to add to auction
     */
    function addReservesToAuction(uint256 daysInFuture, uint256 amount)
        external
        override
        onlyCaller
        returns (uint256)
    {
        // Adds a specified amount of axion to a future auction
        require(
            daysInFuture <= 365,
            'AUCTION: Days in future can not be greater then 365'
        );

        uint256 currentAuctionId = getCurrentAuctionId();
        uint256 auctionId = currentAuctionId + daysInFuture;

        reservesOf[auctionId].token = reservesOf[auctionId].token.add(amount);

        return auctionId;
    }

    /** Add reserves to next weekly auction
        @param amount {uint256} - Amount of axion to add to auction
     */
    function callIncomeWeeklyTokensTrigger(uint256 amount)
        external
        override
        onlyCaller
    {
        // Adds a specified amount of axion to the next nearest weekly auction
        uint256 nearestWeeklyAuction = calculateNearestWeeklyAuction();

        reservesOf[nearestWeeklyAuction].token = reservesOf[
            nearestWeeklyAuction
        ]
            .token
            .add(amount);
    }

    /** Calculate functions */
    function calculateNearestWeeklyAuction() public view returns (uint256) {
        uint256 currentAuctionId = getCurrentAuctionId();
        return currentAuctionId.add(uint256(7).sub(currentAuctionId.mod(7)));
    }

    /** Get current day of week
     * EX: friday = 0, saturday = 1, sunday = 2 etc...
     */
    function getCurrentDay() internal view returns (uint256) {
        uint256 currentAuctionId = getCurrentAuctionId();
        return currentAuctionId.mod(7);
    }

    function getCurrentAuctionId() public view returns (uint256) {
        return now.sub(start).div(stepTimestamp);
    }

    function calculateStepsFromStart() public view returns (uint256) {
        return now.sub(start).div(stepTimestamp);
    }

    /** Determine payout and overage
        @param auctionId {uint256} - Auction id to calculate price from
        @param amount {uint256} - Amount to use to determine overage
        @param payout {uint256} - payout
     */
    function _calculatePayoutWithUniswap(
        uint256 auctionId,
        uint256 amount,
        uint256 payout
    ) internal view returns (uint256) {
        // Get payout for user
        uint256 uniswapPayout =
            reservesOf[auctionId].uniswapMiddlePrice.mul(amount).div(1e18);

        // Get payout with percentage based on discount, premium
        uint256 uniswapPayoutWithPercent =
            uniswapPayout
                .add(uniswapPayout.mul(options.discountPercent).div(100))
                .sub(uniswapPayout.mul(options.premiumPercent).div(100));

        if (payout > uniswapPayoutWithPercent) {
            return uniswapPayoutWithPercent;
        } else {
            return payout;
        }
    }

    /** Determine payout based on amount of token and ethereum
        @param auctionId {uint256} - auction to determine payout of
        @param amount {uint256} - amount of axion
     */
    function _calculatePayout(uint256 auctionId, uint256 amount)
        internal
        view
        returns (uint256)
    {
        return
            amount.mul(reservesOf[auctionId].token).div(
                reservesOf[auctionId].eth
            );
    }

    /** Get Percentages for recipient and uniswap for ethereum bid Unnecessary function */
    function _calculateRecipientAndUniswapAmountsToSend()
        private
        returns (uint256, uint256)
    {
        uint256 toRecipient = msg.value.mul(20).div(100);
        uint256 toUniswap = msg.value.sub(toRecipient);

        return (toRecipient, toUniswap);
    }

    function _calculateRecipientAndUniswapAmountsToSendVCA()
        private
        returns (uint256, uint256)
    {
        uint256 toRecipient = msg.value.mul(15).div(100);
        uint256 toUniswap = msg.value.sub(toRecipient);

        return (toRecipient, toUniswap);
    }

    /** Determine amount of axion to mint for referrer based on amount
        @param amount {uint256} - amount of axion

        @return (uint256, uint256)
     */
    function _calculateRefAndUserAmountsToMint(uint256 amount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 toRefMintAmount = amount.mul(options.referrerPercent).div(100);
        uint256 toUserMintAmount = amount.mul(options.referredPercent).div(100);

        return (toRefMintAmount, toUserMintAmount);
    }

    /** Save auction data
        Determines if auction is over. If auction is over set lastAuctionId to currentAuctionId
    */
    function _saveAuctionData() internal {
        uint256 currentAuctionId = getCurrentAuctionId();
        AuctionReserves memory reserves = reservesOf[lastAuctionEventId];

        if (lastAuctionEventId < currentAuctionId) {
            emit AuctionIsOver(
                reserves.eth,
                reserves.token,
                lastAuctionEventId
            );
            lastAuctionEventId = currentAuctionId;
        }
    }

    function initialize(address _manager, address _migrator)
        public
        initializer
    {
        _setupRole(MANAGER_ROLE, _manager);
        _setupRole(MIGRATOR_ROLE, _migrator);
        init_ = false;
    }

    /** Public Setter Functions */
    function setReferrerPercentage(uint256 percent) external onlyManager {
        options.referrerPercent = percent;
    }

    function setReferredPercentage(uint256 percent) external onlyManager {
        options.referredPercent = percent;
    }

    function setReferralsOn(bool _referralsOn) external onlyManager {
        options.referralsOn = _referralsOn;
    }

    function setAutoStakeDays(uint256 _autoStakeDays) external onlyManager {
        options.autoStakeDays = _autoStakeDays;
    }

    function setVentureAutoStakeDays(uint8 _autoStakeDays)
        external
        onlyManager
    {
        ventureAutoStakeDays = _autoStakeDays;
    }

    function setDiscountPercent(uint256 percent) external onlyManager {
        options.discountPercent = percent;
    }

    function setPremiumPercent(uint256 percent) external onlyManager {
        options.premiumPercent = percent;
    }

    function setMiddlePriceDays(uint256 _middleDays) external onlyManager {
        middlePriceDays = _middleDays;
    }

    function setRecipient(address payable newRecipient) external onlyManager {
        addresses.recipient = newRecipient;
    }

    /** Roles management - only for multi sig address */
    function setupRole(bytes32 role, address account) external onlyManager {
        _setupRole(role, account);
    }

    /** VCA Setters */
    /**
        @param _day {uint8} 0 - 6 value. 0 represents Saturday, 6 Represents Friday
        @param _mode {uint8} 0 or 1. 1 VCA, 0 Normal
     */
    function setAuctionMode(uint8 _day, uint8 _mode) external onlyManager {
        auctions[_day].mode = _mode;
    }

    /**
        @param day {uint8} 0 - 6 value. 0 represents Saturday, 6 Represents Friday
        @param coins {address[]} - Addresses to buy from uniswap
        @param percentages {uint8[]} - % of coin to buy, must add up to 100%
     */
    function setTokensOfDay(
        uint8 day,
        address[] calldata coins,
        uint8[] calldata percentages
    ) external onlyManager {
        AuctionData storage auction = auctions[day];

        auction.mode = 1;
        delete auction.tokens;

        uint8 percent = 0;
        for (uint8 i; i < coins.length; i++) {
            auction.tokens.push(VentureToken(coins[i], percentages[i]));
            percent = percentages[i] + percent;
            IStaking(addresses.staking).addDivToken(coins[i]);
        }

        require(
            percent == 100,
            'AUCTION: Percentage for venture day must equal 100'
        );
    }

    /**
        @param coins {address[]} - Addresses to buy from uniswap
        @param percentages {uint8[]} - % of coin to buy, must add up to 100%
     */
    function setTokensOfForAllDays(
        address[] calldata coins,
        uint8[] calldata percentages
    ) external onlyManager {
        for (uint8 j = 0; j < 7; j++) {
            AuctionData storage auction = auctions[j];

            auction.mode = 1;
            delete auction.tokens;

            uint8 percent = 0;
            for (uint8 i; i < coins.length; i++) {
                auction.tokens.push(VentureToken(coins[i], percentages[i]));
                percent = percentages[i] + percent;
                IStaking(addresses.staking).addDivToken(coins[i]);
            }

            require(
                percent == 100,
                'AUCTION: Percentage for venture day must equal 100'
            );
        }
    }

    /** Getter functions */
    function auctionsOf_(address account)
        external
        view
        returns (uint256[] memory)
    {
        return auctionsOf[account];
    }

    function getAuctionModes() external view returns (uint8[7] memory) {
        uint8[7] memory auctionModes;

        for (uint8 i; i < auctions.length; i++) {
            auctionModes[i] = auctions[i].mode;
        }

        return auctionModes;
    }

    function getTokensOfDay(uint8 _day)
        external
        view
        returns (address[] memory, uint256[] memory)
    {
        VentureToken[] memory ventureTokens = auctions[_day].tokens;

        address[] memory tokens = new address[](ventureTokens.length);
        uint256[] memory percentages = new uint256[](ventureTokens.length);

        for (uint8 i; i < ventureTokens.length; i++) {
            tokens[i] = ventureTokens[i].coin;
            percentages[i] = ventureTokens[i].percentage;
        }

        return (tokens, percentages);
    }

    function getVentureAutoStakeDays() external view returns (uint8) {
        return ventureAutoStakeDays;
    }
}

File 2 of 13 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/EnumerableSetUpgradeable.sol";
import "../utils/AddressUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../proxy/Initializable.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable {
    function __AccessControl_init() internal initializer {
        __Context_init_unchained();
        __AccessControl_init_unchained();
    }

    function __AccessControl_init_unchained() internal initializer {
    }
    using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
    using AddressUpgradeable for address;

    struct RoleData {
        EnumerableSetUpgradeable.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
    uint256[49] private __gap;
}

File 3 of 13 : SafeMathUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathUpgradeable {
    /**
     * @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) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 4 of 13 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 5 of 13 : IToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IToken {
    function mint(address to, uint256 amount) external;

    function burn(address from, uint256 amount) external;
}

File 6 of 13 : IAuction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IAuction {
    function callIncomeDailyTokensTrigger(uint256 amount) external;

    function callIncomeWeeklyTokensTrigger(uint256 amount) external;

    function addReservesToAuction(uint256 daysInFuture, uint256 amount) external returns(uint256);
}

File 7 of 13 : IStaking.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IStaking {
    function externalStake(
        uint256 amount,
        uint256 stakingDays,
        address staker
    ) external;

    function updateTokenPricePerShare(
        address payable bidderAddress,
        address payable originAddress,
        address tokenAddress,
        uint256 amountBought
    ) external payable;

    function addDivToken(address tokenAddress) external;
}

File 8 of 13 : IAuctionV1.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IAuctionV1 {
    function auctionsOf_(address) external view returns (uint256[] memory);

    function auctionBetOf(uint256, address)
        external
        view
        returns (uint256, address);
}

File 9 of 13 : EnumerableSetUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSetUpgradeable {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 10 of 13 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";

/*
 * @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 GSN 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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
    uint256[50] private __gap;
}

File 12 of 13 : Initializable.sol
// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;

import "../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 0
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"eth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"}],"name":"AuctionIsOver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethBid","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"coins","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amountBought","type":"uint256[]"}],"name":"VentureBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeDays","type":"uint256"}],"name":"Withdraval","type":"event"},{"inputs":[],"name":"CALLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIGRATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"daysInFuture","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addReservesToAuction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addresses","outputs":[{"internalType":"address","name":"mainToken","type":"address"},{"internalType":"address","name":"staking","type":"address"},{"internalType":"address payable","name":"uniswap","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"auctionBidOf","outputs":[{"internalType":"uint256","name":"eth","type":"uint256"},{"internalType":"address","name":"ref","type":"address"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionV1","outputs":[{"internalType":"contract IAuctionV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"auctionsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"auctionsOf_","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"autoStakeDaysOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amountOutMin","type":"uint256[]"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"ref","type":"address"}],"name":"bid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"calculateNearestWeeklyAuction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calculateStepsFromStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"callIncomeDailyTokensTrigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"callIncomeWeeklyTokensTrigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"existAuctionsOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionModes","outputs":[{"internalType":"uint8[7]","name":"","type":"uint8[7]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentAuctionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_day","type":"uint8"}],"name":"getTokensOfDay","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVentureAutoStakeDays","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"init_","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"},{"internalType":"address","name":"_migrator","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastAuctionEventId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastAuctionEventIdV1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"middlePriceDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"options","outputs":[{"internalType":"uint256","name":"autoStakeDays","type":"uint256"},{"internalType":"uint256","name":"referrerPercent","type":"uint256"},{"internalType":"uint256","name":"referredPercent","type":"uint256"},{"internalType":"bool","name":"referralsOn","type":"bool"},{"internalType":"uint256","name":"discountPercent","type":"uint256"},{"internalType":"uint256","name":"premiumPercent","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservesOf","outputs":[{"internalType":"uint256","name":"eth","type":"uint256"},{"internalType":"uint256","name":"token","type":"uint256"},{"internalType":"uint256","name":"uniswapLastPrice","type":"uint256"},{"internalType":"uint256","name":"uniswapMiddlePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_day","type":"uint8"},{"internalType":"uint8","name":"_mode","type":"uint8"}],"name":"setAuctionMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_autoStakeDays","type":"uint256"}],"name":"setAutoStakeDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setDiscountPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_middleDays","type":"uint256"}],"name":"setMiddlePriceDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setPremiumPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRecipient","type":"address"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_referralsOn","type":"bool"}],"name":"setReferralsOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setReferredPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setReferrerPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"day","type":"uint8"},{"internalType":"address[]","name":"coins","type":"address[]"},{"internalType":"uint8[]","name":"percentages","type":"uint8[]"}],"name":"setTokensOfDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"coins","type":"address[]"},{"internalType":"uint8[]","name":"percentages","type":"uint8[]"}],"name":"setTokensOfForAllDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_autoStakeDays","type":"uint8"}],"name":"setVentureAutoStakeDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"setupRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stepTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionId","type":"uint256"},{"internalType":"uint256","name":"stakeDays","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionId","type":"uint256"},{"internalType":"uint256","name":"stakeDays","type":"uint256"}],"name":"withdrawV1","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506142d2806100206000396000f3fe60806040526004361061024f5760003560e01c80631069143a14610254578063124341891461029c578063154ec2db14610373578063157db3161461039d5780631bc699e5146103c45780632065074614610411578063248a9ca31461043e5780632b7d2559146104685780632bbecc07146104925780632f2ff15d146104bd57806336568abe146104f65780633bbed4a01461052f57806340af7ba514610562578063441a3e701461058c578063485cc955146105bc5780634b15bee6146105f75780634bc2e48d1461039d578063586f7c3a146106215780635ae6ea70146106365780636c82828e146106b95780636fae2e15146107845780637492ec6914610799578063774237fc146107e95780637a4317dd146107fe5780637a89fa701461082a5780637bd94dd21461085f5780637ed386d81461088f5780638501313f146108b95780639010d07c146108f257806390a590871461093e57806391d1485414610977578063982e52fb146109c45780639d8cd337146109d95780639e697991146109ee578063a122dfc514610a03578063a217fddf14610a64578063a2e6f9bf14610a79578063a2f96a0814610a8e578063b15c480414610ab8578063b3a6807c14610ae8578063be9a655514610afd578063c22fd76f14610b12578063c9690f7a14610b3c578063ca15c87314610bb9578063ccbbc9b314610be3578063cd7c141c14610c1c578063d547741f14610c46578063d82117a614610c7f578063da0321cd14610c94578063ebf5b06214610cdd578063ec87621c14610da3578063fa82ac7614610db8575b600080fd5b34801561026057600080fd5b50610269610df1565b604080519687526020870195909552858501939093529015156060850152608084015260a0830152519081900360c00190f35b3480156102a857600080fd5b50610371600480360360608110156102bf57600080fd5b60ff8235169190810190604081016020820135600160201b8111156102e357600080fd5b8201836020820111156102f557600080fd5b803590602001918460208302840111600160201b8311171561031657600080fd5b919390929091602081019035600160201b81111561033357600080fd5b82018360208201111561034557600080fd5b803590602001918460208302840111600160201b8311171561036657600080fd5b509092509050610e0c565b005b34801561037f57600080fd5b506103716004803603602081101561039657600080fd5b5035611087565b3480156103a957600080fd5b506103b26110f8565b60408051918252519081900360200190f35b3480156103d057600080fd5b506103d9611127565b604051808260e080838360005b838110156103fe5781810151838201526020016103e6565b5050505090500191505060405180910390f35b34801561041d57600080fd5b506103716004803603602081101561043457600080fd5b503560ff1661118a565b34801561044a57600080fd5b506103b26004803603602081101561046157600080fd5b503561120c565b34801561047457600080fd5b506103716004803603602081101561048b57600080fd5b5035611221565b34801561049e57600080fd5b506104a7611292565b6040805160ff9092168252519081900360200190f35b3480156104c957600080fd5b50610371600480360360408110156104e057600080fd5b50803590602001356001600160a01b031661129b565b34801561050257600080fd5b506103716004803603604081101561051957600080fd5b50803590602001356001600160a01b0316611302565b34801561053b57600080fd5b506103716004803603602081101561055257600080fd5b50356001600160a01b0316611363565b34801561056e57600080fd5b506103716004803603602081101561058557600080fd5b50356113f1565b34801561059857600080fd5b50610371600480360360408110156105af57600080fd5b5080359060200135611462565b3480156105c857600080fd5b50610371600480360360408110156105df57600080fd5b506001600160a01b038135811691602001351661165d565b34801561060357600080fd5b506103716004803603602081101561061a57600080fd5b5035611765565b34801561062d57600080fd5b506103b26117d6565b34801561064257600080fd5b506106696004803603602081101561065957600080fd5b50356001600160a01b031661181b565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106a557818101518382015260200161068d565b505050509050019250505060405180910390f35b3480156106c557600080fd5b50610371600480360360408110156106dc57600080fd5b810190602081018135600160201b8111156106f657600080fd5b82018360208201111561070857600080fd5b803590602001918460208302840111600160201b8311171561072957600080fd5b919390929091602081019035600160201b81111561074657600080fd5b82018360208201111561075857600080fd5b803590602001918460208302840111600160201b8311171561077957600080fd5b509092509050611887565b34801561079057600080fd5b506103b2611b14565b3480156107a557600080fd5b506107c3600480360360208110156107bc57600080fd5b5035611b39565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156107f557600080fd5b506103b2611b60565b34801561080a57600080fd5b506103716004803603602081101561082157600080fd5b50351515611b83565b34801561083657600080fd5b506103716004803603604081101561084d57600080fd5b5060ff81358116916020013516611c02565b34801561086b57600080fd5b506103716004803603604081101561088257600080fd5b5080359060200135611c99565b34801561089b57600080fd5b50610371600480360360208110156108b257600080fd5b5035611ff7565b3480156108c557600080fd5b506103b2600480360360408110156108dc57600080fd5b506001600160a01b038135169060200135612068565b3480156108fe57600080fd5b506109226004803603604081101561091557600080fd5b5080359060200135612096565b604080516001600160a01b039092168252519081900360200190f35b34801561094a57600080fd5b506103b26004803603604081101561096157600080fd5b50803590602001356001600160a01b03166120bd565b34801561098357600080fd5b506109b06004803603604081101561099a57600080fd5b50803590602001356001600160a01b03166120da565b604080519115158252519081900360200190f35b3480156109d057600080fd5b506109b06120f8565b3480156109e557600080fd5b506103b2612108565b3480156109fa57600080fd5b506103b261210e565b348015610a0f57600080fd5b50610a3c60048036036040811015610a2657600080fd5b50803590602001356001600160a01b0316612114565b604080519384526001600160a01b039092166020840152151582820152519081900360600190f35b348015610a7057600080fd5b506103b261214d565b348015610a8557600080fd5b506103b2612152565b348015610a9a57600080fd5b5061037160048036036020811015610ab157600080fd5b5035612158565b348015610ac457600080fd5b506103b260048036036040811015610adb57600080fd5b50803590602001356121c9565b348015610af457600080fd5b506109226122c5565b348015610b0957600080fd5b506103b26122d4565b348015610b1e57600080fd5b5061037160048036036020811015610b3557600080fd5b50356122da565b61037160048036036060811015610b5257600080fd5b810190602081018135600160201b811115610b6c57600080fd5b820183602082011115610b7e57600080fd5b803590602001918460208302840111600160201b83111715610b9f57600080fd5b9193509150803590602001356001600160a01b0316612391565b348015610bc557600080fd5b506103b260048036036020811015610bdc57600080fd5b5035612431565b348015610bef57600080fd5b506109b060048036036040811015610c0657600080fd5b50803590602001356001600160a01b0316612448565b348015610c2857600080fd5b5061037160048036036020811015610c3f57600080fd5b5035612468565b348015610c5257600080fd5b5061037160048036036040811015610c6957600080fd5b50803590602001356001600160a01b0316612518565b348015610c8b57600080fd5b506103b2612571565b348015610ca057600080fd5b50610ca9612577565b604080516001600160a01b039586168152938516602085015291841683830152909216606082015290519081900360800190f35b348015610ce957600080fd5b50610d0a60048036036020811015610d0057600080fd5b503560ff1661259b565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610d4e578181015183820152602001610d36565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610d8d578181015183820152602001610d75565b5050505090500194505050505060405180910390f35b348015610daf57600080fd5b506103b2612763565b348015610dc457600080fd5b5061037160048036036040811015610ddb57600080fd5b50803590602001356001600160a01b0316612787565b606d54606e54606f5460705460715460725460ff9092169186565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020610e3e90610e396127fd565b6120da565b610e7d576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6000607a8660ff1660078110610e8f57fe5b60020201805460ff191660019081178255909150610eb0908201600061401f565b6000805b60ff811686111561103b5782600101604051806040016040528089898560ff16818110610edd57fe5b905060200201356001600160a01b03166001600160a01b0316815260200187878560ff16818110610f0a57fe5b60ff60209182029390930135831690935250835460018101855560009485529382902083519401805493909201516001600160601b0316600160a01b026001600160a01b039485166001600160a01b0319909416939093179093169190911790558290869086908416818110610f7c57fe5b9050602002013560ff16019150607360010160009054906101000a90046001600160a01b03166001600160a01b0316630fe82a9c88888460ff16818110610fbf57fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b15801561101757600080fd5b505af115801561102b573d6000803e3d6000fd5b505060019092019150610eb49050565b508060ff1660641461107e5760405162461bcd60e51b81526004018080602001828103825260328152602001806141e96032913960400191505060405180910390fd5b50505050505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206110b490610e396127fd565b6110f3576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607155565b6000611121606c54611115606b544261280190919063ffffffff16565b9063ffffffff61285e16565b90505b90565b61112f614040565b611137614040565b60005b60078160ff16101561118457607a8160ff166007811061115657fe5b600202015460ff90811690839083166007811061116f57fe5b60ff909216602092909202015260010161113a565b50905090565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206111b790610e396127fd565b6111f6576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6088805460ff191660ff92909216919091179055565b60009081526033602052604090206002015490565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061124e90610e396127fd565b61128d576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b606e55565b60885460ff1690565b6000828152603360205260409020600201546112b990610e396127fd565b6112f45760405162461bcd60e51b815260040180806020018281038252602f8152602001806140c7602f913960400191505060405180910390fd5b6112fe82826128c2565b5050565b61130a6127fd565b6001600160a01b0316816001600160a01b0316146113595760405162461bcd60e51b815260040180806020018281038252602f81526020018061424e602f913960400191505060405180910390fd5b6112fe8282612931565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061139090610e396127fd565b6113cf576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607680546001600160a01b0319166001600160a01b0392909216919091179055565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061141e90610e396127fd565b61145d576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607255565b61146a6129a0565b611472612a50565b6000607a61148784600763ffffffff612a9316565b6007811061149157fe5b600202015460ff169050806114e657606d548210156114e15760405162461bcd60e51b81526004018080602001828103825260218152602001806141796021913960400191505060405180910390fd5b611536565b8060ff16600114156115365760885460ff168210156115365760405162461bcd60e51b81526004018080602001828103825260218152602001806141796021913960400191505060405180910390fd5b6115b3821115611589576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b6000838152606760205260408120816115a06127fd565b6001600160a01b0316815260208101919091526040016000208054909150158015906115d857506001810154600160a01b900460ff16155b611629576040805162461bcd60e51b815260206004820152601e60248201527f41756374696f6e3a205a65726f20626964206f722077697468647261776e0000604482015290519081900360640190fd5b60018101805460ff60a01b1916600160a01b17908190558154611657916001600160a01b0316908686612af5565b50505050565b600054610100900460ff16806116765750611676612ef4565b80611684575060005460ff16155b6116bf5760405162461bcd60e51b815260040180806020018281038252602e81526020018061419a602e913960400191505060405180910390fd5b600054610100900460ff161580156116ea576000805460ff1961ff0019909116610100171660011790555b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061171590846112f4565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902061174190836112f4565b6077805460ff60a01b191690558015611760576000805461ff00191690555b505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061179290610e396127fd565b6117d1576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607955565b6000806117e16110f8565b90506118156118086117fa83600763ffffffff612a9316565b60079063ffffffff61280116565b829063ffffffff612f0516565b91505090565b6001600160a01b03811660009081526066602090815260409182902080548351818402810184019094528084526060939283018282801561187b57602002820191906000526020600020905b815481526020019060010190808311611867575b50505050509050919050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206118b490610e396127fd565b6118f3576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b60005b60078160ff161015611b0d576000607a8260ff166007811061191457fe5b60020201805460ff191660019081178255909150611935908201600061401f565b6000805b60ff8116871115611ac0578260010160405180604001604052808a8a8560ff1681811061196257fe5b905060200201356001600160a01b03166001600160a01b0316815260200188888560ff1681811061198f57fe5b60ff60209182029390930135831690935250835460018101855560009485529382902083519401805493909201516001600160601b0316600160a01b026001600160a01b039485166001600160a01b0319909416939093179093169190911790558290879087908416818110611a0157fe5b9050602002013560ff16019150607360010160009054906101000a90046001600160a01b03166001600160a01b0316630fe82a9c89898460ff16818110611a4457fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015611a9c57600080fd5b505af1158015611ab0573d6000803e3d6000fd5b5050600190920191506119399050565b508060ff16606414611b035760405162461bcd60e51b81526004018080602001828103825260328152602001806141e96032913960400191505060405180910390fd5b50506001016118f6565b5050505050565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902081565b60656020526000908152604090208054600182015460028301546003909301549192909184565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611bb090610e396127fd565b611bef576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6070805460ff1916911515919091179055565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611c2f90610e396127fd565b611c6e576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b80607a8360ff1660078110611c7f57fe5b60020201805460ff191660ff929092169190911790555050565b611ca16129a0565b611ca9612a50565b606a54821115611cfe576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881a59602a1b604482015290519081900360640190fd5b606d54811015611d3f5760405162461bcd60e51b81526004018080602001828103825260218152602001806141796021913960400191505060405180910390fd5b6115b3811115611d92576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b600082815260676020526040812081611da96127fd565b6001600160a01b0316815260208101919091526040016000208054909150158015611de057506001810154600160a01b900460ff16155b611e2f576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881251602a1b604482015290519081900360640190fd5b60775460009081906001600160a01b0316635f9406b486611e4e6127fd565b6040518363ffffffff1660e01b815260040180838152602001826001600160a01b03166001600160a01b0316815260200192505050604080518083038186803b158015611e9a57600080fd5b505afa158015611eae573d6000803e3d6000fd5b505050506040513d6040811015611ec457600080fd5b508051602090910151909250905081611f0e5760405162461bcd60e51b81526004018080602001828103825260338152602001806140f66033913960400191505060405180910390fd5b611f1a81838787612af5565b604080516060810182528381526001600160a01b038316602080830191909152600182840152600088815260679091529182209091611f576127fd565b6001600160a01b0390811682526020808301939093526040918201600090812085518155938501516001909401805495909301511515600160a01b0260ff60a01b19949092166001600160a01b03199095169490941792909216919091179055606690611fc26127fd565b6001600160a01b0316815260208082019290925260400160009081208054600181018255908252919020019490945550505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061202490610e396127fd565b612063576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b606f55565b6066602052816000526040600020818154811061208157fe5b90600052602060002001600091509150505481565b60008281526033602052604081206120b4908363ffffffff612f5d16565b90505b92915050565b607860209081526000928352604080842090915290825290205481565b60008281526033602052604081206120b4908363ffffffff612f6916565b607754600160a01b900460ff1681565b60695481565b606a5481565b6067602090815260009283526040808420909152908252902080546001909101546001600160a01b03811690600160a01b900460ff1683565b600081565b606c5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061218590610e396127fd565b6121c4576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b606d55565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b0190206000906121f890610e396127fd565b612237576040805162461bcd60e51b815260206004820152601b6024820152600080516020614129833981519152604482015290519081900360640190fd5b61016d8311156122785760405162461bcd60e51b815260040180806020018281038252603381526020018061421b6033913960400191505060405180910390fd5b60006122826110f8565b848101600081815260656020526040902060010154919250906122ab908563ffffffff612f0516565b600082815260656020526040902060010155949350505050565b6077546001600160a01b031681565b606b5481565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902061230690610e396127fd565b612345576040805162461bcd60e51b815260206004820152601b6024820152600080516020614129833981519152604482015290519081900360640190fd5b600061234f6110f8565b60018082016000818152606560205260409020909101549192509061237a908463ffffffff612f0516565b600091825260656020526040909120600101555050565b600061239b612f7e565b90506000607a82600781106123ac57fe5b600202015460ff169050806123dd576123d8868660008181106123cb57fe5b9050602002013585612f9c565b612429565b8060ff16600114156124295761242986868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525088925086915061306a9050565b505050505050565b60008181526033602052604081206120b790613512565b606860209081526000928352604080842090915290825290205460ff1681565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902061249490610e396127fd565b6124d3576040805162461bcd60e51b815260206004820152601b6024820152600080516020614129833981519152604482015290519081900360640190fd5b60006124dd6117d6565b600081815260656020526040902060010154909150612502908363ffffffff612f0516565b6000918252606560205260409091206001015550565b60008281526033602052604090206002015461253690610e396127fd565b6113595760405162461bcd60e51b81526004018080602001828103825260308152602001806141496030913960400191505060405180910390fd5b60795481565b6073546074546075546076546001600160a01b039384169392831692918216911684565b6060806060607a8460ff16600781106125b057fe5b60020201600101805480602002602001604051908101604052809291908181526020016000905b8282101561262657600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b0316818301528252600190920191016125d7565b505050509050606081516001600160401b038111801561264557600080fd5b5060405190808252806020026020018201604052801561266f578160200160208202803683370190505b509050606082516001600160401b038111801561268b57600080fd5b506040519080825280602002602001820160405280156126b5578160200160208202803683370190505b50905060005b83518160ff16101561275757838160ff16815181106126d657fe5b602002602001015160000151838260ff16815181106126f157fe5b60200260200101906001600160a01b031690816001600160a01b031681525050838160ff168151811061272057fe5b6020026020010151602001516001600160601b0316828260ff168151811061274457fe5b60209081029190910101526001016126bb565b50909350915050915091565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206127b490610e396127fd565b6127f3576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6112fe82826112f4565b3390565b600082821115612858576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008082116128b1576040805162461bcd60e51b815260206004820152601a602482015279536166654d6174683a206469766973696f6e206279207a65726f60301b604482015290519081900360640190fd5b8183816128ba57fe5b049392505050565b60008281526033602052604090206128e0908263ffffffff61351d16565b156112fe576128ed6127fd565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260336020526040902061294f908263ffffffff61353216565b156112fe5761295c6127fd565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006129aa6110f8565b90506129b461405e565b60656000606954815260200190815260200160002060405180608001604052908160008201548152602001600182015481526020016002820154815260200160038201548152505090508160695410156112fe576069548151602080840151604080519384529183015280517fffb09ad5e94e90b2d6b7665b8971615b9cc37b1aa053b4e6d3bf02ffcda1449d9281900390910190a250606955565b6000612a5a6110f8565b9050612a64613547565b600082815260656020526040902060020155612a7e6137a5565b60009182526065602052604090912060030155565b6000808211612ae4576040805162461bcd60e51b8152602060048201526018602482015277536166654d6174683a206d6f64756c6f206279207a65726f60401b604482015290519081900360640190fd5b818381612aed57fe5b069392505050565b81612afe6110f8565b11612b4d576040805162461bcd60e51b815260206004820152601a60248201527941756374696f6e3a2041756374696f6e2069732061637469766560301b604482015290519081900360640190fd5b6000612b59838561385a565b90506000612b68848684613886565b905080821115612bc6576000612b7c6117d6565b9050612baf612b91848463ffffffff61280116565b6000838152606560205260409020600101549063ffffffff612f0516565b600091825260656020526040909120600101559050805b60735460408051632770a7eb60e21b81523060048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b158015612c1957600080fd5b505af1158015612c2d573d6000803e3d6000fd5b5050505060ca8411612d1d576001600160a01b03861615612d1857600080612c5484613928565b9092509050612c69848263ffffffff612f0516565b9350612c8c612c7f85600a63ffffffff61285e16565b859063ffffffff612f0516565b93506001600160a01b03881661dead14612d1557607454604080516303eb4ad560e31b815260048101859052600e60248201526001600160a01b038b8116604483015291519190921691631f5a56a891606480830192600092919082900301818387803b158015612cfc57600080fd5b505af1158015612d10573d6000803e3d6000fd5b505050505b50505b612e20565b6101058411612dd8578161015e8410612d7b57612d78612d6b6064611115612d5e6005612d528a61015e63ffffffff61285e16565b9063ffffffff612f0516565b879063ffffffff61397716565b849063ffffffff612f0516565b92505b6000607a612d9087600763ffffffff612a9316565b60078110612d9a57fe5b600202015460ff16905080612d15576000612dbc83600a63ffffffff61285e16565b9050612dce858263ffffffff612f0516565b9450505050612e20565b61015e8310612e2057612e1d612e106064611115612e036005612d528961015e63ffffffff61285e16565b869063ffffffff61397716565b839063ffffffff612f0516565b91505b6074546001600160a01b0316631f5a56a88385612e3b6127fd565b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b03166001600160a01b031681526020019350505050600060405180830381600087803b158015612e9157600080fd5b505af1158015612ea5573d6000803e3d6000fd5b50506040805185815242602082015280820187905290518793503392507f32951f3c79f640ca000d6b542b604bff927f40f08ad9a226a81a68e7281b39149181900360600190a3505050505050565b6000612eff306139d0565b15905090565b6000828201838110156120b4576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b60006120b483836139d6565b60006120b4836001600160a01b038416613a3a565b600080612f896110f8565b905061181581600763ffffffff612a9316565b612fa46129a0565b612fac612a50565b600080612fb7613a52565b6073549193509150612fd4906001600160a01b0316858386613a8b565b506000612fdf6110f8565b9050612fea81613d01565b6076546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015613024573d6000803e3d6000fd5b50604080513481524260208201528151839233927f4dcc013473324698bfbe263facec4ea4b1bc43624236542deabec62c2122b305929081900390910190a35050505050565b6130726129a0565b61307a612a50565b6000607a826007811061308957fe5b600202016001019050606081805490506001600160401b03811180156130ae57600080fd5b506040519080825280602002602001820160405280156130d8578160200160208202803683370190505b5082549091506060906001600160401b03811180156130f657600080fd5b50604051908082528060200260200182016040528015613120578160200160208202803683370190505b50905060008061312e613ef1565b909250905060005b855460ff821610156133e05760008061317f60646111158a8660ff168154811061315c57fe5b6000918252602090912001548790600160a01b90046001600160601b0316613977565b90506001600160a01b038016888460ff168154811061319a57fe5b6000918252602090912001546001600160a01b0316146132af576131fe888460ff16815481106131c657fe5b6000918252602090912001548c516001600160a01b03909116908d9060ff87169081106131ef57fe5b6020026020010151838d613a8b565b6074546076548a549294506001600160a01b0391821692632de73a6c92339216908c9060ff891690811061322e57fe5b6000918252602082200154604080516001600160e01b031960e088901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818387803b15801561329257600080fd5b505af11580156132a6573d6000803e3d6000fd5b50505050613363565b607454607654895492935083926001600160a01b0392831692632de73a6c9285923392909116908d9060ff8a169081106132e557fe5b6000918252602082200154604080516001600160e01b031960e089901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818588803b15801561334957600080fd5b505af115801561335d573d6000803e3d6000fd5b50505050505b878360ff168154811061337257fe5b60009182526020909120015487516001600160a01b0390911690889060ff861690811061339b57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505081868460ff16815181106133cb57fe5b60209081029190910101525050600101613136565b5060006133eb6110f8565b90506133f681613d01565b6076546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015613430573d6000803e3d6000fd5b5080336001600160a01b03167f61d9930fc02b9896dcb23a5292a08b6a2253708d670c77b334c2a63e9319d2ca34428989604051808581526020018481526020018060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156134b1578181015183820152602001613499565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156134f05781810151838201526020016134d8565b50505050905001965050505050505060405180910390a3505050505050505050565b60006120b782613f0b565b60006120b4836001600160a01b038416613f0f565b60006120b4836001600160a01b038416613f59565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b1580156135b157600080fd5b505afa1580156135c5573d6000803e3d6000fd5b505050506040513d60208110156135db57600080fd5b5051815182906000906135ea57fe5b6001600160a01b03928316602091820292909201015260735482519116908290600190811061361557fe5b6001600160a01b039283166020918202929092018101919091526075546040805163d06ca61f60e01b8152670de0b6b3a76400006004820181815260248301938452875160448401528751600097959095169563d06ca61f9592948994929390926064019185810191028083838c5b8381101561369c578181015183820152602001613684565b50505050905001935050505060006040518083038186803b1580156136c057600080fd5b505afa1580156136d4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156136fd57600080fd5b8101908080516040519392919084600160201b82111561371c57600080fd5b90830190602082018581111561373157600080fd5b82518660208202830111600160201b8211171561374d57600080fd5b82525081516020918201928201910280838360005b8381101561377a578181015183820152602001613762565b5050505090500160405250505060018151811061379357fe5b60200260200101519050809250505090565b6000806137b06110f8565b9050806000805b60795481146138325760008381526065602052604090206002015415613810576000838152606560205260409020600201546137fa90839063ffffffff612f0516565b915061380d81600163ffffffff612f0516565b90505b8261381a57613832565b61382b83600163ffffffff61280116565b92506137b7565b8161384a5761383f613547565b945050505050611124565b61383f828263ffffffff61285e16565b600082815260656020526040812080546001909101546120b4919061111590859063ffffffff61397716565b60008381526065602052604081206003015481906138b890670de0b6b3a764000090611115908763ffffffff61397716565b905060006139086138dc6064611115606d600501548661397790919063ffffffff16565b6138fc612c7f6064611115606d600401548861397790919063ffffffff16565b9063ffffffff61280116565b90508084111561391b5791506139219050565b83925050505b9392505050565b600080600061394a6064611115606d600101548761397790919063ffffffff16565b9050600061396b6064611115606d600201548861397790919063ffffffff16565b91935090915050915091565b600082613986575060006120b7565b8282028284828161399357fe5b04146120b45760405162461bcd60e51b81526004018080602001828103825260218152602001806141c86021913960400191505060405180910390fd5b3b151590565b81546000908210613a185760405162461bcd60e51b81526004018080602001828103825260228152602001806140a56022913960400191505060405180910390fd5b826000018281548110613a2757fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60008080613a6c606461111534601463ffffffff61397716565b90506000613a80348363ffffffff61280116565b919350909150509091565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b158015613af557600080fd5b505afa158015613b09573d6000803e3d6000fd5b505050506040513d6020811015613b1f57600080fd5b505181518290600090613b2e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508581600181518110613b5c57fe5b6001600160a01b03928316602091820292909201810191909152607554607454604051637ff36ab560e01b8152600481018a815291851660448201819052606482018990526080602483019081528751608484015287519490961695637ff36ab5958b958d958a958d949193919260a490910191878101910280838360005b83811015613bf3578181015183820152602001613bdb565b50505050905001955050505050506000604051808303818588803b158015613c1a57600080fd5b505af1158015613c2e573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526020811015613c5857600080fd5b8101908080516040519392919084600160201b821115613c7757600080fd5b908301906020820185811115613c8c57600080fd5b82518660208202830111600160201b82111715613ca857600080fd5b82525081516020918201928201910280838360005b83811015613cd5578181015183820152602001613cbd565b50505050905001604052505050600181518110613cee57fe5b6020026020010151915050949350505050565b6000818152606760205260408120613d4491349190613d1e6127fd565b6001600160a01b031681526020810191909152604001600020549063ffffffff612f0516565b600082815260676020526040812090613d5b6127fd565b6001600160a01b0316815260208082019290925260409081016000908120939093558383526068909152812090613d906127fd565b6001600160a01b0316815260208101919091526040016000205460ff16613e2b5760666000613dbd6127fd565b6001600160a01b031681526020808201929092526040908101600090812080546001818101835591835284832001859055848252606890935290812090613e026127fd565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b600081815260656020526040902054613e4a903463ffffffff612f0516565b600082815260656020526040812082815560030154607254670de0b6b3a7640000919093020491613e8d906138dc9060649061111590869063ffffffff61397716565b600084815260656020526040902060010154909150811115611760576040805162461bcd60e51b815260206004820152601860248201527741756374696f6e207265616368656420636170616369747960401b604482015290519081900360640190fd5b60008080613a6c606461111534600f63ffffffff61397716565b5490565b6000613f1b8383613a3a565b613f51575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556120b7565b5060006120b7565b600081815260018301602052604081205480156140155783546000198083019190810190600090879083908110613f8c57fe5b9060005260206000200154905080876000018481548110613fa957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613fd957fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506120b7565b60009150506120b7565b508054600082559060005260206000209081019061403d9190614086565b50565b6040518060e001604052806007906020820280368337509192915050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b61112491905b808211156140a0576000815560010161408c565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7441756374696f6e3a205a65726f2062616c616e636520696e2061756374696f6e2f696e76616c69642061756374696f6e20494443616c6c6572206973206e6f7420612063616c6c657220726f6c650000000000416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6541756374696f6e3a207374616b6544617973203c206d696e696d756d2064617973496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7741554354494f4e3a2050657263656e7461676520666f722076656e7475726520646179206d75737420657175616c2031303041554354494f4e3a204461797320696e206675747572652063616e206e6f742062652067726561746572207468656e20333635416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6643616c6c6572206973206e6f742061206d616e6167657220726f6c6500000000a2646970667358221220c3d36f6c37814e1e1cef8953d39ff049b84bd623242b7460b3c88009043955fd64736f6c63430006080033

Deployed Bytecode

0x60806040526004361061024f5760003560e01c80631069143a14610254578063124341891461029c578063154ec2db14610373578063157db3161461039d5780631bc699e5146103c45780632065074614610411578063248a9ca31461043e5780632b7d2559146104685780632bbecc07146104925780632f2ff15d146104bd57806336568abe146104f65780633bbed4a01461052f57806340af7ba514610562578063441a3e701461058c578063485cc955146105bc5780634b15bee6146105f75780634bc2e48d1461039d578063586f7c3a146106215780635ae6ea70146106365780636c82828e146106b95780636fae2e15146107845780637492ec6914610799578063774237fc146107e95780637a4317dd146107fe5780637a89fa701461082a5780637bd94dd21461085f5780637ed386d81461088f5780638501313f146108b95780639010d07c146108f257806390a590871461093e57806391d1485414610977578063982e52fb146109c45780639d8cd337146109d95780639e697991146109ee578063a122dfc514610a03578063a217fddf14610a64578063a2e6f9bf14610a79578063a2f96a0814610a8e578063b15c480414610ab8578063b3a6807c14610ae8578063be9a655514610afd578063c22fd76f14610b12578063c9690f7a14610b3c578063ca15c87314610bb9578063ccbbc9b314610be3578063cd7c141c14610c1c578063d547741f14610c46578063d82117a614610c7f578063da0321cd14610c94578063ebf5b06214610cdd578063ec87621c14610da3578063fa82ac7614610db8575b600080fd5b34801561026057600080fd5b50610269610df1565b604080519687526020870195909552858501939093529015156060850152608084015260a0830152519081900360c00190f35b3480156102a857600080fd5b50610371600480360360608110156102bf57600080fd5b60ff8235169190810190604081016020820135600160201b8111156102e357600080fd5b8201836020820111156102f557600080fd5b803590602001918460208302840111600160201b8311171561031657600080fd5b919390929091602081019035600160201b81111561033357600080fd5b82018360208201111561034557600080fd5b803590602001918460208302840111600160201b8311171561036657600080fd5b509092509050610e0c565b005b34801561037f57600080fd5b506103716004803603602081101561039657600080fd5b5035611087565b3480156103a957600080fd5b506103b26110f8565b60408051918252519081900360200190f35b3480156103d057600080fd5b506103d9611127565b604051808260e080838360005b838110156103fe5781810151838201526020016103e6565b5050505090500191505060405180910390f35b34801561041d57600080fd5b506103716004803603602081101561043457600080fd5b503560ff1661118a565b34801561044a57600080fd5b506103b26004803603602081101561046157600080fd5b503561120c565b34801561047457600080fd5b506103716004803603602081101561048b57600080fd5b5035611221565b34801561049e57600080fd5b506104a7611292565b6040805160ff9092168252519081900360200190f35b3480156104c957600080fd5b50610371600480360360408110156104e057600080fd5b50803590602001356001600160a01b031661129b565b34801561050257600080fd5b506103716004803603604081101561051957600080fd5b50803590602001356001600160a01b0316611302565b34801561053b57600080fd5b506103716004803603602081101561055257600080fd5b50356001600160a01b0316611363565b34801561056e57600080fd5b506103716004803603602081101561058557600080fd5b50356113f1565b34801561059857600080fd5b50610371600480360360408110156105af57600080fd5b5080359060200135611462565b3480156105c857600080fd5b50610371600480360360408110156105df57600080fd5b506001600160a01b038135811691602001351661165d565b34801561060357600080fd5b506103716004803603602081101561061a57600080fd5b5035611765565b34801561062d57600080fd5b506103b26117d6565b34801561064257600080fd5b506106696004803603602081101561065957600080fd5b50356001600160a01b031661181b565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106a557818101518382015260200161068d565b505050509050019250505060405180910390f35b3480156106c557600080fd5b50610371600480360360408110156106dc57600080fd5b810190602081018135600160201b8111156106f657600080fd5b82018360208201111561070857600080fd5b803590602001918460208302840111600160201b8311171561072957600080fd5b919390929091602081019035600160201b81111561074657600080fd5b82018360208201111561075857600080fd5b803590602001918460208302840111600160201b8311171561077957600080fd5b509092509050611887565b34801561079057600080fd5b506103b2611b14565b3480156107a557600080fd5b506107c3600480360360208110156107bc57600080fd5b5035611b39565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156107f557600080fd5b506103b2611b60565b34801561080a57600080fd5b506103716004803603602081101561082157600080fd5b50351515611b83565b34801561083657600080fd5b506103716004803603604081101561084d57600080fd5b5060ff81358116916020013516611c02565b34801561086b57600080fd5b506103716004803603604081101561088257600080fd5b5080359060200135611c99565b34801561089b57600080fd5b50610371600480360360208110156108b257600080fd5b5035611ff7565b3480156108c557600080fd5b506103b2600480360360408110156108dc57600080fd5b506001600160a01b038135169060200135612068565b3480156108fe57600080fd5b506109226004803603604081101561091557600080fd5b5080359060200135612096565b604080516001600160a01b039092168252519081900360200190f35b34801561094a57600080fd5b506103b26004803603604081101561096157600080fd5b50803590602001356001600160a01b03166120bd565b34801561098357600080fd5b506109b06004803603604081101561099a57600080fd5b50803590602001356001600160a01b03166120da565b604080519115158252519081900360200190f35b3480156109d057600080fd5b506109b06120f8565b3480156109e557600080fd5b506103b2612108565b3480156109fa57600080fd5b506103b261210e565b348015610a0f57600080fd5b50610a3c60048036036040811015610a2657600080fd5b50803590602001356001600160a01b0316612114565b604080519384526001600160a01b039092166020840152151582820152519081900360600190f35b348015610a7057600080fd5b506103b261214d565b348015610a8557600080fd5b506103b2612152565b348015610a9a57600080fd5b5061037160048036036020811015610ab157600080fd5b5035612158565b348015610ac457600080fd5b506103b260048036036040811015610adb57600080fd5b50803590602001356121c9565b348015610af457600080fd5b506109226122c5565b348015610b0957600080fd5b506103b26122d4565b348015610b1e57600080fd5b5061037160048036036020811015610b3557600080fd5b50356122da565b61037160048036036060811015610b5257600080fd5b810190602081018135600160201b811115610b6c57600080fd5b820183602082011115610b7e57600080fd5b803590602001918460208302840111600160201b83111715610b9f57600080fd5b9193509150803590602001356001600160a01b0316612391565b348015610bc557600080fd5b506103b260048036036020811015610bdc57600080fd5b5035612431565b348015610bef57600080fd5b506109b060048036036040811015610c0657600080fd5b50803590602001356001600160a01b0316612448565b348015610c2857600080fd5b5061037160048036036020811015610c3f57600080fd5b5035612468565b348015610c5257600080fd5b5061037160048036036040811015610c6957600080fd5b50803590602001356001600160a01b0316612518565b348015610c8b57600080fd5b506103b2612571565b348015610ca057600080fd5b50610ca9612577565b604080516001600160a01b039586168152938516602085015291841683830152909216606082015290519081900360800190f35b348015610ce957600080fd5b50610d0a60048036036020811015610d0057600080fd5b503560ff1661259b565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610d4e578181015183820152602001610d36565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610d8d578181015183820152602001610d75565b5050505090500194505050505060405180910390f35b348015610daf57600080fd5b506103b2612763565b348015610dc457600080fd5b5061037160048036036040811015610ddb57600080fd5b50803590602001356001600160a01b0316612787565b606d54606e54606f5460705460715460725460ff9092169186565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020610e3e90610e396127fd565b6120da565b610e7d576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6000607a8660ff1660078110610e8f57fe5b60020201805460ff191660019081178255909150610eb0908201600061401f565b6000805b60ff811686111561103b5782600101604051806040016040528089898560ff16818110610edd57fe5b905060200201356001600160a01b03166001600160a01b0316815260200187878560ff16818110610f0a57fe5b60ff60209182029390930135831690935250835460018101855560009485529382902083519401805493909201516001600160601b0316600160a01b026001600160a01b039485166001600160a01b0319909416939093179093169190911790558290869086908416818110610f7c57fe5b9050602002013560ff16019150607360010160009054906101000a90046001600160a01b03166001600160a01b0316630fe82a9c88888460ff16818110610fbf57fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b15801561101757600080fd5b505af115801561102b573d6000803e3d6000fd5b505060019092019150610eb49050565b508060ff1660641461107e5760405162461bcd60e51b81526004018080602001828103825260328152602001806141e96032913960400191505060405180910390fd5b50505050505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206110b490610e396127fd565b6110f3576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607155565b6000611121606c54611115606b544261280190919063ffffffff16565b9063ffffffff61285e16565b90505b90565b61112f614040565b611137614040565b60005b60078160ff16101561118457607a8160ff166007811061115657fe5b600202015460ff90811690839083166007811061116f57fe5b60ff909216602092909202015260010161113a565b50905090565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206111b790610e396127fd565b6111f6576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6088805460ff191660ff92909216919091179055565b60009081526033602052604090206002015490565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061124e90610e396127fd565b61128d576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b606e55565b60885460ff1690565b6000828152603360205260409020600201546112b990610e396127fd565b6112f45760405162461bcd60e51b815260040180806020018281038252602f8152602001806140c7602f913960400191505060405180910390fd5b6112fe82826128c2565b5050565b61130a6127fd565b6001600160a01b0316816001600160a01b0316146113595760405162461bcd60e51b815260040180806020018281038252602f81526020018061424e602f913960400191505060405180910390fd5b6112fe8282612931565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061139090610e396127fd565b6113cf576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607680546001600160a01b0319166001600160a01b0392909216919091179055565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061141e90610e396127fd565b61145d576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607255565b61146a6129a0565b611472612a50565b6000607a61148784600763ffffffff612a9316565b6007811061149157fe5b600202015460ff169050806114e657606d548210156114e15760405162461bcd60e51b81526004018080602001828103825260218152602001806141796021913960400191505060405180910390fd5b611536565b8060ff16600114156115365760885460ff168210156115365760405162461bcd60e51b81526004018080602001828103825260218152602001806141796021913960400191505060405180910390fd5b6115b3821115611589576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b6000838152606760205260408120816115a06127fd565b6001600160a01b0316815260208101919091526040016000208054909150158015906115d857506001810154600160a01b900460ff16155b611629576040805162461bcd60e51b815260206004820152601e60248201527f41756374696f6e3a205a65726f20626964206f722077697468647261776e0000604482015290519081900360640190fd5b60018101805460ff60a01b1916600160a01b17908190558154611657916001600160a01b0316908686612af5565b50505050565b600054610100900460ff16806116765750611676612ef4565b80611684575060005460ff16155b6116bf5760405162461bcd60e51b815260040180806020018281038252602e81526020018061419a602e913960400191505060405180910390fd5b600054610100900460ff161580156116ea576000805460ff1961ff0019909116610100171660011790555b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061171590846112f4565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902061174190836112f4565b6077805460ff60a01b191690558015611760576000805461ff00191690555b505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061179290610e396127fd565b6117d1576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b607955565b6000806117e16110f8565b90506118156118086117fa83600763ffffffff612a9316565b60079063ffffffff61280116565b829063ffffffff612f0516565b91505090565b6001600160a01b03811660009081526066602090815260409182902080548351818402810184019094528084526060939283018282801561187b57602002820191906000526020600020905b815481526020019060010190808311611867575b50505050509050919050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206118b490610e396127fd565b6118f3576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b60005b60078160ff161015611b0d576000607a8260ff166007811061191457fe5b60020201805460ff191660019081178255909150611935908201600061401f565b6000805b60ff8116871115611ac0578260010160405180604001604052808a8a8560ff1681811061196257fe5b905060200201356001600160a01b03166001600160a01b0316815260200188888560ff1681811061198f57fe5b60ff60209182029390930135831690935250835460018101855560009485529382902083519401805493909201516001600160601b0316600160a01b026001600160a01b039485166001600160a01b0319909416939093179093169190911790558290879087908416818110611a0157fe5b9050602002013560ff16019150607360010160009054906101000a90046001600160a01b03166001600160a01b0316630fe82a9c89898460ff16818110611a4457fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015611a9c57600080fd5b505af1158015611ab0573d6000803e3d6000fd5b5050600190920191506119399050565b508060ff16606414611b035760405162461bcd60e51b81526004018080602001828103825260328152602001806141e96032913960400191505060405180910390fd5b50506001016118f6565b5050505050565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902081565b60656020526000908152604090208054600182015460028301546003909301549192909184565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611bb090610e396127fd565b611bef576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6070805460ff1916911515919091179055565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611c2f90610e396127fd565b611c6e576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b80607a8360ff1660078110611c7f57fe5b60020201805460ff191660ff929092169190911790555050565b611ca16129a0565b611ca9612a50565b606a54821115611cfe576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881a59602a1b604482015290519081900360640190fd5b606d54811015611d3f5760405162461bcd60e51b81526004018080602001828103825260218152602001806141796021913960400191505060405180910390fd5b6115b3811115611d92576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b600082815260676020526040812081611da96127fd565b6001600160a01b0316815260208101919091526040016000208054909150158015611de057506001810154600160a01b900460ff16155b611e2f576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881251602a1b604482015290519081900360640190fd5b60775460009081906001600160a01b0316635f9406b486611e4e6127fd565b6040518363ffffffff1660e01b815260040180838152602001826001600160a01b03166001600160a01b0316815260200192505050604080518083038186803b158015611e9a57600080fd5b505afa158015611eae573d6000803e3d6000fd5b505050506040513d6040811015611ec457600080fd5b508051602090910151909250905081611f0e5760405162461bcd60e51b81526004018080602001828103825260338152602001806140f66033913960400191505060405180910390fd5b611f1a81838787612af5565b604080516060810182528381526001600160a01b038316602080830191909152600182840152600088815260679091529182209091611f576127fd565b6001600160a01b0390811682526020808301939093526040918201600090812085518155938501516001909401805495909301511515600160a01b0260ff60a01b19949092166001600160a01b03199095169490941792909216919091179055606690611fc26127fd565b6001600160a01b0316815260208082019290925260400160009081208054600181018255908252919020019490945550505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061202490610e396127fd565b612063576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b606f55565b6066602052816000526040600020818154811061208157fe5b90600052602060002001600091509150505481565b60008281526033602052604081206120b4908363ffffffff612f5d16565b90505b92915050565b607860209081526000928352604080842090915290825290205481565b60008281526033602052604081206120b4908363ffffffff612f6916565b607754600160a01b900460ff1681565b60695481565b606a5481565b6067602090815260009283526040808420909152908252902080546001909101546001600160a01b03811690600160a01b900460ff1683565b600081565b606c5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061218590610e396127fd565b6121c4576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b606d55565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b0190206000906121f890610e396127fd565b612237576040805162461bcd60e51b815260206004820152601b6024820152600080516020614129833981519152604482015290519081900360640190fd5b61016d8311156122785760405162461bcd60e51b815260040180806020018281038252603381526020018061421b6033913960400191505060405180910390fd5b60006122826110f8565b848101600081815260656020526040902060010154919250906122ab908563ffffffff612f0516565b600082815260656020526040902060010155949350505050565b6077546001600160a01b031681565b606b5481565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902061230690610e396127fd565b612345576040805162461bcd60e51b815260206004820152601b6024820152600080516020614129833981519152604482015290519081900360640190fd5b600061234f6110f8565b60018082016000818152606560205260409020909101549192509061237a908463ffffffff612f0516565b600091825260656020526040909120600101555050565b600061239b612f7e565b90506000607a82600781106123ac57fe5b600202015460ff169050806123dd576123d8868660008181106123cb57fe5b9050602002013585612f9c565b612429565b8060ff16600114156124295761242986868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525088925086915061306a9050565b505050505050565b60008181526033602052604081206120b790613512565b606860209081526000928352604080842090915290825290205460ff1681565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902061249490610e396127fd565b6124d3576040805162461bcd60e51b815260206004820152601b6024820152600080516020614129833981519152604482015290519081900360640190fd5b60006124dd6117d6565b600081815260656020526040902060010154909150612502908363ffffffff612f0516565b6000918252606560205260409091206001015550565b60008281526033602052604090206002015461253690610e396127fd565b6113595760405162461bcd60e51b81526004018080602001828103825260308152602001806141496030913960400191505060405180910390fd5b60795481565b6073546074546075546076546001600160a01b039384169392831692918216911684565b6060806060607a8460ff16600781106125b057fe5b60020201600101805480602002602001604051908101604052809291908181526020016000905b8282101561262657600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b0316818301528252600190920191016125d7565b505050509050606081516001600160401b038111801561264557600080fd5b5060405190808252806020026020018201604052801561266f578160200160208202803683370190505b509050606082516001600160401b038111801561268b57600080fd5b506040519080825280602002602001820160405280156126b5578160200160208202803683370190505b50905060005b83518160ff16101561275757838160ff16815181106126d657fe5b602002602001015160000151838260ff16815181106126f157fe5b60200260200101906001600160a01b031690816001600160a01b031681525050838160ff168151811061272057fe5b6020026020010151602001516001600160601b0316828260ff168151811061274457fe5b60209081029190910101526001016126bb565b50909350915050915091565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206127b490610e396127fd565b6127f3576040805162461bcd60e51b815260206004820152601c602482015260008051602061427d833981519152604482015290519081900360640190fd5b6112fe82826112f4565b3390565b600082821115612858576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008082116128b1576040805162461bcd60e51b815260206004820152601a602482015279536166654d6174683a206469766973696f6e206279207a65726f60301b604482015290519081900360640190fd5b8183816128ba57fe5b049392505050565b60008281526033602052604090206128e0908263ffffffff61351d16565b156112fe576128ed6127fd565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260336020526040902061294f908263ffffffff61353216565b156112fe5761295c6127fd565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006129aa6110f8565b90506129b461405e565b60656000606954815260200190815260200160002060405180608001604052908160008201548152602001600182015481526020016002820154815260200160038201548152505090508160695410156112fe576069548151602080840151604080519384529183015280517fffb09ad5e94e90b2d6b7665b8971615b9cc37b1aa053b4e6d3bf02ffcda1449d9281900390910190a250606955565b6000612a5a6110f8565b9050612a64613547565b600082815260656020526040902060020155612a7e6137a5565b60009182526065602052604090912060030155565b6000808211612ae4576040805162461bcd60e51b8152602060048201526018602482015277536166654d6174683a206d6f64756c6f206279207a65726f60401b604482015290519081900360640190fd5b818381612aed57fe5b069392505050565b81612afe6110f8565b11612b4d576040805162461bcd60e51b815260206004820152601a60248201527941756374696f6e3a2041756374696f6e2069732061637469766560301b604482015290519081900360640190fd5b6000612b59838561385a565b90506000612b68848684613886565b905080821115612bc6576000612b7c6117d6565b9050612baf612b91848463ffffffff61280116565b6000838152606560205260409020600101549063ffffffff612f0516565b600091825260656020526040909120600101559050805b60735460408051632770a7eb60e21b81523060048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b158015612c1957600080fd5b505af1158015612c2d573d6000803e3d6000fd5b5050505060ca8411612d1d576001600160a01b03861615612d1857600080612c5484613928565b9092509050612c69848263ffffffff612f0516565b9350612c8c612c7f85600a63ffffffff61285e16565b859063ffffffff612f0516565b93506001600160a01b03881661dead14612d1557607454604080516303eb4ad560e31b815260048101859052600e60248201526001600160a01b038b8116604483015291519190921691631f5a56a891606480830192600092919082900301818387803b158015612cfc57600080fd5b505af1158015612d10573d6000803e3d6000fd5b505050505b50505b612e20565b6101058411612dd8578161015e8410612d7b57612d78612d6b6064611115612d5e6005612d528a61015e63ffffffff61285e16565b9063ffffffff612f0516565b879063ffffffff61397716565b849063ffffffff612f0516565b92505b6000607a612d9087600763ffffffff612a9316565b60078110612d9a57fe5b600202015460ff16905080612d15576000612dbc83600a63ffffffff61285e16565b9050612dce858263ffffffff612f0516565b9450505050612e20565b61015e8310612e2057612e1d612e106064611115612e036005612d528961015e63ffffffff61285e16565b869063ffffffff61397716565b839063ffffffff612f0516565b91505b6074546001600160a01b0316631f5a56a88385612e3b6127fd565b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b03166001600160a01b031681526020019350505050600060405180830381600087803b158015612e9157600080fd5b505af1158015612ea5573d6000803e3d6000fd5b50506040805185815242602082015280820187905290518793503392507f32951f3c79f640ca000d6b542b604bff927f40f08ad9a226a81a68e7281b39149181900360600190a3505050505050565b6000612eff306139d0565b15905090565b6000828201838110156120b4576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b60006120b483836139d6565b60006120b4836001600160a01b038416613a3a565b600080612f896110f8565b905061181581600763ffffffff612a9316565b612fa46129a0565b612fac612a50565b600080612fb7613a52565b6073549193509150612fd4906001600160a01b0316858386613a8b565b506000612fdf6110f8565b9050612fea81613d01565b6076546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015613024573d6000803e3d6000fd5b50604080513481524260208201528151839233927f4dcc013473324698bfbe263facec4ea4b1bc43624236542deabec62c2122b305929081900390910190a35050505050565b6130726129a0565b61307a612a50565b6000607a826007811061308957fe5b600202016001019050606081805490506001600160401b03811180156130ae57600080fd5b506040519080825280602002602001820160405280156130d8578160200160208202803683370190505b5082549091506060906001600160401b03811180156130f657600080fd5b50604051908082528060200260200182016040528015613120578160200160208202803683370190505b50905060008061312e613ef1565b909250905060005b855460ff821610156133e05760008061317f60646111158a8660ff168154811061315c57fe5b6000918252602090912001548790600160a01b90046001600160601b0316613977565b90506001600160a01b038016888460ff168154811061319a57fe5b6000918252602090912001546001600160a01b0316146132af576131fe888460ff16815481106131c657fe5b6000918252602090912001548c516001600160a01b03909116908d9060ff87169081106131ef57fe5b6020026020010151838d613a8b565b6074546076548a549294506001600160a01b0391821692632de73a6c92339216908c9060ff891690811061322e57fe5b6000918252602082200154604080516001600160e01b031960e088901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818387803b15801561329257600080fd5b505af11580156132a6573d6000803e3d6000fd5b50505050613363565b607454607654895492935083926001600160a01b0392831692632de73a6c9285923392909116908d9060ff8a169081106132e557fe5b6000918252602082200154604080516001600160e01b031960e089901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818588803b15801561334957600080fd5b505af115801561335d573d6000803e3d6000fd5b50505050505b878360ff168154811061337257fe5b60009182526020909120015487516001600160a01b0390911690889060ff861690811061339b57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505081868460ff16815181106133cb57fe5b60209081029190910101525050600101613136565b5060006133eb6110f8565b90506133f681613d01565b6076546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015613430573d6000803e3d6000fd5b5080336001600160a01b03167f61d9930fc02b9896dcb23a5292a08b6a2253708d670c77b334c2a63e9319d2ca34428989604051808581526020018481526020018060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156134b1578181015183820152602001613499565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156134f05781810151838201526020016134d8565b50505050905001965050505050505060405180910390a3505050505050505050565b60006120b782613f0b565b60006120b4836001600160a01b038416613f0f565b60006120b4836001600160a01b038416613f59565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b1580156135b157600080fd5b505afa1580156135c5573d6000803e3d6000fd5b505050506040513d60208110156135db57600080fd5b5051815182906000906135ea57fe5b6001600160a01b03928316602091820292909201015260735482519116908290600190811061361557fe5b6001600160a01b039283166020918202929092018101919091526075546040805163d06ca61f60e01b8152670de0b6b3a76400006004820181815260248301938452875160448401528751600097959095169563d06ca61f9592948994929390926064019185810191028083838c5b8381101561369c578181015183820152602001613684565b50505050905001935050505060006040518083038186803b1580156136c057600080fd5b505afa1580156136d4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156136fd57600080fd5b8101908080516040519392919084600160201b82111561371c57600080fd5b90830190602082018581111561373157600080fd5b82518660208202830111600160201b8211171561374d57600080fd5b82525081516020918201928201910280838360005b8381101561377a578181015183820152602001613762565b5050505090500160405250505060018151811061379357fe5b60200260200101519050809250505090565b6000806137b06110f8565b9050806000805b60795481146138325760008381526065602052604090206002015415613810576000838152606560205260409020600201546137fa90839063ffffffff612f0516565b915061380d81600163ffffffff612f0516565b90505b8261381a57613832565b61382b83600163ffffffff61280116565b92506137b7565b8161384a5761383f613547565b945050505050611124565b61383f828263ffffffff61285e16565b600082815260656020526040812080546001909101546120b4919061111590859063ffffffff61397716565b60008381526065602052604081206003015481906138b890670de0b6b3a764000090611115908763ffffffff61397716565b905060006139086138dc6064611115606d600501548661397790919063ffffffff16565b6138fc612c7f6064611115606d600401548861397790919063ffffffff16565b9063ffffffff61280116565b90508084111561391b5791506139219050565b83925050505b9392505050565b600080600061394a6064611115606d600101548761397790919063ffffffff16565b9050600061396b6064611115606d600201548861397790919063ffffffff16565b91935090915050915091565b600082613986575060006120b7565b8282028284828161399357fe5b04146120b45760405162461bcd60e51b81526004018080602001828103825260218152602001806141c86021913960400191505060405180910390fd5b3b151590565b81546000908210613a185760405162461bcd60e51b81526004018080602001828103825260228152602001806140a56022913960400191505060405180910390fd5b826000018281548110613a2757fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60008080613a6c606461111534601463ffffffff61397716565b90506000613a80348363ffffffff61280116565b919350909150509091565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b158015613af557600080fd5b505afa158015613b09573d6000803e3d6000fd5b505050506040513d6020811015613b1f57600080fd5b505181518290600090613b2e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508581600181518110613b5c57fe5b6001600160a01b03928316602091820292909201810191909152607554607454604051637ff36ab560e01b8152600481018a815291851660448201819052606482018990526080602483019081528751608484015287519490961695637ff36ab5958b958d958a958d949193919260a490910191878101910280838360005b83811015613bf3578181015183820152602001613bdb565b50505050905001955050505050506000604051808303818588803b158015613c1a57600080fd5b505af1158015613c2e573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526020811015613c5857600080fd5b8101908080516040519392919084600160201b821115613c7757600080fd5b908301906020820185811115613c8c57600080fd5b82518660208202830111600160201b82111715613ca857600080fd5b82525081516020918201928201910280838360005b83811015613cd5578181015183820152602001613cbd565b50505050905001604052505050600181518110613cee57fe5b6020026020010151915050949350505050565b6000818152606760205260408120613d4491349190613d1e6127fd565b6001600160a01b031681526020810191909152604001600020549063ffffffff612f0516565b600082815260676020526040812090613d5b6127fd565b6001600160a01b0316815260208082019290925260409081016000908120939093558383526068909152812090613d906127fd565b6001600160a01b0316815260208101919091526040016000205460ff16613e2b5760666000613dbd6127fd565b6001600160a01b031681526020808201929092526040908101600090812080546001818101835591835284832001859055848252606890935290812090613e026127fd565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b600081815260656020526040902054613e4a903463ffffffff612f0516565b600082815260656020526040812082815560030154607254670de0b6b3a7640000919093020491613e8d906138dc9060649061111590869063ffffffff61397716565b600084815260656020526040902060010154909150811115611760576040805162461bcd60e51b815260206004820152601860248201527741756374696f6e207265616368656420636170616369747960401b604482015290519081900360640190fd5b60008080613a6c606461111534600f63ffffffff61397716565b5490565b6000613f1b8383613a3a565b613f51575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556120b7565b5060006120b7565b600081815260018301602052604081205480156140155783546000198083019190810190600090879083908110613f8c57fe5b9060005260206000200154905080876000018481548110613fa957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613fd957fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506120b7565b60009150506120b7565b508054600082559060005260206000209081019061403d9190614086565b50565b6040518060e001604052806007906020820280368337509192915050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b61112491905b808211156140a0576000815560010161408c565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7441756374696f6e3a205a65726f2062616c616e636520696e2061756374696f6e2f696e76616c69642061756374696f6e20494443616c6c6572206973206e6f7420612063616c6c657220726f6c650000000000416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6541756374696f6e3a207374616b6544617973203c206d696e696d756d2064617973496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7741554354494f4e3a2050657263656e7461676520666f722076656e7475726520646179206d75737420657175616c2031303041554354494f4e3a204461797320696e206675747572652063616e206e6f742062652067726561746572207468656e20333635416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6643616c6c6572206973206e6f742061206d616e6167657220726f6c6500000000a2646970667358221220c3d36f6c37814e1e1cef8953d39ff049b84bd623242b7460b3c88009043955fd64736f6c63430006080033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.