ETH Price: $2,619.23 (+0.99%)

Token

Dividends Network (DVN)
 

Overview

Max Total Supply

8,104.682074592396932498 DVN

Holders

96

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DivsNetwork

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-06
*/

pragma solidity ^0.4.21;


/*
******************** Dividends Network *********************
* ____ _____     _____ ____  _____ _   _ ____  ____  
*|  _ \_ _\ \   / /_ _|  _ \| ____| \ | |  _ \/ ___| 
*| | | | | \ \ / / | || | | |  _| |  \| | | | \___ \ 
*| |_| | |  \ V /  | || |_| | |___| |\  | |_| |___) |
*|____/___|  \_/  |___|____/|_____|_| \_|____/|____/ 
*                                                    
* _   _ _____ _______        _____  ____  _  __
*| \ | | ____|_   _\ \      / / _ \|  _ \| |/ /
*|  \| |  _|   | |  \ \ /\ / / | | | |_) | ' / 
*| |\  | |___  | |   \ V  V /| |_| |  _ <| . \ 
*|_| \_|_____| |_|    \_/\_/  \___/|_| \_\_|\_\
*
******************** Dividends Network *********************
*
*
* [x] 0% TRANSFER FEES
* [x] 20% DIVIDENDS AND MASTERNODES
* [x] 5% FEE ON EACH BUY AND SELL GO TO Dev Fund 
*     
* [x] Dividends Network Token can be used for future games
*
* Official Website: https://dividends.network
* Official Discord: https://discord.gg/PT66U8v
* Official Telegram: https://t.me/dividendsnetwork
* Buy Tokens at https://dividends.network/exchange
*/


/**
 * Definition of contract accepting Dividends Network tokens
 * DVN SMART Staking and other games will reuse this contract to support Dividends Network
 */
contract AcceptsDivsNetwork {
    DivsNetwork public tokenContract;

    function AcceptsDivsNetwork(address _tokenContract) public {
        tokenContract = DivsNetwork(_tokenContract);
    }

    modifier onlyTokenContract {
        require(msg.sender == address(tokenContract));
        _;
    }

    /**
    * @dev Standard ERC677 function that will handle incoming token transfers.
    *
    * @param _from  Token sender address.
    * @param _value Amount of tokens.
    * @param _data  Transaction metadata.
    */
    function tokenFallback(address _from, uint256 _value, bytes _data) external returns (bool);
}


contract DivsNetwork {
    /*=================================
    =            MODIFIERS            =
    =================================*/
    // only people with tokens
    modifier onlyBagholders() {
        require(myTokens() > 0);
        _;
    }

    // only people with profits
    modifier onlyStronghands() {
        require(myDividends(true) > 0);
        _;
    }

    //modifier notContract() {
      //require (msg.sender == tx.origin);
     // _;
    //}

    // administrators can:
    // -> change the name of the contract
    // -> change the name of the token
    // -> change the PoS difficulty (How many tokens it costs to hold a masternode, in case it gets crazy high later)
    // they CANNOT:
    // -> take funds
    // -> disable withdrawals
    // -> kill the contract
    // -> change the price of tokens
    modifier onlyAdministrator(){
        address _customerAddress = msg.sender;
        require(administrators[_customerAddress]);
        _;
    }
    
    uint ACTIVATION_TIME = 1535835600;


    // ensures that the first tokens in the contract will be equally distributed
    // meaning, no divine dump will be ever possible
    // result: healthy longevity.
    modifier antiEarlyWhale(uint256 _amountOfEthereum){
        address _customerAddress = msg.sender;
        
        if (now >= ACTIVATION_TIME) {
            onlyAmbassadors = false;
        }

        // are we still in the vulnerable phase?
        // if so, enact anti early whale protocol
        if( onlyAmbassadors && ((totalEthereumBalance() - _amountOfEthereum) <= ambassadorQuota_ )){
            require(
                // is the customer in the ambassador list?
                ambassadors_[_customerAddress] == true &&

                // does the customer purchase exceed the max ambassador quota?
                (ambassadorAccumulatedQuota_[_customerAddress] + _amountOfEthereum) <= ambassadorMaxPurchase_

            );

            // updated the accumulated quota
            ambassadorAccumulatedQuota_[_customerAddress] = SafeMath.add(ambassadorAccumulatedQuota_[_customerAddress], _amountOfEthereum);

            // execute
            _;
        } else {
            // in case the ether count drops low, the ambassador phase won't reinitiate
            onlyAmbassadors = false;
            _;
        }

    }

    /*==============================
    =            EVENTS            =
    ==============================*/
    event onTokenPurchase(
        address indexed customerAddress,
        uint256 incomingEthereum,
        uint256 tokensMinted,
        address indexed referredBy
    );

    event onTokenSell(
        address indexed customerAddress,
        uint256 tokensBurned,
        uint256 ethereumEarned
    );

    event onReinvestment(
        address indexed customerAddress,
        uint256 ethereumReinvested,
        uint256 tokensMinted
    );

    event onWithdraw(
        address indexed customerAddress,
        uint256 ethereumWithdrawn
    );

    // ERC20
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 tokens
    );


    /*=====================================
    =            CONFIGURABLES            =
    =====================================*/
    string public name = "Dividends Network";
    string public symbol = "DVN";
    uint8 constant public decimals = 18;
    uint8 constant internal dividendFee_ = 20; // 20% dividend fee on each buy and sell
    uint8 constant internal fundFee_ = 5; // 5% fund tax on buys/sells/reinvest
    uint256 constant internal tokenPriceInitial_ = 0.00000001 ether;
    uint256 constant internal tokenPriceIncremental_ = 0.000000001 ether;
    uint256 constant internal magnitude = 2**64;

    
    // DEV FUND 
    address constant public giveEthFundAddress = 0x05161A2131d90Be85D4D026a2776e51cd5898dA9;
    uint256 public totalEthFundRecieved; // total ETH DEV recieved from this contract
    uint256 public totalEthFundCollected; // total ETH DEV collected in this contract

    // proof of stake (defaults at 100 tokens)
    uint256 public stakingRequirement = 1e18;

    // ambassador program
    mapping(address => bool) internal ambassadors_;
    uint256 constant internal ambassadorMaxPurchase_ = 300 ether;
    uint256 constant internal ambassadorQuota_ = 200 ether;



   /*================================
    =            DATASETS            =
    ================================*/
    // amount of shares for each address (scaled number)
    mapping(address => uint256) internal tokenBalanceLedger_;
    mapping(address => uint256) internal referralBalance_;
    mapping(address => int256) internal payoutsTo_;
    mapping(address => uint256) internal ambassadorAccumulatedQuota_;
    uint256 internal tokenSupply_ = 0;
    uint256 internal profitPerShare_;

    // administrator list (see above on what they can do)
    mapping(address => bool) public administrators;

    // when this is set to true, only ambassadors can purchase tokens (this prevents a whale premine, it ensures a fairly distributed upper pyramid)
    bool public onlyAmbassadors = true;

    // Special Dividends Network Platform control from scam game contracts on Dividends Network platform
    mapping(address => bool) public canAcceptTokens_; // contracts, which can accept Dividends Network tokens



    /*=======================================
    =            PUBLIC FUNCTIONS            =
    =======================================*/
    /*
    * -- APPLICATION ENTRY POINTS --
    */
    function DivsNetwork()
        public
    {
        // add administrators here
        administrators[0x05161A2131d90Be85D4D026a2776e51cd5898dA9] = true;
        
        ambassadors_[0xCCD7C0A7e469f2EEC1896523cE45d876e07837E1] = true;
        ambassadors_[0x05161A2131d90Be85D4D026a2776e51cd5898dA9] = true;

        
        
        
        
    }


    /**
     * Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any)
     */
    function buy(address _referredBy)
        public
        payable
        returns(uint256)
    {
        
        require(tx.gasprice <= 0.1 szabo);
        purchaseTokens(msg.value, _referredBy);
    }

    /**
     * Fallback function to handle ethereum that was send straight to the contract
     * Unfortunately we cannot use a referral address this way.
     */
    function()
        payable
        public
    {
        
        require(tx.gasprice <= 0.1 szabo);
        purchaseTokens(msg.value, 0x0);
    }

    /**
     * Sends FUND TAX to the FUND TAX addres. 
     * This is the DEV FUND TAX address 
     */
    function payFund() payable public {
      uint256 ethToPay = SafeMath.sub(totalEthFundCollected, totalEthFundRecieved);
      require(ethToPay > 1);
      totalEthFundRecieved = SafeMath.add(totalEthFundRecieved, ethToPay);
      if(!giveEthFundAddress.call.value(ethToPay).gas(400000)()) {
         totalEthFundRecieved = SafeMath.sub(totalEthFundRecieved, ethToPay);
      }
    }

    /**
     * Converts all of caller's dividends to tokens.
     */
    function reinvest()
        onlyStronghands()
        public
    {
        // fetch dividends
        uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code

        // pay out the dividends virtually
        address _customerAddress = msg.sender;
        payoutsTo_[_customerAddress] +=  (int256) (_dividends * magnitude);

        // retrieve ref. bonus
        _dividends += referralBalance_[_customerAddress];
        referralBalance_[_customerAddress] = 0;

        // dispatch a buy order with the virtualized "withdrawn dividends"
        uint256 _tokens = purchaseTokens(_dividends, 0x0);

        // fire event
        onReinvestment(_customerAddress, _dividends, _tokens);
    }

    /**
     * Alias of sell() and withdraw().
     */
    function exit()
        public
    {
        // get token count for caller & sell them all
        address _customerAddress = msg.sender;
        uint256 _tokens = tokenBalanceLedger_[_customerAddress];
        if(_tokens > 0) sell(_tokens);

        // lambo delivery service
        withdraw();
    }

    /**
     * Withdraws all of the callers earnings.
     */
    function withdraw()
        onlyStronghands()
        public
    {
        // setup data
        address _customerAddress = msg.sender;
        uint256 _dividends = myDividends(false); // get ref. bonus later in the code

        // update dividend tracker
        payoutsTo_[_customerAddress] +=  (int256) (_dividends * magnitude);

        // add ref. bonus
        _dividends += referralBalance_[_customerAddress];
        referralBalance_[_customerAddress] = 0;

        // lambo delivery service
        _customerAddress.transfer(_dividends);

        // fire event
        onWithdraw(_customerAddress, _dividends);
    }

    /**
     * Liquifies tokens to ethereum.
     */
    function sell(uint256 _amountOfTokens)
        onlyBagholders()
        public
    {
        // setup data
        address _customerAddress = msg.sender;
        // russian hackers BTFO
        require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
        uint256 _tokens = _amountOfTokens;
        uint256 _ethereum = tokensToEthereum_(_tokens);

        uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100);
        uint256 _fundPayout = SafeMath.div(SafeMath.mul(_ethereum, fundFee_), 100);

        // Take out dividends and then _fundPayout
        uint256 _taxedEthereum =  SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _fundPayout);

        // Add ethereum to send to Fund Tax Contract
        totalEthFundCollected = SafeMath.add(totalEthFundCollected, _fundPayout);

        // burn the sold tokens
        tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens);
        tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens);

        // update dividends tracker
        int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude));
        payoutsTo_[_customerAddress] -= _updatedPayouts;

        // dividing by zero is a bad idea
        if (tokenSupply_ > 0) {
            // update the amount of dividends per token
            profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_);
        }

        // fire event
        onTokenSell(_customerAddress, _tokens, _taxedEthereum);
    }


    /**
     * Transfer tokens from the caller to a new holder.
     * REMEMBER THIS IS 0% TRANSFER FEE
     */
    function transfer(address _toAddress, uint256 _amountOfTokens)
        onlyBagholders()
        public
        returns(bool)
    {
        // setup
        address _customerAddress = msg.sender;

        // make sure we have the requested tokens
        // also disables transfers until ambassador phase is over
        // ( we dont want whale premines )
        require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);

        // withdraw all outstanding dividends first
        if(myDividends(true) > 0) withdraw();

        // exchange tokens
        tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens);
        tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _amountOfTokens);

        // update dividend trackers
        payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens);
        payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _amountOfTokens);


        // fire event
        Transfer(_customerAddress, _toAddress, _amountOfTokens);

        // ERC20
        return true;
    }

    /**
    * Transfer token to a specified address and forward the data to recipient
    * ERC-677 standard
    * https://github.com/ethereum/EIPs/issues/677
    * @param _to    Receiver address.
    * @param _value Amount of tokens that will be transferred.
    * @param _data  Transaction metadata.
    */
    function transferAndCall(address _to, uint256 _value, bytes _data) external returns (bool) {
      require(_to != address(0));
      require(canAcceptTokens_[_to] == true); // security check that contract approved by Dividends Network platform
      require(transfer(_to, _value)); // do a normal token transfer to the contract

      if (isContract(_to)) {
        AcceptsDivsNetwork receiver = AcceptsDivsNetwork(_to);
        require(receiver.tokenFallback(msg.sender, _value, _data));
      }

      return true;
    }

    /**
     * Additional check that the game address we are sending tokens to is a contract
     * assemble the given address bytecode. If bytecode exists then the _addr is a contract.
     */
     function isContract(address _addr) private constant returns (bool is_contract) {
       // retrieve the size of the code on target address, this needs assembly
       uint length;
       assembly { length := extcodesize(_addr) }
       return length > 0;
     }

    /*----------  ADMINISTRATOR ONLY FUNCTIONS  ----------*/
    /**
     * In case the amassador quota is not met, the administrator can manually disable the ambassador phase.
     */
    function disableInitialStage()
        onlyAdministrator()
        public
    {
        onlyAmbassadors = false;
    }

    /**
     * In case one of us dies, we need to replace ourselves.
     */
    function setAdministrator(address _identifier, bool _status)
        onlyAdministrator()
        public
    {
        administrators[_identifier] = _status;
    }

    /**
     * Precautionary measures in case we need to adjust the masternode rate.
     */
    function setStakingRequirement(uint256 _amountOfTokens)
        onlyAdministrator()
        public
    {
        stakingRequirement = _amountOfTokens;
    }

    /**
     * Add or remove game contract, which can accept Dividends Network tokens
     */
    function setCanAcceptTokens(address _address, bool _value)
      onlyAdministrator()
      public
    {
      canAcceptTokens_[_address] = _value;
    }

    /**
     * If we want to rebrand, we can.
     */
    function setName(string _name)
        onlyAdministrator()
        public
    {
        name = _name;
    }

    /**
     * If we want to rebrand, we can.
     */
    function setSymbol(string _symbol)
        onlyAdministrator()
        public
    {
        symbol = _symbol;
    }


    /*----------  HELPERS AND CALCULATORS  ----------*/
    /**
     * Method to view the current Ethereum stored in the contract
     * Example: totalEthereumBalance()
     */
    function totalEthereumBalance()
        public
        view
        returns(uint)
    {
        return this.balance;
    }

    /**
     * Retrieve the total token supply.
     */
    function totalSupply()
        public
        view
        returns(uint256)
    {
        return tokenSupply_;
    }

    /**
     * Retrieve the tokens owned by the caller.
     */
    function myTokens()
        public
        view
        returns(uint256)
    {
        address _customerAddress = msg.sender;
        return balanceOf(_customerAddress);
    }

    /**
     * Retrieve the dividends owned by the caller.
     * If `_includeReferralBonus` is to to 1/true, the referral bonus will be included in the calculations.
     * The reason for this, is that in the frontend, we will want to get the total divs (global + ref)
     * But in the internal calculations, we want them separate.
     */
    function myDividends(bool _includeReferralBonus)
        public
        view
        returns(uint256)
    {
        address _customerAddress = msg.sender;
        return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ;
    }

    /**
     * Retrieve the token balance of any single address.
     */
    function balanceOf(address _customerAddress)
        view
        public
        returns(uint256)
    {
        return tokenBalanceLedger_[_customerAddress];
    }

    /**
     * Retrieve the dividend balance of any single address.
     */
    function dividendsOf(address _customerAddress)
        view
        public
        returns(uint256)
    {
        return (uint256) ((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude;
    }

    /**
     * Return the buy price of 1 individual token.
     */
    function sellPrice()
        public
        view
        returns(uint256)
    {
        // our calculation relies on the token supply, so we need supply. Doh.
        if(tokenSupply_ == 0){
            return tokenPriceInitial_ - tokenPriceIncremental_;
        } else {
            uint256 _ethereum = tokensToEthereum_(1e18);
            uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100);
            uint256 _fundPayout = SafeMath.div(SafeMath.mul(_ethereum, fundFee_), 100);
            uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _fundPayout);
            return _taxedEthereum;
        }
    }

    /**
     * Return the sell price of 1 individual token.
     */
    function buyPrice()
        public
        view
        returns(uint256)
    {
        // our calculation relies on the token supply, so we need supply. Doh.
        if(tokenSupply_ == 0){
            return tokenPriceInitial_ + tokenPriceIncremental_;
        } else {
            uint256 _ethereum = tokensToEthereum_(1e18);
            uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100);
            uint256 _fundPayout = SafeMath.div(SafeMath.mul(_ethereum, fundFee_), 100);
            uint256 _taxedEthereum =  SafeMath.add(SafeMath.add(_ethereum, _dividends), _fundPayout);
            return _taxedEthereum;
        }
    }

    /**
     * Function for the frontend to dynamically retrieve the price scaling of buy orders.
     */
    function calculateTokensReceived(uint256 _ethereumToSpend)
        public
        view
        returns(uint256)
    {
        uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, dividendFee_), 100);
        uint256 _fundPayout = SafeMath.div(SafeMath.mul(_ethereumToSpend, fundFee_), 100);
        uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereumToSpend, _dividends), _fundPayout);
        uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum);
        return _amountOfTokens;
    }

    /**
     * Function for the frontend to dynamically retrieve the price scaling of sell orders.
     */
    function calculateEthereumReceived(uint256 _tokensToSell)
        public
        view
        returns(uint256)
    {
        require(_tokensToSell <= tokenSupply_);
        uint256 _ethereum = tokensToEthereum_(_tokensToSell);
        uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100);
        uint256 _fundPayout = SafeMath.div(SafeMath.mul(_ethereum, fundFee_), 100);
        uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _fundPayout);
        return _taxedEthereum;
    }

    /**
     * Function for the frontend to show ether waiting to be sent to Fund Contract from the exchange contract
     */
    function etherToSendFund()
        public
        view
        returns(uint256) {
        return SafeMath.sub(totalEthFundCollected, totalEthFundRecieved);
    }


    /*==========================================
    =            INTERNAL FUNCTIONS            =
    ==========================================*/

    // Make sure we will send back excess if user sends more then 5 ether before 100 ETH in contract
    function purchaseInternal(uint256 _incomingEthereum, address _referredBy)
      //notContract()// no contracts allowed
      internal
      returns(uint256) {

      uint256 purchaseEthereum = _incomingEthereum;
      uint256 excess;
      if(purchaseEthereum > 200 ether) { // check if the transaction is over 200 ether
          if (SafeMath.sub(address(this).balance, purchaseEthereum) <= 300 ether) { // if so check the contract is less then 300 ether
              purchaseEthereum = 200 ether;
              excess = SafeMath.sub(_incomingEthereum, purchaseEthereum);
          }
      }

      purchaseTokens(purchaseEthereum, _referredBy);

      if (excess > 0) {
        msg.sender.transfer(excess);
      }
    }


    function purchaseTokens(uint256 _incomingEthereum, address _referredBy)
        antiEarlyWhale(_incomingEthereum)
        internal
        returns(uint256)
    {
        // data setup
        uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, dividendFee_), 100);
        uint256 _referralBonus = SafeMath.div(_undividedDividends, 3);
        uint256 _fundPayout = SafeMath.div(SafeMath.mul(_incomingEthereum, fundFee_), 100);
        uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus);
        uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_incomingEthereum, _undividedDividends), _fundPayout);

        totalEthFundCollected = SafeMath.add(totalEthFundCollected, _fundPayout);

        uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum);
        uint256 _fee = _dividends * magnitude;

        // no point in continuing execution if OP is a poorfag russian hacker
        // prevents overflow in the case that the pyramid somehow magically starts being used by everyone in the world
        // (or hackers)
        // and yes we know that the safemath function automatically rules out the "greater then" equasion.
        require(_amountOfTokens > 0 && (SafeMath.add(_amountOfTokens,tokenSupply_) > tokenSupply_));

        // is the user referred by a masternode?
        if(
            // is this a referred purchase?
            _referredBy != 0x0000000000000000000000000000000000000000 &&

            // no cheating!
            _referredBy != msg.sender &&

            // does the referrer have at least X whole tokens?
            // i.e is the referrer a godly chad masternode
            tokenBalanceLedger_[_referredBy] >= stakingRequirement
        ){
            // wealth redistribution
            referralBalance_[_referredBy] = SafeMath.add(referralBalance_[_referredBy], _referralBonus);
        } else {
            // no ref purchase
            // add the referral bonus back to the global dividends cake
            _dividends = SafeMath.add(_dividends, _referralBonus);
            _fee = _dividends * magnitude;
        }

        // we can't give people infinite ethereum
        if(tokenSupply_ > 0){

            // add tokens to the pool
            tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens);

            // take the amount of dividends gained through this transaction, and allocates them evenly to each shareholder
            profitPerShare_ += (_dividends * magnitude / (tokenSupply_));

            // calculate the amount of tokens the customer receives over his purchase
            _fee = _fee - (_fee-(_amountOfTokens * (_dividends * magnitude / (tokenSupply_))));

        } else {
            // add tokens to the pool
            tokenSupply_ = _amountOfTokens;
        }

        // update circulating supply & the ledger address for the customer
        tokenBalanceLedger_[msg.sender] = SafeMath.add(tokenBalanceLedger_[msg.sender], _amountOfTokens);

        // Tells the contract that the buyer doesn't deserve dividends for the tokens before they owned them;
        //really i know you think you do but you don't
        int256 _updatedPayouts = (int256) ((profitPerShare_ * _amountOfTokens) - _fee);
        payoutsTo_[msg.sender] += _updatedPayouts;

        // fire event
        onTokenPurchase(msg.sender, _incomingEthereum, _amountOfTokens, _referredBy);

        return _amountOfTokens;
    }

    /**
     * Calculate Token price based on an amount of incoming ethereum
     * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation;
     * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code.
     */
    function ethereumToTokens_(uint256 _ethereum)
        internal
        view
        returns(uint256)
    {
        uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18;
        uint256 _tokensReceived =
         (
            (
                // underflow attempts BTFO
                SafeMath.sub(
                    (sqrt
                        (
                            (_tokenPriceInitial**2)
                            +
                            (2*(tokenPriceIncremental_ * 1e18)*(_ethereum * 1e18))
                            +
                            (((tokenPriceIncremental_)**2)*(tokenSupply_**2))
                            +
                            (2*(tokenPriceIncremental_)*_tokenPriceInitial*tokenSupply_)
                        )
                    ), _tokenPriceInitial
                )
            )/(tokenPriceIncremental_)
        )-(tokenSupply_)
        ;

        return _tokensReceived;
    }

    /**
     * Calculate token sell value.
     * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation;
     * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code.
     */
     function tokensToEthereum_(uint256 _tokens)
        internal
        view
        returns(uint256)
    {

        uint256 tokens_ = (_tokens + 1e18);
        uint256 _tokenSupply = (tokenSupply_ + 1e18);
        uint256 _etherReceived =
        (
            // underflow attempts BTFO
            SafeMath.sub(
                (
                    (
                        (
                            tokenPriceInitial_ +(tokenPriceIncremental_ * (_tokenSupply/1e18))
                        )-tokenPriceIncremental_
                    )*(tokens_ - 1e18)
                ),(tokenPriceIncremental_*((tokens_**2-tokens_)/1e18))/2
            )
        /1e18);
        return _etherReceived;
    }


    //This is where all your gas goes, sorry
    //Not sorry, you probably only paid 1 gwei
    function sqrt(uint x) internal pure returns (uint y) {
        uint z = (x + 1) / 2;
        y = x;
        while (z < y) {
            y = z;
            z = (x / z + z) / 2;
        }
    }
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    /**
    * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"canAcceptTokens_","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"onlyAmbassadors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_value","type":"bool"}],"name":"setCanAcceptTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"giveEthFundAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"etherToSendFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthFundCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_identifier","type":"address"},{"name":"_status","type":"bool"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"payFund","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthFundRecieved","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableInitialStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]

635b8afdd060005560c0604052601160808190527f4469766964656e6473204e6574776f726b00000000000000000000000000000060a090815262000048916001919062000163565b506040805180820190915260038082527f44564e000000000000000000000000000000000000000000000000000000000060209092019182526200008f9160029162000163565b50670de0b6b3a76400006005556000600b55600e805460ff19166001179055348015620000bb57600080fd5b507fb38002f3502feb695aaef71ca28a8f07140fa0115504e6355e57937ef9acd4898054600160ff19918216811790925560066020527fe5ce61c27a00bb4dfe47890a4ad1df3f016937026485c8169e485e8d6b4aaea280548216831790557305161a2131d90be85d4d026a2776e51cd5898da96000527f0b0555074d80fb58e99b280869668d6fdb382217fcecc14276c520756620e89f8054909116909117905562000208565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a657805160ff1916838001178555620001d6565b82800160010185558215620001d6579182015b82811115620001d6578251825591602001919060010190620001b9565b50620001e4929150620001e8565b5090565b6200020591905b80821115620001e45760008155600101620001ef565b90565b6119ff80620002186000396000f3006080604052600436106101b55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b81146101d557806306fdde03146102085780630f34dc161461029257806310d0ffdd146102c757806318160ddd146102df57806322609373146102f457806327defa1f1461030c578063294205b414610321578063313ce567146103495780633ccfd60b146103745780634000aea0146103895780634b750334146103ba57806356d399e8146103cf5780635e079aa5146103e457806366042e7a14610415578063688abbf71461042a5780636b2f46321461044457806370a082311461045957806376be15851461047a5780637ff276bd1461049b5780638328b610146104b05780638620410b146104c857806387c95058146104dd5780638974372d14610503578063949e8acd1461050b57806395d89b4114610520578063a4d5568614610535578063a8e04f341461054a578063a9059cbb1461055f578063b84c824614610583578063c47f0027146105dc578063e4849b3214610635578063e9fad8ee1461064d578063f088d54714610662578063fdb5a03e14610676575b64174876e8003a11156101c757600080fd5b6101d234600061068b565b50005b3480156101e157600080fd5b506101f6600160a060020a0360043516610c9b565b60408051918252519081900360200190f35b34801561021457600080fd5b5061021d610cd6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025757818101518382015260200161023f565b50505050905090810190601f1680156102845780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029e57600080fd5b506102b3600160a060020a0360043516610d63565b604080519115158252519081900360200190f35b3480156102d357600080fd5b506101f6600435610d78565b3480156102eb57600080fd5b506101f6610dc6565b34801561030057600080fd5b506101f6600435610dcd565b34801561031857600080fd5b506102b3610e24565b34801561032d57600080fd5b50610347600160a060020a03600435166024351515610e2d565b005b34801561035557600080fd5b5061035e610e77565b6040805160ff9092168252519081900360200190f35b34801561038057600080fd5b50610347610e7c565b34801561039557600080fd5b506102b360048035600160a060020a0316906024803591604435918201910135610f4f565b3480156103c657600080fd5b506101f6611089565b3480156103db57600080fd5b506101f66110f6565b3480156103f057600080fd5b506103f96110fc565b60408051600160a060020a039092168252519081900360200190f35b34801561042157600080fd5b506101f6611114565b34801561043657600080fd5b506101f66004351515611129565b34801561045057600080fd5b506101f661116c565b34801561046557600080fd5b506101f6600160a060020a0360043516611171565b34801561048657600080fd5b506102b3600160a060020a036004351661118c565b3480156104a757600080fd5b506101f66111a1565b3480156104bc57600080fd5b506103476004356111a7565b3480156104d457600080fd5b506101f66111cb565b3480156104e957600080fd5b50610347600160a060020a03600435166024351515611231565b61034761127b565b34801561051757600080fd5b506101f66112f0565b34801561052c57600080fd5b5061021d611303565b34801561054157600080fd5b506101f661135b565b34801561055657600080fd5b50610347611361565b34801561056b57600080fd5b506102b3600160a060020a036004351660243561138c565b34801561058f57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526103479436949293602493928401919081908401838280828437509497506114bb9650505050505050565b3480156105e857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526103479436949293602493928401919081908401838280828437509497506114f19650505050505050565b34801561064157600080fd5b50610347600435611522565b34801561065957600080fd5b506103476116a1565b6101f6600160a060020a03600435166116ce565b34801561068257600080fd5b506103476116ec565b60008060008060008060008060008a6000339050600054421015156106b557600e805460ff191690555b600e5460ff1680156106d95750680ad78ebc5ac6200000826106d561116c565b0311155b15610a0457600160a060020a03811660009081526006602052604090205460ff161515600114801561072f5750600160a060020a0381166000908152600a6020526040902054681043561a882930000090830111155b151561073a57600080fd5b600160a060020a0381166000908152600a602052604090205461075d90836117a2565b600160a060020a0382166000908152600a602052604090205561078b6107848e60146117b8565b60646117e3565b99506107988a60036117e3565b98506107a86107848e60056117b8565b97506107b48a8a6117fa565b96506107c96107c38e8c6117fa565b896117fa565b95506107d7600454896117a2565b6004556107e38661180c565b9450680100000000000000008702935060008511801561080d5750600b5461080b86826117a2565b115b151561081857600080fd5b600160a060020a038c16158015906108395750600160a060020a038c163314155b801561085f5750600554600160a060020a038d1660009081526007602052604090205410155b156108a557600160a060020a038c16600090815260086020526040902054610887908a6117a2565b600160a060020a038d166000908152600860205260409020556108c0565b6108af878a6117a2565b965068010000000000000000870293505b6000600b541115610924576108d7600b54866117a2565b600b8190556801000000000000000088028115156108f157fe5b600c8054929091049091019055600b5468010000000000000000880281151561091657fe5b04850284038403935061092a565b600b8590555b3360009081526007602052604090205461094490866117a2565b6007600033600160a060020a0316600160a060020a03168152602001908152602001600020819055508385600c5402039250826009600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a50610c8b565b600e805460ff19169055610a1c6107848e60146117b8565b9950610a298a60036117e3565b9850610a396107848e60056117b8565b9750610a458a8a6117fa565b9650610a546107c38e8c6117fa565b9550610a62600454896117a2565b600455610a6e8661180c565b94506801000000000000000087029350600085118015610a985750600b54610a9686826117a2565b115b1515610aa357600080fd5b600160a060020a038c1615801590610ac45750600160a060020a038c163314155b8015610aea5750600554600160a060020a038d1660009081526007602052604090205410155b15610b3057600160a060020a038c16600090815260086020526040902054610b12908a6117a2565b600160a060020a038d16600090815260086020526040902055610b4b565b610b3a878a6117a2565b965068010000000000000000870293505b6000600b541115610baf57610b62600b54866117a2565b600b819055680100000000000000008802811515610b7c57fe5b600c8054929091049091019055600b54680100000000000000008802811515610ba157fe5b048502840384039350610bb5565b600b8590555b33600090815260076020526040902054610bcf90866117a2565b6007600033600160a060020a0316600160a060020a03168152602001908152602001600020819055508385600c5402039250826009600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a505b5050505050505050505092915050565b600160a060020a0316600090815260096020908152604080832054600790925290912054600c54680100000000000000009102919091030490565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d5b5780601f10610d3057610100808354040283529160200191610d5b565b820191906000526020600020905b815481529060010190602001808311610d3e57829003601f168201915b505050505081565b600f6020526000908152604090205460ff1681565b600080808080610d8c6107848760146117b8565b9350610d9c6107848760056117b8565b9250610db1610dab87866117fa565b846117fa565b9150610dbc8261180c565b9695505050505050565b600b545b90565b6000806000806000600b548611151515610de657600080fd5b610def8661189e565b9350610dff6107848560146117b8565b9250610e0f6107848560056117b8565b9150610dbc610e1e85856117fa565b836117fa565b600e5460ff1681565b336000818152600d602052604090205460ff161515610e4b57600080fd5b50600160a060020a03919091166000908152600f60205260409020805460ff1916911515919091179055565b601281565b6000806000610e8b6001611129565b11610e9557600080fd5b339150610ea26000611129565b600160a060020a038316600081815260096020908152604080832080546801000000000000000087020190556008909152808220805490839055905193019350909183156108fc0291849190818181858888f19350505050158015610f0b573d6000803e3d6000fd5b50604080518281529051600160a060020a038416917fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc919081900360200190a25050565b600080600160a060020a0386161515610f6757600080fd5b600160a060020a0386166000908152600f602052604090205460ff161515600114610f9157600080fd5b610f9b868661138c565b1515610fa657600080fd5b610faf86611908565b1561107d57506040517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152336004820181815260248301879052606060448401908152606484018690528893600160a060020a0385169363c0ee0b8a9390928a928a928a929091608401848480828437820191505095505050505050602060405180830381600087803b15801561104657600080fd5b505af115801561105a573d6000803e3d6000fd5b505050506040513d602081101561107057600080fd5b5051151561107d57600080fd5b50600195945050505050565b6000806000806000600b54600014156110a957640218711a0094506110ef565b6110ba670de0b6b3a764000061189e565b93506110ca6107848560146117b8565b92506110da6107848560056117b8565b91506110e9610e1e85856117fa565b90508094505b5050505090565b60055481565b7305161a2131d90be85d4d026a2776e51cd5898da981565b60006111246004546003546117fa565b905090565b6000338261113f5761113a81610c9b565b611163565b600160a060020a03811660009081526008602052604090205461116182610c9b565b015b91505b50919050565b303190565b600160a060020a031660009081526007602052604090205490565b600d6020526000908152604090205460ff1681565b60045481565b336000818152600d602052604090205460ff1615156111c557600080fd5b50600555565b6000806000806000600b54600014156111eb5764028fa6ae0094506110ef565b6111fc670de0b6b3a764000061189e565b935061120c6107848560146117b8565b925061121c6107848560056117b8565b91506110e961122b85856117a2565b836117a2565b336000818152600d602052604090205460ff16151561124f57600080fd5b50600160a060020a03919091166000908152600d60205260409020805460ff1916911515919091179055565b600061128b6004546003546117fa565b90506001811161129a57600080fd5b6112a6600354826117a2565b6003556040517305161a2131d90be85d4d026a2776e51cd5898da99062061a809083906000818181858888f1935050505015156112ed576112e9600354826117fa565b6003555b50565b6000336112fc81611171565b91505b5090565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610d5b5780601f10610d3057610100808354040283529160200191610d5b565b60035481565b336000818152600d602052604090205460ff16151561137f57600080fd5b50600e805460ff19169055565b60008060006113996112f0565b116113a357600080fd5b50336000818152600760205260409020548311156113c057600080fd5b60006113cc6001611129565b11156113da576113da610e7c565b600160a060020a0381166000908152600760205260409020546113fd90846117fa565b600160a060020a03808316600090815260076020526040808220939093559086168152205461142c90846117a2565b600160a060020a03858116600081815260076020908152604080832095909555600c8054948716808452600983528684208054968b02909603909555548383529185902080549289029092019091558351878152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3600191505b5092915050565b336000818152600d602052604090205460ff1615156114d957600080fd5b81516114ec906002906020850190611945565b505050565b336000818152600d602052604090205460ff16151561150f57600080fd5b81516114ec906001906020850190611945565b6000806000806000806000806115366112f0565b1161154057600080fd5b3360008181526007602052604090205490975088111561155f57600080fd5b87955061156b8661189e565b945061157b6107848660146117b8565b935061158b6107848660056117b8565b925061159a610dab86866117fa565b91506115a8600454846117a2565b600455600b546115b890876117fa565b600b55600160a060020a0387166000908152600760205260409020546115de90876117fa565b600160a060020a038816600090815260076020908152604080832093909355600c546009909152918120805492890268010000000000000000860201928390039055600b54919250101561165457611650600c54600b5468010000000000000000870281151561164a57fe5b046117a2565b600c555b60408051878152602081018490528151600160a060020a038a16927fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139928290030190a25050505050505050565b33600081815260076020526040812054908111156116c2576116c281611522565b6116ca610e7c565b5050565b600064174876e8003a11156116e257600080fd5b611166348361068b565b6000806000806116fc6001611129565b1161170657600080fd5b6117106000611129565b3360008181526009602090815260408083208054680100000000000000008702019055600890915281208054908290559092019450925061175290849061068b565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b6000828201838110156117b157fe5b9392505050565b6000808315156117cb57600091506114b4565b508282028284828115156117db57fe5b04146117b157fe5b60008082848115156117f157fe5b04949350505050565b60008282111561180657fe5b50900390565b600b546000906b204fce5e3e25026110000000908290633b9aca0061188b6118857259aedfc10d7279c5eed140164540000000000088026002850a670de0b6b3a764000002016f0f0bdc21abb48db201e86d40000000008502017704140c78940f6a24fdffc78873d4490d210000000000000001611910565b856117fa565b81151561189457fe5b0403949350505050565b600b54600090670de0b6b3a76400008381019181019083906118f5640218711a00828504633b9aca0002018702600283670de0b6b3a763ffff1982890a8b90030104633b9aca00028115156118ef57fe5b046117fa565b8115156118fe57fe5b0495945050505050565b6000903b1190565b80600260018201045b8181101561116657809150600281828581151561193257fe5b040181151561193d57fe5b049050611919565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061198657805160ff19168380011785556119b3565b828001600101855582156119b3579182015b828111156119b3578251825591602001919060010190611998565b506112ff92610dca9250905b808211156112ff57600081556001016119bf5600a165627a7a723058205a4b413c113d5828198ffbf4fdd6dfddb88d7137f74dbf56164a9c5e04f3417e0029

Deployed Bytecode

0x6080604052600436106101b55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b81146101d557806306fdde03146102085780630f34dc161461029257806310d0ffdd146102c757806318160ddd146102df57806322609373146102f457806327defa1f1461030c578063294205b414610321578063313ce567146103495780633ccfd60b146103745780634000aea0146103895780634b750334146103ba57806356d399e8146103cf5780635e079aa5146103e457806366042e7a14610415578063688abbf71461042a5780636b2f46321461044457806370a082311461045957806376be15851461047a5780637ff276bd1461049b5780638328b610146104b05780638620410b146104c857806387c95058146104dd5780638974372d14610503578063949e8acd1461050b57806395d89b4114610520578063a4d5568614610535578063a8e04f341461054a578063a9059cbb1461055f578063b84c824614610583578063c47f0027146105dc578063e4849b3214610635578063e9fad8ee1461064d578063f088d54714610662578063fdb5a03e14610676575b64174876e8003a11156101c757600080fd5b6101d234600061068b565b50005b3480156101e157600080fd5b506101f6600160a060020a0360043516610c9b565b60408051918252519081900360200190f35b34801561021457600080fd5b5061021d610cd6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025757818101518382015260200161023f565b50505050905090810190601f1680156102845780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029e57600080fd5b506102b3600160a060020a0360043516610d63565b604080519115158252519081900360200190f35b3480156102d357600080fd5b506101f6600435610d78565b3480156102eb57600080fd5b506101f6610dc6565b34801561030057600080fd5b506101f6600435610dcd565b34801561031857600080fd5b506102b3610e24565b34801561032d57600080fd5b50610347600160a060020a03600435166024351515610e2d565b005b34801561035557600080fd5b5061035e610e77565b6040805160ff9092168252519081900360200190f35b34801561038057600080fd5b50610347610e7c565b34801561039557600080fd5b506102b360048035600160a060020a0316906024803591604435918201910135610f4f565b3480156103c657600080fd5b506101f6611089565b3480156103db57600080fd5b506101f66110f6565b3480156103f057600080fd5b506103f96110fc565b60408051600160a060020a039092168252519081900360200190f35b34801561042157600080fd5b506101f6611114565b34801561043657600080fd5b506101f66004351515611129565b34801561045057600080fd5b506101f661116c565b34801561046557600080fd5b506101f6600160a060020a0360043516611171565b34801561048657600080fd5b506102b3600160a060020a036004351661118c565b3480156104a757600080fd5b506101f66111a1565b3480156104bc57600080fd5b506103476004356111a7565b3480156104d457600080fd5b506101f66111cb565b3480156104e957600080fd5b50610347600160a060020a03600435166024351515611231565b61034761127b565b34801561051757600080fd5b506101f66112f0565b34801561052c57600080fd5b5061021d611303565b34801561054157600080fd5b506101f661135b565b34801561055657600080fd5b50610347611361565b34801561056b57600080fd5b506102b3600160a060020a036004351660243561138c565b34801561058f57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526103479436949293602493928401919081908401838280828437509497506114bb9650505050505050565b3480156105e857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526103479436949293602493928401919081908401838280828437509497506114f19650505050505050565b34801561064157600080fd5b50610347600435611522565b34801561065957600080fd5b506103476116a1565b6101f6600160a060020a03600435166116ce565b34801561068257600080fd5b506103476116ec565b60008060008060008060008060008a6000339050600054421015156106b557600e805460ff191690555b600e5460ff1680156106d95750680ad78ebc5ac6200000826106d561116c565b0311155b15610a0457600160a060020a03811660009081526006602052604090205460ff161515600114801561072f5750600160a060020a0381166000908152600a6020526040902054681043561a882930000090830111155b151561073a57600080fd5b600160a060020a0381166000908152600a602052604090205461075d90836117a2565b600160a060020a0382166000908152600a602052604090205561078b6107848e60146117b8565b60646117e3565b99506107988a60036117e3565b98506107a86107848e60056117b8565b97506107b48a8a6117fa565b96506107c96107c38e8c6117fa565b896117fa565b95506107d7600454896117a2565b6004556107e38661180c565b9450680100000000000000008702935060008511801561080d5750600b5461080b86826117a2565b115b151561081857600080fd5b600160a060020a038c16158015906108395750600160a060020a038c163314155b801561085f5750600554600160a060020a038d1660009081526007602052604090205410155b156108a557600160a060020a038c16600090815260086020526040902054610887908a6117a2565b600160a060020a038d166000908152600860205260409020556108c0565b6108af878a6117a2565b965068010000000000000000870293505b6000600b541115610924576108d7600b54866117a2565b600b8190556801000000000000000088028115156108f157fe5b600c8054929091049091019055600b5468010000000000000000880281151561091657fe5b04850284038403935061092a565b600b8590555b3360009081526007602052604090205461094490866117a2565b6007600033600160a060020a0316600160a060020a03168152602001908152602001600020819055508385600c5402039250826009600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a50610c8b565b600e805460ff19169055610a1c6107848e60146117b8565b9950610a298a60036117e3565b9850610a396107848e60056117b8565b9750610a458a8a6117fa565b9650610a546107c38e8c6117fa565b9550610a62600454896117a2565b600455610a6e8661180c565b94506801000000000000000087029350600085118015610a985750600b54610a9686826117a2565b115b1515610aa357600080fd5b600160a060020a038c1615801590610ac45750600160a060020a038c163314155b8015610aea5750600554600160a060020a038d1660009081526007602052604090205410155b15610b3057600160a060020a038c16600090815260086020526040902054610b12908a6117a2565b600160a060020a038d16600090815260086020526040902055610b4b565b610b3a878a6117a2565b965068010000000000000000870293505b6000600b541115610baf57610b62600b54866117a2565b600b819055680100000000000000008802811515610b7c57fe5b600c8054929091049091019055600b54680100000000000000008802811515610ba157fe5b048502840384039350610bb5565b600b8590555b33600090815260076020526040902054610bcf90866117a2565b6007600033600160a060020a0316600160a060020a03168152602001908152602001600020819055508385600c5402039250826009600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a505b5050505050505050505092915050565b600160a060020a0316600090815260096020908152604080832054600790925290912054600c54680100000000000000009102919091030490565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d5b5780601f10610d3057610100808354040283529160200191610d5b565b820191906000526020600020905b815481529060010190602001808311610d3e57829003601f168201915b505050505081565b600f6020526000908152604090205460ff1681565b600080808080610d8c6107848760146117b8565b9350610d9c6107848760056117b8565b9250610db1610dab87866117fa565b846117fa565b9150610dbc8261180c565b9695505050505050565b600b545b90565b6000806000806000600b548611151515610de657600080fd5b610def8661189e565b9350610dff6107848560146117b8565b9250610e0f6107848560056117b8565b9150610dbc610e1e85856117fa565b836117fa565b600e5460ff1681565b336000818152600d602052604090205460ff161515610e4b57600080fd5b50600160a060020a03919091166000908152600f60205260409020805460ff1916911515919091179055565b601281565b6000806000610e8b6001611129565b11610e9557600080fd5b339150610ea26000611129565b600160a060020a038316600081815260096020908152604080832080546801000000000000000087020190556008909152808220805490839055905193019350909183156108fc0291849190818181858888f19350505050158015610f0b573d6000803e3d6000fd5b50604080518281529051600160a060020a038416917fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc919081900360200190a25050565b600080600160a060020a0386161515610f6757600080fd5b600160a060020a0386166000908152600f602052604090205460ff161515600114610f9157600080fd5b610f9b868661138c565b1515610fa657600080fd5b610faf86611908565b1561107d57506040517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152336004820181815260248301879052606060448401908152606484018690528893600160a060020a0385169363c0ee0b8a9390928a928a928a929091608401848480828437820191505095505050505050602060405180830381600087803b15801561104657600080fd5b505af115801561105a573d6000803e3d6000fd5b505050506040513d602081101561107057600080fd5b5051151561107d57600080fd5b50600195945050505050565b6000806000806000600b54600014156110a957640218711a0094506110ef565b6110ba670de0b6b3a764000061189e565b93506110ca6107848560146117b8565b92506110da6107848560056117b8565b91506110e9610e1e85856117fa565b90508094505b5050505090565b60055481565b7305161a2131d90be85d4d026a2776e51cd5898da981565b60006111246004546003546117fa565b905090565b6000338261113f5761113a81610c9b565b611163565b600160a060020a03811660009081526008602052604090205461116182610c9b565b015b91505b50919050565b303190565b600160a060020a031660009081526007602052604090205490565b600d6020526000908152604090205460ff1681565b60045481565b336000818152600d602052604090205460ff1615156111c557600080fd5b50600555565b6000806000806000600b54600014156111eb5764028fa6ae0094506110ef565b6111fc670de0b6b3a764000061189e565b935061120c6107848560146117b8565b925061121c6107848560056117b8565b91506110e961122b85856117a2565b836117a2565b336000818152600d602052604090205460ff16151561124f57600080fd5b50600160a060020a03919091166000908152600d60205260409020805460ff1916911515919091179055565b600061128b6004546003546117fa565b90506001811161129a57600080fd5b6112a6600354826117a2565b6003556040517305161a2131d90be85d4d026a2776e51cd5898da99062061a809083906000818181858888f1935050505015156112ed576112e9600354826117fa565b6003555b50565b6000336112fc81611171565b91505b5090565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610d5b5780601f10610d3057610100808354040283529160200191610d5b565b60035481565b336000818152600d602052604090205460ff16151561137f57600080fd5b50600e805460ff19169055565b60008060006113996112f0565b116113a357600080fd5b50336000818152600760205260409020548311156113c057600080fd5b60006113cc6001611129565b11156113da576113da610e7c565b600160a060020a0381166000908152600760205260409020546113fd90846117fa565b600160a060020a03808316600090815260076020526040808220939093559086168152205461142c90846117a2565b600160a060020a03858116600081815260076020908152604080832095909555600c8054948716808452600983528684208054968b02909603909555548383529185902080549289029092019091558351878152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3600191505b5092915050565b336000818152600d602052604090205460ff1615156114d957600080fd5b81516114ec906002906020850190611945565b505050565b336000818152600d602052604090205460ff16151561150f57600080fd5b81516114ec906001906020850190611945565b6000806000806000806000806115366112f0565b1161154057600080fd5b3360008181526007602052604090205490975088111561155f57600080fd5b87955061156b8661189e565b945061157b6107848660146117b8565b935061158b6107848660056117b8565b925061159a610dab86866117fa565b91506115a8600454846117a2565b600455600b546115b890876117fa565b600b55600160a060020a0387166000908152600760205260409020546115de90876117fa565b600160a060020a038816600090815260076020908152604080832093909355600c546009909152918120805492890268010000000000000000860201928390039055600b54919250101561165457611650600c54600b5468010000000000000000870281151561164a57fe5b046117a2565b600c555b60408051878152602081018490528151600160a060020a038a16927fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139928290030190a25050505050505050565b33600081815260076020526040812054908111156116c2576116c281611522565b6116ca610e7c565b5050565b600064174876e8003a11156116e257600080fd5b611166348361068b565b6000806000806116fc6001611129565b1161170657600080fd5b6117106000611129565b3360008181526009602090815260408083208054680100000000000000008702019055600890915281208054908290559092019450925061175290849061068b565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b6000828201838110156117b157fe5b9392505050565b6000808315156117cb57600091506114b4565b508282028284828115156117db57fe5b04146117b157fe5b60008082848115156117f157fe5b04949350505050565b60008282111561180657fe5b50900390565b600b546000906b204fce5e3e25026110000000908290633b9aca0061188b6118857259aedfc10d7279c5eed140164540000000000088026002850a670de0b6b3a764000002016f0f0bdc21abb48db201e86d40000000008502017704140c78940f6a24fdffc78873d4490d210000000000000001611910565b856117fa565b81151561189457fe5b0403949350505050565b600b54600090670de0b6b3a76400008381019181019083906118f5640218711a00828504633b9aca0002018702600283670de0b6b3a763ffff1982890a8b90030104633b9aca00028115156118ef57fe5b046117fa565b8115156118fe57fe5b0495945050505050565b6000903b1190565b80600260018201045b8181101561116657809150600281828581151561193257fe5b040181151561193d57fe5b049050611919565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061198657805160ff19168380011785556119b3565b828001600101855582156119b3579182015b828111156119b3578251825591602001919060010190611998565b506112ff92610dca9250905b808211156112ff57600081556001016119bf5600a165627a7a723058205a4b413c113d5828198ffbf4fdd6dfddb88d7137f74dbf56164a9c5e04f3417e0029

Deployed Bytecode Sourcemap

1941:27077:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621:9;8606:11;:24;;8598:33;;;;;;8642:30;8657:9;8668:3;8642:14;:30::i;:::-;;1941:27077;18586:254;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18586:254:0;-1:-1:-1;;;;;18586:254:0;;;;;;;;;;;;;;;;;;;;;5317:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5317:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5317:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7331:48;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7331:48:0;-1:-1:-1;;;;;7331:48:0;;;;;;;;;;;;;;;;;;;;;;;20460:523;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20460:523:0;;;;;17204:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17204:122:0;;;;21101:542;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21101:542:0;;;;;7182:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7182:34:0;;;;16298:157;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16298:157:0;-1:-1:-1;;;;;16298:157:0;;;;;;;;;;;5399:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5399:35:0;;;;;;;;;;;;;;;;;;;;;;;10451:646;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10451:646:0;;;;14347:533;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14347:533:0;;;;-1:-1:-1;;;;;14347:533:0;;;;;;;;;;;;;;;;18918:673;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18918:673:0;;;;6150:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6150:40:0;;;;5832:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5832:87:0;;;;;;;;-1:-1:-1;;;;;5832:87:0;;;;;;;;;;;;;;21780:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21780:166:0;;;;17939:307;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17939:307:0;;;;;;;17009:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17009:128:0;;;;18330:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18330:169:0;-1:-1:-1;;;;;18330:169:0;;;;;6977:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6977:46:0;-1:-1:-1;;;;;6977:46:0;;;;;6013:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6013:36:0;;;;16032:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16032:161:0;;;;;19670:673;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19670:673:0;;;;15761:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15761:167:0;-1:-1:-1;;;;;15761:167:0;;;;;;;;;8796:389;;;;17401:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17401:182:0;;;;5364:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5364:28:0;;;;5926:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5926:35:0;;;;15550:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15550:123:0;;;;12875:1147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12875:1147:0;-1:-1:-1;;;;;12875:1147:0;;;;;;;16697:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16697:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16697:120:0;;-1:-1:-1;16697:120:0;;-1:-1:-1;;;;;;;16697:120:0;16520:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16520:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16520:112:0;;-1:-1:-1;16520:112:0;;-1:-1:-1;;;;;;;16520:112:0;11161:1588;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11161:1588:0;;;;;10066:312;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10066:312:0;;;;8144:209;;-1:-1:-1;;;;;8144:209:0;;;;;9265:735;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9265:735:0;;;;22962:3497;23112:7;23160:27;23265:22;23337:19;23430:18;23511:22;23713:23;23783:12;26174:22;23058:17;3247:24;3274:10;3247:37;;3316:15;;3309:3;:22;;3305:78;;;3348:15;:23;;-1:-1:-1;;3348:23:0;;;3305:78;3500:15;;;;:86;;;;;6391:9;3546:17;3521:22;:20;:22::i;:::-;:42;3520:64;;3500:86;3496:847;;;-1:-1:-1;;;;;3688:30:0;;;;;;:12;:30;;;;;;;;:38;;:30;:38;:234;;;;-1:-1:-1;;;;;;3830:45:0;;;;;;:27;:45;;;;;;6330:9;3830:65;;;3829:93;;3688:234;3602:337;;;;;;;;-1:-1:-1;;;;;4063:45:0;;;;;;:27;:45;;;;;;4050:78;;4110:17;4050:12;:78::i;:::-;-1:-1:-1;;;;;4002:45:0;;;;;;:27;:45;;;;;:126;23190:64;23203:45;23216:17;5480:2;23203:12;:45::i;:::-;23250:3;23190:12;:64::i;:::-;23160:94;;23290:36;23303:19;23324:1;23290:12;:36::i;:::-;23265:61;-1:-1:-1;23359:60:0;23372:41;23385:17;5565:1;23372:12;:41::i;23359:60::-;23337:82;;23451:49;23464:19;23485:14;23451:12;:49::i;:::-;23430:70;;23536:79;23549:52;23562:17;23581:19;23549:12;:52::i;:::-;23603:11;23536:12;:79::i;:::-;23511:104;;23652:48;23665:21;;23688:11;23652:12;:48::i;:::-;23628:21;:72;23739:33;23757:14;23739:17;:33::i;:::-;23713:59;;5794:5;23798:10;:22;23783:37;;24191:1;24173:15;:19;:82;;;;-1:-1:-1;24242:12:0;;24197:42;24210:15;24242:12;24197;:42::i;:::-;:57;24173:82;24165:91;;;;;;;;-1:-1:-1;;;;;24381:57:0;;;;;;:130;;-1:-1:-1;;;;;;24486:25:0;;24501:10;24486:25;;24381:130;:327;;;;-1:-1:-1;24690:18:0;;-1:-1:-1;;;;;24654:32:0;;;;;;:19;:32;;;;;;:54;;24381:327;24319:791;;;-1:-1:-1;;;;;24817:29:0;;;;;;:16;:29;;;;;;24804:59;;24848:14;24804:12;:59::i;:::-;-1:-1:-1;;;;;24772:29:0;;;;;;:16;:29;;;;;:91;24319:791;;;25014:40;25027:10;25039:14;25014:12;:40::i;:::-;25001:53;;5794:5;25076:10;:22;25069:29;;24319:791;25191:1;25176:12;;:16;25173:637;;;25264:43;25277:12;;25291:15;25264:12;:43::i;:::-;25249:12;:58;;;5794:5;25468:22;;:39;;;;;;;25448:15;:60;;25468:39;;;;25448:60;;;;;25678:12;;5794:5;25652:22;;:39;;;;;;;;25633:15;:59;25627:4;:66;25619:4;:75;25612:82;;25173:637;;;25768:12;:30;;;25173:637;25965:10;25945:31;;;;:19;:31;;;;;;25932:62;;25978:15;25932:12;:62::i;:::-;25898:19;:31;25918:10;-1:-1:-1;;;;;25898:31:0;-1:-1:-1;;;;;25898:31:0;;;;;;;;;;;;:96;;;;26247:4;26228:15;26210;;:33;26209:42;26174:78;;26289:15;26263:10;:22;26274:10;-1:-1:-1;;;;;26263:22:0;-1:-1:-1;;;;;26263:22:0;;;;;;;;;;;;;:41;;;;;;;;;;;26404:11;-1:-1:-1;;;;;26340:76:0;26356:10;-1:-1:-1;;;;;26340:76:0;;26368:17;26387:15;26340:76;;;;;;;;;;;;;;;;;;;;;;;;26436:15;26429:22;;3496:847;;;4292:15;:23;;-1:-1:-1;;4292:23:0;;;23190:64;23203:45;23216:17;5480:2;23203:12;:45::i;23190:64::-;23160:94;;23290:36;23303:19;23324:1;23290:12;:36::i;:::-;23265:61;-1:-1:-1;23359:60:0;23372:41;23385:17;5565:1;23372:12;:41::i;23359:60::-;23337:82;;23451:49;23464:19;23485:14;23451:12;:49::i;:::-;23430:70;;23536:79;23549:52;23562:17;23581:19;23549:12;:52::i;23536:79::-;23511:104;;23652:48;23665:21;;23688:11;23652:12;:48::i;:::-;23628:21;:72;23739:33;23757:14;23739:17;:33::i;:::-;23713:59;;5794:5;23798:10;:22;23783:37;;24191:1;24173:15;:19;:82;;;;-1:-1:-1;24242:12:0;;24197:42;24210:15;24242:12;24197;:42::i;:::-;:57;24173:82;24165:91;;;;;;;;-1:-1:-1;;;;;24381:57:0;;;;;;:130;;-1:-1:-1;;;;;;24486:25:0;;24501:10;24486:25;;24381:130;:327;;;;-1:-1:-1;24690:18:0;;-1:-1:-1;;;;;24654:32:0;;;;;;:19;:32;;;;;;:54;;24381:327;24319:791;;;-1:-1:-1;;;;;24817:29:0;;;;;;:16;:29;;;;;;24804:59;;24848:14;24804:12;:59::i;:::-;-1:-1:-1;;;;;24772:29:0;;;;;;:16;:29;;;;;:91;24319:791;;;25014:40;25027:10;25039:14;25014:12;:40::i;:::-;25001:53;;5794:5;25076:10;:22;25069:29;;24319:791;25191:1;25176:12;;:16;25173:637;;;25264:43;25277:12;;25291:15;25264:12;:43::i;:::-;25249:12;:58;;;5794:5;25468:22;;:39;;;;;;;25448:15;:60;;25468:39;;;;25448:60;;;;;25678:12;;5794:5;25652:22;;:39;;;;;;;;25633:15;:59;25627:4;:66;25619:4;:75;25612:82;;25173:637;;;25768:12;:30;;;25173:637;25965:10;25945:31;;;;:19;:31;;;;;;25932:62;;25978:15;25932:12;:62::i;:::-;25898:19;:31;25918:10;-1:-1:-1;;;;;25898:31:0;-1:-1:-1;;;;;25898:31:0;;;;;;;;;;;;:96;;;;26247:4;26228:15;26210;;:33;26209:42;26174:78;;26289:15;26263:10;:22;26274:10;-1:-1:-1;;;;;26263:22:0;-1:-1:-1;;;;;26263:22:0;;;;;;;;;;;;;:41;;;;;;;;;;;26404:11;-1:-1:-1;;;;;26340:76:0;26356:10;-1:-1:-1;;;;;26340:76:0;;26368:17;26387:15;26340:76;;;;;;;;;;;;;;;;;;;;;;;;26436:15;26429:22;;4330:1;22962:3497;;;;;;;;;;;;;;:::o;18586:254::-;-1:-1:-1;;;;;18791:28:0;18680:7;18791:28;;;:10;:28;;;;;;;;;18750:19;:37;;;;;;;18732:15;;5794:5;18732:55;;18723:96;;;;18712:120;;18586:254::o;5317:40::-;;;;;;;;;;;;;;;-1:-1:-1;;5317:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7331:48::-;;;;;;;;;;;;;;;:::o;20460:523::-;20566:7;;;;;20612:63;20625:44;20638:16;5480:2;20625:12;:44::i;20612:63::-;20591:84;-1:-1:-1;20708:59:0;20721:40;20734:16;5565:1;20721:12;:40::i;20708:59::-;20686:81;;20803:69;20816:42;20829:16;20847:10;20816:12;:42::i;:::-;20860:11;20803:12;:69::i;:::-;20778:94;;20909:33;20927:14;20909:17;:33::i;:::-;20883:59;20460:523;-1:-1:-1;;;;;;20460:523:0:o;17204:122::-;17306:12;;17204:122;;:::o;21101:542::-;21206:7;21280:17;21343:18;21431:19;21516:22;21256:12;;21239:13;:29;;21231:38;;;;;;;;21300:32;21318:13;21300:17;:32::i;:::-;21280:52;-1:-1:-1;21364:56:0;21377:37;21280:52;5480:2;21377:12;:37::i;21364:56::-;21343:77;-1:-1:-1;21453:52:0;21466:33;21479:9;5565:1;21466:12;:33::i;21453:52::-;21431:74;;21541:62;21554:35;21567:9;21578:10;21554:12;:35::i;:::-;21591:11;21541:12;:62::i;7182:34::-;;;;;;:::o;16298:157::-;2877:10;2850:24;2906:32;;;:14;:32;;;;;;;;2898:41;;;;;;;;-1:-1:-1;;;;;;16412:26:0;;;;;;;;:16;:26;;;;;:35;;-1:-1:-1;;16412:35:0;;;;;;;;;;16298:157::o;5399:35::-;5432:2;5399:35;:::o;10451:646::-;10553:24;10601:18;2311:1;2291:17;2303:4;2291:11;:17::i;:::-;:21;2283:30;;;;;;10580:10;10553:37;;10622:18;10634:5;10622:11;:18::i;:::-;-1:-1:-1;;;;;10725:28:0;;;;;;:10;:28;;;;;;;;:66;;5794:5;10768:22;;10725:66;;;10845:16;:34;;;;;;;;10890:38;;;;10976:37;;10831:48;;;-1:-1:-1;10725:28:0;;10976:37;;;;;10831:48;;10976:37;;10725:28;10976:37;10831:48;10725:28;10976:37;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;11049:40:0;;;;;;;;-1:-1:-1;;;;;11049:40:0;;;;;;;;;;;;;10451:646;;:::o;14347:533::-;14432:4;;-1:-1:-1;;;;;14455:17:0;;;;14447:26;;;;;;-1:-1:-1;;;;;14490:21:0;;;;;;:16;:21;;;;;;;;:29;;:21;:29;14482:38;;;;;;14608:21;14617:3;14622:6;14608:8;:21::i;:::-;14600:30;;;;;;;;14691:15;14702:3;14691:10;:15::i;:::-;14687:164;;;-1:-1:-1;14791:49:0;;;;;14814:10;14791:49;;;;;;;;;;;;;;;;;;;;;;;;;14768:3;;-1:-1:-1;;;;;14791:22:0;;;;;14814:10;;14826:6;;14834:5;;;;14791:49;;;;14834:5;;;;14791:49;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14791:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14791:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14791:49:0;14783:58;;;;;;;;-1:-1:-1;14868:4:0;;14347:533;-1:-1:-1;;;;;14347:533:0:o;18918:673::-;18986:7;19210:17;19268:18;19360:19;19449:22;19094:12;;19110:1;19094:17;19091:493;;;19134:43;;-1:-1:-1;19127:50:0;;19091:493;19230:23;19248:4;19230:17;:23::i;:::-;19210:43;-1:-1:-1;19289:56:0;19302:37;19210:43;5480:2;19302:12;:37::i;19289:56::-;19268:77;-1:-1:-1;19382:52:0;19395:33;19408:9;5565:1;19395:12;:33::i;19382:52::-;19360:74;;19474:62;19487:35;19500:9;19511:10;19487:12;:35::i;19474:62::-;19449:87;;19558:14;19551:21;;19091:493;18918:673;;;;;:::o;6150:40::-;;;;:::o;5832:87::-;5877:42;5832:87;:::o;21780:166::-;21854:7;21881:57;21894:21;;21917:20;;21881:12;:57::i;:::-;21874:64;;21780:166;:::o;17939:307::-;18035:7;18087:10;18115:21;:122;;18208:29;18220:16;18208:11;:29::i;:::-;18115:122;;;-1:-1:-1;;;;;18171:34:0;;;;;;:16;:34;;;;;;18139:29;18188:16;18139:11;:29::i;:::-;:66;18115:122;18108:129;;17939:307;;;;;:::o;17009:128::-;17117:4;:12;17009:128;:::o;18330:169::-;-1:-1:-1;;;;;18454:37:0;18422:7;18454:37;;;:19;:37;;;;;;;18330:169::o;6977:46::-;;;;;;;;;;;;;;;:::o;6013:36::-;;;;:::o;16032:161::-;2877:10;2850:24;2906:32;;;:14;:32;;;;;;;;2898:41;;;;;;;;-1:-1:-1;16149:18:0;:36;16032:161::o;19670:673::-;19737:7;19961:17;20019:18;20111:19;20200:22;19845:12;;19861:1;19845:17;19842:494;;;19885:43;;-1:-1:-1;19878:50:0;;19842:494;19981:23;19999:4;19981:17;:23::i;:::-;19961:43;-1:-1:-1;20040:56:0;20053:37;19961:43;5480:2;20053:12;:37::i;20040:56::-;20019:77;-1:-1:-1;20133:52:0;20146:33;20159:9;5565:1;20146:12;:33::i;20133:52::-;20111:74;;20226:62;20239:35;20252:9;20263:10;20239:12;:35::i;:::-;20276:11;20226:12;:62::i;15761:167::-;2877:10;2850:24;2906:32;;;:14;:32;;;;;;;;2898:41;;;;;;;;-1:-1:-1;;;;;;15883:27:0;;;;;;;;:14;:27;;;;;:37;;-1:-1:-1;;15883:37:0;;;;;;;;;;15761:167::o;8796:389::-;8839:16;8858:57;8871:21;;8894:20;;8858:12;:57::i;:::-;8839:76;-1:-1:-1;8943:1:0;8932:12;;8924:21;;;;;;8977:44;8990:20;;9012:8;8977:12;:44::i;:::-;8954:20;:67;9034:53;;5877:42;;9078:6;;9064:8;;9034:53;;;;9064:8;5877:42;9078:6;9034:53;;;;;;9033:54;9030:148;;;9124:44;9137:20;;9159:8;9124:12;:44::i;:::-;9101:20;:67;9030:148;8796:389;:::o;17401:182::-;17468:7;17520:10;17548:27;17520:10;17548:9;:27::i;:::-;17541:34;;17401:182;;;:::o;5364:28::-;;;;;;;;;;;;;;-1:-1:-1;;5364:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5926:35;;;;:::o;15550:123::-;2877:10;2850:24;2906:32;;;:14;:32;;;;;;;;2898:41;;;;;;;;-1:-1:-1;15642:15:0;:23;;-1:-1:-1;;15642:23:0;;;15550:123::o;12875:1147::-;12997:4;13037:24;2182:1;2169:10;:8;:10::i;:::-;:14;2161:23;;;;;;-1:-1:-1;13064:10:0;13276:37;;;;:19;:37;;;;;;13257:56;;;13249:65;;;;;;13403:1;13383:17;13395:4;13383:11;:17::i;:::-;:21;13380:36;;;13406:10;:8;:10::i;:::-;-1:-1:-1;;;;;13510:37:0;;;;;;:19;:37;;;;;;13497:68;;13549:15;13497:12;:68::i;:::-;-1:-1:-1;;;;;13457:37:0;;;;;;;:19;:37;;;;;;:108;;;;13623:31;;;;;;;13610:62;;13656:15;13610:12;:62::i;:::-;-1:-1:-1;;;;;13576:31:0;;;;;;;:19;:31;;;;;;;;:96;;;;13764:15;;;13722:28;;;;;;:10;:28;;;;;:76;;13764:33;;;13722:76;;;;;;13845:15;13809:22;;;;;;;:70;;13845:33;;;13809:70;;;;;;13917:55;;;;;;;13576:31;;13917:55;;;;;;;;;;;14010:4;14003:11;;2195:1;12875:1147;;;;;:::o;16697:120::-;2877:10;2850:24;2906:32;;;:14;:32;;;;;;;;2898:41;;;;;;;;16793:16;;;;:6;;:16;;;;;:::i;:::-;;16697:120;;:::o;16520:112::-;2877:10;2850:24;2906:32;;;:14;:32;;;;;;;;2898:41;;;;;;;;16612:12;;;;:4;;:12;;;;;:::i;11161:1588::-;11281:24;11438:15;11482:17;11541:18;11629:19;11768:22;12252;2182:1;2169:10;:8;:10::i;:::-;:14;2161:23;;;;;;11308:10;11389:37;;;;:19;:37;;;;;;11308:10;;-1:-1:-1;11370:56:0;;;11362:65;;;;;;11456:15;11438:33;;11502:26;11520:7;11502:17;:26::i;:::-;11482:46;-1:-1:-1;11562:56:0;11575:37;11482:46;5480:2;11575:12;:37::i;11562:56::-;11541:77;-1:-1:-1;11651:52:0;11664:33;11677:9;5565:1;11664:12;:33::i;11651:52::-;11629:74;;11794:62;11807:35;11820:9;11831:10;11807:12;:35::i;11794:62::-;11768:88;;11947:48;11960:21;;11983:11;11947:12;:48::i;:::-;11923:21;:72;12069:12;;12056:35;;12083:7;12056:12;:35::i;:::-;12041:12;:50;-1:-1:-1;;;;;12155:37:0;;;;;;:19;:37;;;;;;12142:60;;12194:7;12142:12;:60::i;:::-;-1:-1:-1;;;;;12102:37:0;;;;;;:19;:37;;;;;;;;:100;;;;12287:15;;12355:10;:28;;;;;;:47;;12287:25;;;5794:5;12316:26;;12287:56;12355:47;;;;;;12462:12;;12287:56;;-1:-1:-1;;12458:194:0;;;12570:70;12583:15;;12627:12;;5794:5;12601:10;:22;12600:39;;;;;;;;12570:12;:70::i;:::-;12552:15;:88;12458:194;12687:54;;;;;;;;;;;;;;-1:-1:-1;;;;;12687:54:0;;;;;;;;;;;11161:1588;;;;;;;;:::o;10066:312::-;10196:10;10169:24;10235:37;;;:19;:37;;;;;;;10286:11;;10283:29;;;10299:13;10304:7;10299:4;:13::i;:::-;10360:10;:8;:10::i;:::-;10066:312;;:::o;8144:209::-;8228:7;8286:9;8271:11;:24;;8263:33;;;;;;8307:38;8322:9;8333:11;8307:14;:38::i;9265:735::-;9372:18;9509:24;9854:15;2311:1;2291:17;2303:4;2291:11;:17::i;:::-;:21;2283:30;;;;;;9393:18;9405:5;9393:11;:18::i;:::-;9536:10;9557:28;;;;:10;:28;;;;;;;;:66;;5794:5;9600:22;;9557:66;;;9682:16;:34;;;;;;;9727:38;;;;9668:48;;;;-1:-1:-1;9536:10:0;-1:-1:-1;9872:31:0;;9668:48;;9872:14;:31::i;:::-;9854:49;;9954:16;-1:-1:-1;;;;;9939:53:0;;9972:10;9984:7;9939:53;;;;;;;;;;;;;;;;;;;;;;;;9265:735;;;:::o;30130:147::-;30188:7;30220:5;;;30243:6;;;;30236:14;;;;30268:1;30130:147;-1:-1:-1;;;30130:147:0:o;29215:208::-;29273:7;;29297:6;;29293:47;;;29327:1;29320:8;;;;29293:47;-1:-1:-1;29362:5:0;;;29366:1;29362;:5;29385;;;;;;;;:10;29378:18;;;29518:288;29576:7;29675:9;29691:1;29687;:5;;;;;;;;;29518:288;-1:-1:-1;;;;29518:288:0:o;29932:123::-;29990:7;30017:6;;;;30010:14;;;;-1:-1:-1;30042:5:0;;;29932:123::o;26755:973::-;27662:12;;26850:7;;26904:25;;26850:7;;5732:17;27054:555;27090:457;27236:52;;;27461:1;27382:15;;26925:4;27351:47;27151:248;27461:45;:58;;27151:369;27152:21;27151:369;27090:4;:457::i;:::-;27572:18;27054:12;:555::i;:::-;26991:658;;;;;;;;26976:699;;26755:973;-1:-1:-1;;;;26755:973:0:o;27991:722::-;28180:12;;28084:7;;28140:4;28130:14;;;;28180:19;;;28084:7;;28300:357;28381:147;28459:17;;;5732;28433:44;28381:147;28354:214;;28641:1;28140:4;-1:-1:-1;;28614:10:0;;;:18;;;;28613:25;5732:17;28589:50;28588:54;;;;;;;;28300:12;:357::i;:::-;:372;;;;;;;;;27991:722;-1:-1:-1;;;;;27991:722:0:o;15087:266::-;15148:16;15298:18;;15334:10;;15087:266::o;28817:198::-;28891:5;28900:1;28895;28891:5;;28890:11;28928:80;28939:1;28935;:5;28928:80;;;28961:1;28957:5;;28995:1;28990;28986;28982;:5;;;;;;;;:9;28981:15;;;;;;;;28977:19;;28928:80;;1941:27077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1941:27077:0;;;;-1:-1:-1;1941:27077:0;;;;;;;;;;;;;;

Swarm Source

bzzr://5a4b413c113d5828198ffbf4fdd6dfddb88d7137f74dbf56164a9c5e04f3417e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.