ETH Price: $1,800.09 (-1.18%)

Contract

0x6aDF75F1A6627AddC158808476F6D9DE06a96eEF
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Make Daily Profi...91262932019-12-18 15:50:231933 days ago1576684223IN
0x6aDF75F1...E06a96eEF
0 ETH0.0008523913
Make Daily Profi...91262932019-12-18 15:50:231933 days ago1576684223IN
0x6aDF75F1...E06a96eEF
0 ETH0.0008523913
Make Daily Profi...91259522019-12-18 14:15:251933 days ago1576678525IN
0x6aDF75F1...E06a96eEF
0 ETH0.001049116
Make Daily Profi...91259472019-12-18 14:13:461933 days ago1576678426IN
0x6aDF75F1...E06a96eEF
0 ETH0.0016535517.6
Make Daily Profi...91235002019-12-18 2:34:121934 days ago1576636452IN
0x6aDF75F1...E06a96eEF
0 ETH0.001990295
Make Daily Profi...91234572019-12-18 2:20:281934 days ago1576635628IN
0x6aDF75F1...E06a96eEF
0 ETH0.015200965
Make Daily Profi...91234322019-12-18 2:15:461934 days ago1576635346IN
0x6aDF75F1...E06a96eEF
0 ETH0.014488145
Make Daily Profi...91233172019-12-18 1:35:521934 days ago1576632952IN
0x6aDF75F1...E06a96eEF
0 ETH0.014337075
Transfer Profit ...91215422019-12-17 17:01:551934 days ago1576602115IN
0x6aDF75F1...E06a96eEF
0 ETH0.000508115
Make Daily Profi...91184262019-12-17 2:04:331935 days ago1576548273IN
0x6aDF75F1...E06a96eEF
0 ETH0.001102225
Make Daily Profi...91182382019-12-17 1:15:281935 days ago1576545328IN
0x6aDF75F1...E06a96eEF
0 ETH0.014987675
Transfer Profit ...91182362019-12-17 1:14:411935 days ago1576545281IN
0x6aDF75F1...E06a96eEF
0 ETH0.00067768
Make Daily Profi...91181872019-12-17 0:59:531935 days ago1576544393IN
0x6aDF75F1...E06a96eEF
0 ETH0.014630945
Make Daily Profi...91181642019-12-17 0:53:101935 days ago1576543990IN
0x6aDF75F1...E06a96eEF
0 ETH0.014841455
Transfer Profit ...91168562019-12-16 18:38:451935 days ago1576521525IN
0x6aDF75F1...E06a96eEF
0 ETH0.0003580610
Transfer Profit ...91168542019-12-16 18:38:181935 days ago1576521498IN
0x6aDF75F1...E06a96eEF
0 ETH0.0008470110
Transfer Profit ...91147292019-12-16 8:41:011935 days ago1576485661IN
0x6aDF75F1...E06a96eEF
0 ETH0.00042355
Transfer Profit ...91138542019-12-16 4:34:301936 days ago1576470870IN
0x6aDF75F1...E06a96eEF
0 ETH0.0008312610
Transfer Profit ...91138472019-12-16 4:32:321936 days ago1576470752IN
0x6aDF75F1...E06a96eEF
0 ETH0.0009812610
Transfer Profit ...91137042019-12-16 3:52:471936 days ago1576468367IN
0x6aDF75F1...E06a96eEF
0 ETH0.0008277910
Make Daily Profi...91136672019-12-16 3:43:341936 days ago1576467814IN
0x6aDF75F1...E06a96eEF
0 ETH0.014973135
Make Daily Profi...91136622019-12-16 3:42:161936 days ago1576467736IN
0x6aDF75F1...E06a96eEF
0 ETH0.014765415
Make Daily Profi...91136562019-12-16 3:40:331936 days ago1576467633IN
0x6aDF75F1...E06a96eEF
0 ETH0.014477345
Transfer Profit ...91096642019-12-15 8:53:301936 days ago1576400010IN
0x6aDF75F1...E06a96eEF
0 ETH0.000662138
Transfer Profit ...91096252019-12-15 8:37:411936 days ago1576399061IN
0x6aDF75F1...E06a96eEF
0 ETH0.000093171.1
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Wallet

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-05
*/

/**
 *Submitted for verification at Etherscan.io on 2019-06-24
*/

pragma solidity 0.4.25;

contract Auth {

    address internal mainAdmin;
    address internal contractAdmin;

    event OwnershipTransferred(address indexed _previousOwner, address indexed _newOwner);

    constructor(
        address _mainAdmin,
        address _contractAdmin
    )
    internal
    {
        mainAdmin = _mainAdmin;
        contractAdmin = _contractAdmin;
    }

    modifier onlyAdmin() {
        require(isMainAdmin() || isContractAdmin(), "onlyAdmin");
        _;
    }

    modifier onlyMainAdmin() {
        require(isMainAdmin(), "onlyMainAdmin");
        _;
    }

    modifier onlyContractAdmin() {
        require(isContractAdmin(), "onlyContractAdmin");
        _;
    }

    function transferOwnership(address _newOwner) onlyContractAdmin internal {
        require(_newOwner != address(0x0));
        contractAdmin = _newOwner;
        emit OwnershipTransferred(msg.sender, _newOwner);
    }

    function isMainAdmin() public view returns (bool) {
        return msg.sender == mainAdmin;
    }

    function isContractAdmin() public view returns (bool) {
        return msg.sender == contractAdmin;
    }
}

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error.
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

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

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

interface ICitizen {

    function addF1DepositedToInviter(address _invitee, uint _amount) external;

    function addNetworkDepositedToInviter(address _inviter, uint _amount, uint _source, uint _sourceAmount) external;

    function checkInvestorsInTheSameReferralTree(address _inviter, address _invitee) external view returns (bool);

    function getF1Deposited(address _investor) external view returns (uint);

    function getId(address _investor) external view returns (uint);

    function getInvestorCount() external view returns (uint);

    function getInviter(address _investor) external view returns (address);

    function getDirectlyInvitee(address _investor) external view returns (address[]);

    function getDirectlyInviteeHaveJoinedPackage(address _investor) external view returns (address[]);

    function getNetworkDeposited(address _investor) external view returns (uint);

    function getRank(address _investor) external view returns (uint);

    function getRankBonus(uint _index) external view returns (uint);

    function getUserAddresses(uint _index) external view returns (address);

    function getSubscribers(address _investor) external view returns (uint);

    function increaseInviterF1HaveJoinedPackage(address _invitee) external;

    function isCitizen(address _user) view external returns (bool);

    function register(address _user, string _userName, address _inviter) external returns (uint);

    function showInvestorInfo(address _investorAddress) external view returns (uint, string memory, address, address[], uint, uint, uint, uint);
}

interface IReserveFund {

    function getLockedStatus(address _investor) view external returns (uint8);

    function getTransferDifficulty() view external returns (uint);
}

contract Wallet is Auth {
    using SafeMath for uint;

    struct Balance {
        // NOTE: balance is counted in mili-dollar (1/1000 dollar)
        uint totalDeposited; // Treasury package
        uint[] deposited;
        uint profitableBalance; // Regular wallet
        uint profitSourceBalance; // Prime wallet
        uint profitBalance; // Mining wallet
        uint totalProfited;
        uint amountToMineToken;
        uint ethWithdrew;
    }

    IReserveFund private reserveFundContract;
    ICitizen private citizen;

    uint public ethWithdrew;
    uint private profitPaid;
    uint private f11RewardCondition = 200000000; // 200k

    mapping(address => Balance) private userWallets;

    modifier onlyReserveFundContract() {
        require(msg.sender == address(reserveFundContract), "onlyReserveFundContract");
        _;
    }

    modifier onlyCitizenContract() {
        require(msg.sender == address(citizen), "onlyCitizenContract");
        _;
    }

    event ProfitBalanceTransferred(address from, address to, uint amount);
    event RankBonusSent(address investor, uint rank, uint amount);
    // source: 0-eth 1-token 2-usdt
    event ProfitSourceBalanceChanged(address investor, int amount, address from, uint8 source);
    event ProfitableBalanceChanged(address investor, int amount, address from, uint8 source);
    // source: 0-profit paid 1-active user
    event ProfitBalanceChanged(address from, address to, int amount, uint8 source);

    constructor (address _mainAdmin, address _citizen)
    Auth(_mainAdmin, msg.sender)
    public
    {
        citizen = ICitizen(_citizen);
    }

    // ONLY-MAIN-ADMIN-FUNCTIONS
    function getProfitPaid() onlyMainAdmin public view returns (uint) {
        return profitPaid;
    }

    // ONLY-CONTRACT-ADMIN FUNCTIONS

    function setSFUContract(address _reserveFundContract) onlyContractAdmin public {
        reserveFundContract = IReserveFund(_reserveFundContract);
    }

    function makeDailyProfit(address[] _userAddresses) onlyContractAdmin public {
        require(_userAddresses.length > 0, "Invalid input");
        uint investorCount = citizen.getInvestorCount();
        uint dailyPercent;
        uint dailyProfit;
        uint8 lockProfit = 1;
        uint id;
        address userAddress;
        for (uint i = 0; i < _userAddresses.length; i++) {
            id = citizen.getId(_userAddresses[i]);
            require(investorCount > id, "Invalid userId");
            userAddress = _userAddresses[i];
            if (reserveFundContract.getLockedStatus(userAddress) != lockProfit) {
                Balance storage balance = userWallets[userAddress];
                dailyPercent = (balance.totalProfited == 0 || balance.totalProfited < balance.totalDeposited) ? 5 : (balance.totalProfited < 4 * balance.totalDeposited) ? 4 : 3;
                dailyProfit = balance.profitableBalance.mul(dailyPercent).div(1000);

                balance.profitableBalance = balance.profitableBalance.sub(dailyProfit);
                balance.profitBalance = balance.profitBalance.add(dailyProfit);
                balance.totalProfited = balance.totalProfited.add(dailyProfit);
                profitPaid = profitPaid.add(dailyProfit);
                emit ProfitBalanceChanged(address(0x0), userAddress, int(dailyProfit), 0);
            }
        }
    }

    // ONLY-SFU-CONTRACT FUNCTIONS
    // _source: 0-eth 1-token 2-usdt
    function deposit(address _to, uint _deposited, uint8 _source, uint _sourceAmount) onlyReserveFundContract public {
        require(_to != address(0x0), "User address can not be empty");
        require(_deposited > 0, "Package value must be > 0");

        Balance storage balance = userWallets[_to];
        bool firstDeposit = balance.deposited.length == 0;
        balance.deposited.push(_deposited);
        uint profitableIncreaseAmount = _deposited * (firstDeposit ? 2 : 1);
        uint profitSourceIncreaseAmount = _deposited * 10;
        balance.totalDeposited = balance.totalDeposited.add(_deposited);
        balance.profitableBalance = balance.profitableBalance.add(profitableIncreaseAmount);
        balance.profitSourceBalance = balance.profitSourceBalance.add(profitSourceIncreaseAmount);
        if (_source == 2) {
            if (_to == tx.origin) {
                // self deposit
                balance.profitBalance = balance.profitBalance.sub(_deposited);
            } else {
                // deposit to another
                Balance storage senderBalance = userWallets[tx.origin];
                senderBalance.profitBalance = senderBalance.profitBalance.sub(_deposited);
            }
            emit ProfitBalanceChanged(tx.origin, _to, int(_deposited) * - 1, 1);
        }
        citizen.addF1DepositedToInviter(_to, _deposited);
        addRewardToInviters(_to, _deposited, _source, _sourceAmount);

        if (firstDeposit) {
            citizen.increaseInviterF1HaveJoinedPackage(_to);
        }

        if (profitableIncreaseAmount > 0) {
            emit ProfitableBalanceChanged(_to, int(profitableIncreaseAmount), _to, _source);
            emit ProfitSourceBalanceChanged(_to, int(profitSourceIncreaseAmount), _to, _source);
        }
    }


    function rewardForUserVip(address _to) onlyReserveFundContract public {
        require(_to != address(0x0), "User address can not be empty");

        uint treasury = 50000000;
        // 50k
        uint regular = 100000000;
        //100k
        uint prime = 500000000;
        // 500k

        Balance storage balance = userWallets[_to];
        bool firstDeposit = balance.deposited.length == 0;
        balance.deposited.push(treasury);
        balance.totalDeposited = balance.totalDeposited.add(treasury);
        balance.profitableBalance = balance.profitableBalance.add(regular);
        balance.profitSourceBalance = balance.profitSourceBalance.add(prime);

        emit ProfitableBalanceChanged(_to, int(regular), _to, 0);
        emit ProfitSourceBalanceChanged(_to, int(prime), _to, 0);

    }

    function bonusForAdminWhenUserBuyPackageViaDollar(uint _amount, address _admin) onlyReserveFundContract public {
        Balance storage adminBalance = userWallets[_admin];
        adminBalance.profitBalance = adminBalance.profitBalance.add(_amount);
    }

    function increaseETHWithdrew(uint _amount) onlyReserveFundContract public {
        ethWithdrew = ethWithdrew.add(_amount);
    }

    function mineToken(address _from, uint _amount) onlyReserveFundContract public {
        Balance storage userBalance = userWallets[_from];
        userBalance.profitBalance = userBalance.profitBalance.sub(_amount);
        userBalance.amountToMineToken = userBalance.amountToMineToken.add(_amount);
    }

    function validateCanMineToken(uint _tokenAmount, address _from) onlyReserveFundContract public view {
        Balance storage userBalance = userWallets[_from];
        require(userBalance.amountToMineToken.add(_tokenAmount) <= 4 * userBalance.totalDeposited, "You can only mine maximum 4x of your total deposited");
    }


    // ONLY-CITIZEN-CONTRACT FUNCTIONS

    function bonusNewRank(address _investorAddress, uint _currentRank, uint _newRank) onlyCitizenContract public {
        require(_newRank > _currentRank, "Invalid ranks");
        Balance storage balance = userWallets[_investorAddress];
        for (uint8 i = uint8(_currentRank) + 1; i <= uint8(_newRank); i++) {
            uint rankBonusAmount = citizen.getRankBonus(i);
            balance.profitBalance = balance.profitBalance.add(rankBonusAmount);
            if (rankBonusAmount > 0) {
                emit RankBonusSent(_investorAddress, i, rankBonusAmount);
            }
        }
    }

    // PUBLIC FUNCTIONS

    function getUserWallet(address _investor)
    public
    view
    returns (uint, uint[], uint, uint, uint, uint, uint)
    {
        if (msg.sender != address(reserveFundContract) && msg.sender != contractAdmin && msg.sender != mainAdmin) {
            require(_investor != mainAdmin, "You can not see admin account");
        }
        Balance storage balance = userWallets[_investor];
        return (
        balance.totalDeposited,
        balance.deposited,
        balance.profitableBalance,
        balance.profitSourceBalance,
        balance.profitBalance,
        balance.totalProfited,
        balance.ethWithdrew
        );
    }

    function getInvestorLastDeposited(address _investor) public view returns (uint) {
        return userWallets[_investor].deposited.length == 0 ? 0 : userWallets[_investor].deposited[userWallets[_investor].deposited.length - 1];
    }

    function transferProfitWallet(uint _amount, address _to) public {
        require(_amount >= reserveFundContract.getTransferDifficulty(), "Amount must be >= minimumTransferProfitBalance");
        Balance storage senderBalance = userWallets[msg.sender];
        require(citizen.isCitizen(msg.sender), "Please register first");
        require(citizen.isCitizen(_to), "You can only transfer to an exists member");
        require(senderBalance.profitBalance >= _amount, "You have not enough balance");
        bool inTheSameTree = citizen.checkInvestorsInTheSameReferralTree(msg.sender, _to);
        require(inTheSameTree, "This user isn't in your referral tree");
        Balance storage receiverBalance = userWallets[_to];
        senderBalance.profitBalance = senderBalance.profitBalance.sub(_amount);
        receiverBalance.profitBalance = receiverBalance.profitBalance.add(_amount);
        emit ProfitBalanceTransferred(msg.sender, _to, _amount);
    }

    function getProfitBalance(address _investor) public view returns (uint) {
        return userWallets[_investor].profitBalance;
    }

    // PRIVATE FUNCTIONS

    function addRewardToInviters(address _invitee, uint _amount, uint8 _source, uint _sourceAmount) private {
        address inviter;
        uint16 referralLevel = 1;
        do {
            inviter = citizen.getInviter(_invitee);
            if (inviter != address(0x0)) {
                citizen.addNetworkDepositedToInviter(inviter, _amount, _source, _sourceAmount);
                checkAddReward(_invitee, inviter, referralLevel, _source, _amount);
                _invitee = inviter;
                referralLevel += 1;
            }
        }
        while (inviter != address(0x0));
    }

    function checkAddReward(address _invitee, address _inviter, uint16 _referralLevel, uint8 _source, uint _amount) private {
        if (_referralLevel == 1) {
            moveBalanceForInvitingSuccessful(_invitee, _inviter, _referralLevel, _source, _amount);
        } else if (_referralLevel > 1 && _referralLevel < 11) {
            moveBalanceForInvitingSuccessful(_invitee, _inviter, _referralLevel, _source, _amount);
        } else {
            bool condition1 = userWallets[_inviter].totalDeposited > f11RewardCondition;
            bool condition2 = citizen.getDirectlyInvitee(_inviter).length >= 3;
            bool condition3 = false;
            uint[] memory networkDeposited = calculateNetworkDeposit(_inviter);
            if (networkDeposited.length >= 3) {
                uint total = 0;
                for (uint i = 2; i < networkDeposited.length - 1; i++) {
                    total.add(networkDeposited[i]);
                }
                condition3 = total > 40000000;
            }
            if (condition1 && condition2 && condition3) {
                moveBalanceForInvitingSuccessful(_invitee, _inviter, _referralLevel, _source, _amount);
            }
        }
    }

    function moveBalanceForInvitingSuccessful(address _invitee, address _inviter, uint16 _referralLevel, uint8 _source, uint _amount) private {
        uint willMoveAmount = 0;
        uint f1Deposited = citizen.getF1Deposited(_inviter);
        uint directlyInviteeCount = citizen.getDirectlyInviteeHaveJoinedPackage(_inviter).length;
        bool condition1 = userWallets[_inviter].deposited.length > 0 ? f1Deposited >= userWallets[_inviter].deposited[0] * 3 : false;
        bool condition2 = directlyInviteeCount >= _referralLevel;
        Balance storage balance = userWallets[_inviter];
        if (_referralLevel == 1) {
            willMoveAmount = (_amount * 50) / 100;
            uint reward = (_amount * 3) / 100;
            balance.profitBalance = balance.profitBalance.add(reward);
            emit ProfitBalanceChanged(_invitee, _inviter, int(reward), 1);
        } else if (_referralLevel == 2) {
            willMoveAmount = (_amount * 20) / 100;
            if (condition1 && condition2) {
                willMoveAmount.add((_amount * 20) / 100);
            }
        } else if (_referralLevel == 3) {
            willMoveAmount = (_amount * 15) / 100;
            if (condition1 && condition2) {
                willMoveAmount.add((_amount * 15) / 100);
            }
        } else if (_referralLevel == 4 || _referralLevel == 5) {
            willMoveAmount = (_amount * 10) / 100;
            if (condition1 && condition2) {
                willMoveAmount.add((_amount * 10) / 100);
            }
        } else if (_referralLevel >= 6 || _referralLevel <= 10) {
            willMoveAmount = (_amount * 5) / 100;
            if (condition1 && condition2) {
                willMoveAmount.add((_amount * 5) / 100);
            }
        } else {
            willMoveAmount = (_amount * 5) / 100;
        }
        if (balance.profitSourceBalance > willMoveAmount) {
            balance.profitableBalance = balance.profitableBalance.add(willMoveAmount);
            balance.profitSourceBalance = balance.profitSourceBalance.sub(willMoveAmount);
            if (willMoveAmount > 0) {
                emit ProfitableBalanceChanged(_inviter, int(willMoveAmount), _invitee, _source);
                emit ProfitSourceBalanceChanged(_inviter, int(willMoveAmount) * - 1, _invitee, _source);
            }
        } else {
            if (balance.profitSourceBalance > 0) {
                emit ProfitableBalanceChanged(_inviter, int(balance.profitSourceBalance), _invitee, _source);
                emit ProfitSourceBalanceChanged(_inviter, int(balance.profitSourceBalance) * - 1, _invitee, _source);
            }
            balance.profitableBalance = balance.profitableBalance.add(balance.profitSourceBalance);
            balance.profitSourceBalance = 0;
        }
    }

    function calculateNetworkDeposit(address _investor) public view returns (uint[]){
        uint directlyInviteeCount = citizen.getDirectlyInviteeHaveJoinedPackage(_investor).length;
        uint[] memory deposits = new uint[](directlyInviteeCount);
        for (uint i = 0; i < directlyInviteeCount; i++) {
            address _f1 = citizen.getDirectlyInviteeHaveJoinedPackage(_investor)[i];
            uint totalDeposited = userWallets[_f1].totalDeposited;
            uint deposit = calculateNetworkDepositEachBranch(_f1, totalDeposited);
            deposits[i] = deposit;
        }
        //  [5,2,1]
        deposits = sort_array(deposits);
        return deposits;
    }

    function calculateNetworkDepositEachBranch(address _investor, uint totalDeposited) public view returns (uint) {
        uint f1Deposited = citizen.getF1Deposited(_investor);
        totalDeposited = totalDeposited.add(f1Deposited);
        uint directlyInviteeCount = citizen.getDirectlyInviteeHaveJoinedPackage(_investor).length;
        for (uint i = 0; i < directlyInviteeCount; i++) {
            address _f1 = citizen.getDirectlyInviteeHaveJoinedPackage(_investor)[i];
            calculateNetworkDepositEachBranch(_f1, totalDeposited);
        }
        return totalDeposited;
    }

    function sort_array(uint[] arr_) public view returns (uint [])
    {
        uint l = arr_.length;
        uint[] memory arr = new uint[](l);
        for (uint i = 0; i < l; i++)
        {
            arr[i] = arr_[i];
        }
        for (i = 0; i < l; i++)
        {
            for (uint j = i + 1; j < l; j++)
            {
                if (arr[i] < arr[j])
                {
                    uint temp = arr[j];
                    arr[j] = arr[i];
                    arr[i] = temp;
                }
            }
        }
        return arr;
    }

}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"isMainAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_investor","type":"address"},{"name":"totalDeposited","type":"uint256"}],"name":"calculateNetworkDepositEachBranch","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mineToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_investorAddress","type":"address"},{"name":"_currentRank","type":"uint256"},{"name":"_newRank","type":"uint256"}],"name":"bonusNewRank","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenAmount","type":"uint256"},{"name":"_from","type":"address"}],"name":"validateCanMineToken","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_to","type":"address"}],"name":"transferProfitWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ethWithdrew","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_admin","type":"address"}],"name":"bonusForAdminWhenUserBuyPackageViaDollar","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_reserveFundContract","type":"address"}],"name":"setSFUContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_investor","type":"address"}],"name":"getInvestorLastDeposited","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_investor","type":"address"}],"name":"calculateNetworkDeposit","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_userAddresses","type":"address[]"}],"name":"makeDailyProfit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_investor","type":"address"}],"name":"getUserWallet","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256[]"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_investor","type":"address"}],"name":"getProfitBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"rewardForUserVip","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"increaseETHWithdrew","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getProfitPaid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isContractAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"arr_","type":"uint256[]"}],"name":"sort_array","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_deposited","type":"uint256"},{"name":"_source","type":"uint8"},{"name":"_sourceAmount","type":"uint256"}],"name":"deposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_mainAdmin","type":"address"},{"name":"_citizen","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"ProfitBalanceTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"investor","type":"address"},{"indexed":false,"name":"rank","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"RankBonusSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"investor","type":"address"},{"indexed":false,"name":"amount","type":"int256"},{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"source","type":"uint8"}],"name":"ProfitSourceBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"investor","type":"address"},{"indexed":false,"name":"amount","type":"int256"},{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"source","type":"uint8"}],"name":"ProfitableBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"int256"},{"indexed":false,"name":"source","type":"uint8"}],"name":"ProfitBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_previousOwner","type":"address"},{"indexed":true,"name":"_newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

6080604052630bebc20060065534801561001857600080fd5b50604051604080612cc183398101604052805160209091015160008054600160a060020a03938416600160a060020a0319918216179091556001805482163317905560038054939092169216919091179055612c48806100796000396000f3006080604052600436106100f85763ffffffff60e060020a6000350416631168222b81146100fd57806319b582701461012657806323e85bfb1461015c5780633164eed5146101825780633296c7d6146101a957806337c5fef4146101cd57806343cc683e146101f15780635e5205fe146102065780637c64eb471461022a5780639042bb1e1461024b5780639a7ce9221461026c5780639abcc356146102dd5780639ad5479314610332578063bb1937c0146103d1578063c5a73dec146103f2578063c61d04a114610413578063c816a4351461042b578063d3184e8014610440578063efcaaebe14610455578063f1f89e92146104aa575b600080fd5b34801561010957600080fd5b506101126104d7565b604080519115158252519081900360200190f35b34801561013257600080fd5b5061014a600160a060020a03600435166024356104e8565b60408051918252519081900360200190f35b34801561016857600080fd5b50610180600160a060020a036004351660243561079d565b005b34801561018e57600080fd5b50610180600160a060020a0360043516602435604435610842565b3480156101b557600080fd5b50610180600435600160a060020a0360243516610a4a565b3480156101d957600080fd5b50610180600435600160a060020a0360243516610b54565b3480156101fd57600080fd5b5061014a611071565b34801561021257600080fd5b50610180600435600160a060020a0360243516611077565b34801561023657600080fd5b50610180600160a060020a0360043516611102565b34801561025757600080fd5b5061014a600160a060020a036004351661118f565b34801561027857600080fd5b5061028d600160a060020a03600435166111f4565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102c95781810151838201526020016102b1565b505050509050019250505060405180910390f35b3480156102e957600080fd5b5060408051602060048035808201358381028086018501909652808552610180953695939460249493850192918291850190849080828437509497506114769650505050505050565b34801561033e57600080fd5b50610353600160a060020a03600435166118d6565b6040518088815260200180602001878152602001868152602001858152602001848152602001838152602001828103825288818151815260200191508051906020019060200280838360005b838110156103b757818101518382015260200161039f565b505050509050019850505050505050505060405180910390f35b3480156103dd57600080fd5b5061014a600160a060020a0360043516611a45565b3480156103fe57600080fd5b50610180600160a060020a0360043516611a63565b34801561041f57600080fd5b50610180600435611c35565b34801561043757600080fd5b5061014a611c9e565b34801561044c57600080fd5b50610112611d05565b34801561046157600080fd5b506040805160206004803580820135838102808601850190965280855261028d95369593946024949385019291829185019084908082843750949750611d169650505050505050565b3480156104b657600080fd5b50610180600160a060020a036004351660243560ff60443516606435611e72565b600054600160a060020a0316331490565b600354604080517f35bab2c9000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151600093849384938493849392909216916335bab2c99160248082019260209290919082900301818787803b15801561055b57600080fd5b505af115801561056f573d6000803e3d6000fd5b505050506040513d602081101561058557600080fd5b50519350610599868563ffffffff61228716565b6003546040805160e160020a6342e10507028152600160a060020a038b8116600483015291519399509116916385c20a0e9160248082019260009290919082900301818387803b1580156105ec57600080fd5b505af1158015610600573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561062957600080fd5b81019080805164010000000081111561064157600080fd5b8201602081018481111561065457600080fd5b815185602082028301116401000000008211171561067157600080fd5b5050519550600094505050505b82821015610792576003546040805160e160020a6342e10507028152600160a060020a038a81166004830152915191909216916385c20a0e91602480830192600092919082900301818387803b1580156106d757600080fd5b505af11580156106eb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561071457600080fd5b81019080805164010000000081111561072c57600080fd5b8201602081018481111561073f57600080fd5b815185602082028301116401000000008211171561075c57600080fd5b505080519093508592508210905061077057fe5b90602001906020020151905061078681876104e8565b5060019091019061067e565b509395945050505050565b600254600090600160a060020a031633146107f0576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b50600160a060020a0382166000908152600760205260409020600481015461081e908363ffffffff6122a416565b60048201556006810154610838908363ffffffff61228716565b6006909101555050565b60035460009081908190600160a060020a031633146108ab576040805160e560020a62461bcd02815260206004820152601360248201527f6f6e6c79436974697a656e436f6e747261637400000000000000000000000000604482015290519081900360640190fd5b848411610902576040805160e560020a62461bcd02815260206004820152600d60248201527f496e76616c69642072616e6b7300000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038616600090815260076020526040902092506001850191505b60ff80851690831611610a4257600354604080517f2ccee5ca00000000000000000000000000000000000000000000000000000000815260ff851660048201529051600160a060020a0390921691632ccee5ca916024808201926020929091908290030181600087803b15801561099957600080fd5b505af11580156109ad573d6000803e3d6000fd5b505050506040513d60208110156109c357600080fd5b505160048401549091506109dd908263ffffffff61228716565b60048401556000811115610a375760408051600160a060020a038816815260ff8416602082015280820183905290517f4f7e2e84b8214956c6b0332a99d4c210b5c0aade4a88b2f03443b8ba5863bd769181900360600190a15b600190910190610923565b505050505050565b600254600090600160a060020a03163314610a9d576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b50600160a060020a038116600090815260076020526040902080546006820154600490910290610ad3908563ffffffff61228716565b1115610b4f576040805160e560020a62461bcd02815260206004820152603460248201527f596f752063616e206f6e6c79206d696e65206d6178696d756d203478206f662060448201527f796f757220746f74616c206465706f7369746564000000000000000000000000606482015290519081900360840190fd5b505050565b6000806000600260009054906101000a9004600160a060020a0316600160a060020a03166350a4947b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015610bac57600080fd5b505af1158015610bc0573d6000803e3d6000fd5b505050506040513d6020811015610bd657600080fd5b5051851015610c55576040805160e560020a62461bcd02815260206004820152602e60248201527f416d6f756e74206d757374206265203e3d206d696e696d756d5472616e73666560448201527f7250726f66697442616c616e6365000000000000000000000000000000000000606482015290519081900360840190fd5b33600081815260076020908152604080832060035482517ff3caad0300000000000000000000000000000000000000000000000000000000815260048101969096529151909750600160a060020a039091169363f3caad039360248083019493928390030190829087803b158015610ccc57600080fd5b505af1158015610ce0573d6000803e3d6000fd5b505050506040513d6020811015610cf657600080fd5b50511515610d4e576040805160e560020a62461bcd02815260206004820152601560248201527f506c656173652072656769737465722066697273740000000000000000000000604482015290519081900360640190fd5b600354604080517ff3caad03000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301529151919092169163f3caad039160248083019260209291908290030181600087803b158015610db657600080fd5b505af1158015610dca573d6000803e3d6000fd5b505050506040513d6020811015610de057600080fd5b50511515610e5e576040805160e560020a62461bcd02815260206004820152602960248201527f596f752063616e206f6e6c79207472616e7366657220746f20616e206578697360448201527f7473206d656d6265720000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6004830154851115610eba576040805160e560020a62461bcd02815260206004820152601b60248201527f596f752068617665206e6f7420656e6f7567682062616c616e63650000000000604482015290519081900360640190fd5b600354604080517fda9c9ba7000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0387811660248301529151919092169163da9c9ba79160448083019260209291908290030181600087803b158015610f2857600080fd5b505af1158015610f3c573d6000803e3d6000fd5b505050506040513d6020811015610f5257600080fd5b50519150811515610fd3576040805160e560020a62461bcd02815260206004820152602560248201527f5468697320757365722069736e277420696e20796f757220726566657272616c60448201527f2074726565000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03831660009081526007602052604090206004830154611001908663ffffffff6122a416565b60048085019190915581015461101d908663ffffffff61228716565b600482015560408051338152600160a060020a038616602082015280820187905290517f4af963b3b3cf29b512e536c50cec80ec744b62d4e490fdfeba18a728bd25d7459181900360600190a15050505050565b60045481565b600254600090600160a060020a031633146110ca576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b50600160a060020a038116600090815260076020526040902060048101546110f8908463ffffffff61228716565b6004909101555050565b61110a611d05565b1515611160576040805160e560020a62461bcd02815260206004820152601160248201527f6f6e6c79436f6e747261637441646d696e000000000000000000000000000000604482015290519081900360640190fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038116600090815260076020526040812060010154156111eb57600160a060020a0382166000908152600760205260409020600101805460001981019081106111db57fe5b90600052602060002001546111ee565b60005b92915050565b6003546040805160e160020a6342e10507028152600160a060020a0384811660048301529151606093600093859385938493849384939116916385c20a0e91602480820192869290919082900301818387803b15801561125357600080fd5b505af1158015611267573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561129057600080fd5b8101908080516401000000008111156112a857600080fd5b820160208101848111156112bb57600080fd5b81518560208202830111640100000000821117156112d857600080fd5b50509291905050505195508560405190808252806020026020018201604052801561130d578160200160208202803883390190505b509450600093505b85841015611461576003546040805160e160020a6342e10507028152600160a060020a038b81166004830152915191909216916385c20a0e91602480830192600092919082900301818387803b15801561136e57600080fd5b505af1158015611382573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156113ab57600080fd5b8101908080516401000000008111156113c357600080fd5b820160208101848111156113d657600080fd5b81518560208202830111640100000000821117156113f357600080fd5b505080519093508792508210905061140757fe5b6020908102909101810151600160a060020a03811660009081526007909252604090912054909350915061143b83836104e8565b905080858581518110151561144c57fe5b60209081029091010152600190930192611315565b61146a85611d16565b98975050505050505050565b60008060008060008060008061148a611d05565b15156114e0576040805160e560020a62461bcd02815260206004820152601160248201527f6f6e6c79436f6e747261637441646d696e000000000000000000000000000000604482015290519081900360640190fd5b8851600010611539576040805160e560020a62461bcd02815260206004820152600d60248201527f496e76616c696420696e70757400000000000000000000000000000000000000604482015290519081900360640190fd5b600360009054906101000a9004600160a060020a0316600160a060020a031663960524e36040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561158c57600080fd5b505af11580156115a0573d6000803e3d6000fd5b505050506040513d60208110156115b657600080fd5b5051975060019450600091505b88518210156118cb576003548951600160a060020a03909116906365f68c89908b90859081106115ef57fe5b906020019060200201516040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561164457600080fd5b505af1158015611658573d6000803e3d6000fd5b505050506040513d602081101561166e57600080fd5b505193508388116116c9576040805160e560020a62461bcd02815260206004820152600e60248201527f496e76616c696420757365724964000000000000000000000000000000000000604482015290519081900360640190fd5b88828151811015156116d757fe5b6020908102909101810151600254604080517fed153dc5000000000000000000000000000000000000000000000000000000008152600160a060020a038085166004830152915193975060ff8a1694919092169263ed153dc59260248082019392918290030181600087803b15801561174f57600080fd5b505af1158015611763573d6000803e3d6000fd5b505050506040513d602081101561177957600080fd5b505160ff16146118c05750600160a060020a0382166000908152600760205260409020600581015415806117b1575080546005820154105b6117d65780600001546004028160050154106117ce5760036117d1565b60045b6117d9565b60055b60ff1696506118076103e86117fb8984600201546122bb90919063ffffffff16565b9063ffffffff6122e916565b600282015490965061181f908763ffffffff6122a416565b60028201556004810154611839908763ffffffff61228716565b60048201556005810154611853908763ffffffff61228716565b6005808301919091555461186d908763ffffffff61228716565b600555604080516000808252600160a060020a0386166020830152818301899052606082015290517fd7ad9f3bbe311e558c9f800f5f0852c789ea22555f15a4016530cce2bbbf28679181900360800190a15b6001909101906115c3565b505050505050505050565b600254600090606090829081908190819081908190600160a060020a0316331480159061190e5750600154600160a060020a03163314155b80156119255750600054600160a060020a03163314155b1561199057600054600160a060020a038a811691161415611990576040805160e560020a62461bcd02815260206004820152601d60248201527f596f752063616e206e6f74207365652061646d696e206163636f756e74000000604482015290519081900360640190fd5b600760008a600160a060020a0316600160a060020a0316815260200190815260200160002090508060000154816001018260020154836003015484600401548560050154866007015485805480602002602001604051908101604052809291908181526020018280548015611a2457602002820191906000526020600020905b815481526020019060010190808311611a10575b50505050509550975097509750975097509750975050919395979092949650565b600160a060020a031660009081526007602052604090206004015490565b6002546000908190819081908190600160a060020a03163314611abe576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b600160a060020a0386161515611b1e576040805160e560020a62461bcd02815260206004820152601d60248201527f5573657220616464726573732063616e206e6f7420626520656d707479000000604482015290519081900360640190fd5b505050600160a060020a038316600090815260076020908152604082206001808201805491820181558452919092206302faf08090820181905582549094506305f5e1009350631dcd650092911590611b7d908663ffffffff61228716565b82556002820154611b94908563ffffffff61228716565b60028301556003820154611bae908463ffffffff61228716565b600383015560408051600160a060020a0388168082526020820187905281830152600060608201529051600080516020612bfd8339815191529181900360800190a160408051600160a060020a0388168082526020820186905281830152600060608201529051600080516020612bbd8339815191529181900360800190a1505050505050565b600254600160a060020a03163314611c85576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b600454611c98908263ffffffff61228716565b60045550565b6000611ca86104d7565b1515611cfe576040805160e560020a62461bcd02815260206004820152600d60248201527f6f6e6c794d61696e41646d696e00000000000000000000000000000000000000604482015290519081900360640190fd5b5060055490565b600154600160a060020a0316331490565b60606000606060008060008651945084604051908082528060200260200182016040528015611d4f578160200160208202803883390190505b509350600092505b84831015611d9a578683815181101515611d6d57fe5b906020019060200201518484815181101515611d8557fe5b60209081029091010152600190920191611d57565b600092505b84831015611e67578260010191505b84821015611e5c578382815181101515611dc457fe5b906020019060200201518484815181101515611ddc57fe5b906020019060200201511015611e51578382815181101515611dfa57fe5b9060200190602002015190508383815181101515611e1457fe5b906020019060200201518483815181101515611e2c57fe5b6020908102909101015283518190859085908110611e4657fe5b602090810290910101525b600190910190611dae565b600190920191611d9f565b509195945050505050565b6002546000908190819081908190600160a060020a03163314611ecd576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b600160a060020a0389161515611f2d576040805160e560020a62461bcd02815260206004820152601d60248201527f5573657220616464726573732063616e206e6f7420626520656d707479000000604482015290519081900360640190fd5b60008811611f85576040805160e560020a62461bcd02815260206004820152601960248201527f5061636b6167652076616c7565206d757374206265203e203000000000000000604482015290519081900360640190fd5b600160a060020a0389166000908152600760209081526040822060018082018054918201815584529190922081018a905590955015935083611fc8576001611fcb565b60025b855460ff9190911689029350600a89029250611fed908963ffffffff61228716565b85556002850154612004908463ffffffff61228716565b6002860155600385015461201e908363ffffffff61228716565b6003860155600260ff881614156120dd57600160a060020a03891632141561205f576004850154612055908963ffffffff6122a416565b600486015561208a565b503260009081526007602052604090206004810154612084908963ffffffff6122a416565b60048201555b60408051328152600160a060020a038b16602082015260008a9003818301526001606082015290517fd7ad9f3bbe311e558c9f800f5f0852c789ea22555f15a4016530cce2bbbf28679181900360800190a15b600354604080517f5e91e9bf000000000000000000000000000000000000000000000000000000008152600160a060020a038c81166004830152602482018c905291519190921691635e91e9bf91604480830192600092919082900301818387803b15801561214b57600080fd5b505af115801561215f573d6000803e3d6000fd5b5050505061216f8989898961230c565b83156121f557600354604080517fbe396e14000000000000000000000000000000000000000000000000000000008152600160a060020a038c811660048301529151919092169163be396e1491602480830192600092919082900301818387803b1580156121dc57600080fd5b505af11580156121f0573d6000803e3d6000fd5b505050505b60008311156118cb5760408051600160a060020a038b16808252602082018690528183015260ff891660608201529051600080516020612bfd8339815191529181900360800190a160408051600160a060020a038b16808252602082018590528183015260ff891660608201529051600080516020612bbd8339815191529181900360800190a1505050505050505050565b60008282018381101561229957600080fd5b8091505b5092915050565b600080838311156122b457600080fd5b5050900390565b6000808315156122ce576000915061229d565b508282028284828115156122de57fe5b041461229957600080fd5b6000808083116122f857600080fd5b828481151561230357fe5b04949350505050565b600060015b600354604080517fd216ce6f000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301529151919092169163d216ce6f9160248083019260209291908290030181600087803b15801561237957600080fd5b505af115801561238d573d6000803e3d6000fd5b505050506040513d60208110156123a357600080fd5b50519150600160a060020a0382161561246257600354604080517f1d9b83c3000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820189905260ff881660448301526064820187905291519190921691631d9b83c391608480830192600092919082900301818387803b15801561243457600080fd5b505af1158015612448573d6000803e3d6000fd5b505050506124598683838789612476565b90945084906001015b600160a060020a03821615610a4257612311565b600080600060606000808861ffff166001141561249f5761249a8b8b8b8b8b612674565b612667565b60018961ffff161180156124b75750600b8961ffff16105b156124c95761249a8b8b8b8b8b612674565b600654600160a060020a03808c16600081815260076020526040808220546003805483517f852c630200000000000000000000000000000000000000000000000000000000815260048101969096529251969091119b509493169263852c630292602480820193929182900301818387803b15801561254757600080fd5b505af115801561255b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561258457600080fd5b81019080805164010000000081111561259c57600080fd5b820160208101848111156125af57600080fd5b81518560208202830111640100000000821117156125cc57600080fd5b50509291905050505110159450600093506125e68a6111f4565b92506003835110151561264257506000905060025b60018351038110156126385761262f838281518110151561261857fe5b60209081029091010151839063ffffffff61228716565b506001016125fb565b6302625a00821193505b85801561264c5750845b80156126555750835b15612667576126678b8b8b8b8b612674565b5050505050505050505050565b600354604080517f35bab2c9000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015291516000938493849384938493849384939116916335bab2c99160248082019260209290919082900301818787803b1580156126e957600080fd5b505af11580156126fd573d6000803e3d6000fd5b505050506040513d602081101561271357600080fd5b50516003546040805160e160020a6342e10507028152600160a060020a038f8116600483015291519399509116916385c20a0e9160248082019260009290919082900301818387803b15801561276857600080fd5b505af115801561277c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156127a557600080fd5b8101908080516401000000008111156127bd57600080fd5b820160208101848111156127d057600080fd5b81518560208202830111640100000000821117156127ed57600080fd5b505051600160a060020a038f1660009081526007602052604081206001015491995010925061282091505057600061285a565b600160a060020a038b1660009081526007602052604081206001018054909190811061284857fe5b90600052602060002001546003028610155b600160a060020a038c16600090815260076020526040902090945061ffff8b168087101594509092506001141561290d5750600481015460646032890281900497506003890204906128b2908263ffffffff61228716565b600483015560408051600160a060020a03808f1682528d1660208201528082018390526001606082015290517fd7ad9f3bbe311e558c9f800f5f0852c789ea22555f15a4016530cce2bbbf28679181900360800190a1612a15565b8961ffff16600214156129525760646014890204965083801561292d5750825b1561294d5761294b606460148a025b8991900463ffffffff61228716565b505b612a15565b8961ffff1660031415612985576064600f89020496508380156129725750825b1561294d5761294b6064600f8a0261293c565b8961ffff166004148061299c57508961ffff166005145b156129c7576064600a89020496508380156129b45750825b1561294d5761294b6064600a8a0261293c565b60068a61ffff161015806129e05750600a8a61ffff1611155b15612a0b576064600589020496508380156129f85750825b1561294d5761294b606460058a0261293c565b6064600589020496505b8682600301541115612ae9576002820154612a36908863ffffffff61228716565b60028301556003820154612a50908863ffffffff6122a416565b60038301556000871115612ae45760408051600160a060020a03808e168252602082018a90528e168183015260ff8b1660608201529051600080516020612bfd8339815191529181900360800190a160408051600160a060020a03808e16825260008a900360208301528e168183015260ff8b1660608201529051600080516020612bbd8339815191529181900360800190a15b612bae565b600082600301541115612b8857600382015460408051600160a060020a03808f1682526020820193909352918e168282015260ff8b16606083015251600080516020612bfd8339815191529181900360800190a1600382015460408051600160a060020a03808f1682526000939093036020820152918e168282015260ff8b16606083015251600080516020612bbd8339815191529181900360800190a15b60038201546002830154612ba19163ffffffff61228716565b6002830155600060038301555b50505050505050505050505056008f8efd5f85f04a7663637e3efa5ba6ec23433545ffd252daac0d2bbb429ef0ac6f6e6c795265736572766546756e64436f6e747261637400000000000000000087a7880a292f66f5339d90f3f9a3238e74926be09acb98c5caa60312c188af6aa165627a7a72305820f26386d88193d3e58617b692c62ff8cbab0456bac3773201f956bf4dee72f61200290000000000000000000000007f464a81db1c5eb975227b6953daf6b216fbc56100000000000000000000000015f3f85cd9d1855300ba344be07e3592aa1b1451

Deployed Bytecode

0x6080604052600436106100f85763ffffffff60e060020a6000350416631168222b81146100fd57806319b582701461012657806323e85bfb1461015c5780633164eed5146101825780633296c7d6146101a957806337c5fef4146101cd57806343cc683e146101f15780635e5205fe146102065780637c64eb471461022a5780639042bb1e1461024b5780639a7ce9221461026c5780639abcc356146102dd5780639ad5479314610332578063bb1937c0146103d1578063c5a73dec146103f2578063c61d04a114610413578063c816a4351461042b578063d3184e8014610440578063efcaaebe14610455578063f1f89e92146104aa575b600080fd5b34801561010957600080fd5b506101126104d7565b604080519115158252519081900360200190f35b34801561013257600080fd5b5061014a600160a060020a03600435166024356104e8565b60408051918252519081900360200190f35b34801561016857600080fd5b50610180600160a060020a036004351660243561079d565b005b34801561018e57600080fd5b50610180600160a060020a0360043516602435604435610842565b3480156101b557600080fd5b50610180600435600160a060020a0360243516610a4a565b3480156101d957600080fd5b50610180600435600160a060020a0360243516610b54565b3480156101fd57600080fd5b5061014a611071565b34801561021257600080fd5b50610180600435600160a060020a0360243516611077565b34801561023657600080fd5b50610180600160a060020a0360043516611102565b34801561025757600080fd5b5061014a600160a060020a036004351661118f565b34801561027857600080fd5b5061028d600160a060020a03600435166111f4565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102c95781810151838201526020016102b1565b505050509050019250505060405180910390f35b3480156102e957600080fd5b5060408051602060048035808201358381028086018501909652808552610180953695939460249493850192918291850190849080828437509497506114769650505050505050565b34801561033e57600080fd5b50610353600160a060020a03600435166118d6565b6040518088815260200180602001878152602001868152602001858152602001848152602001838152602001828103825288818151815260200191508051906020019060200280838360005b838110156103b757818101518382015260200161039f565b505050509050019850505050505050505060405180910390f35b3480156103dd57600080fd5b5061014a600160a060020a0360043516611a45565b3480156103fe57600080fd5b50610180600160a060020a0360043516611a63565b34801561041f57600080fd5b50610180600435611c35565b34801561043757600080fd5b5061014a611c9e565b34801561044c57600080fd5b50610112611d05565b34801561046157600080fd5b506040805160206004803580820135838102808601850190965280855261028d95369593946024949385019291829185019084908082843750949750611d169650505050505050565b3480156104b657600080fd5b50610180600160a060020a036004351660243560ff60443516606435611e72565b600054600160a060020a0316331490565b600354604080517f35bab2c9000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151600093849384938493849392909216916335bab2c99160248082019260209290919082900301818787803b15801561055b57600080fd5b505af115801561056f573d6000803e3d6000fd5b505050506040513d602081101561058557600080fd5b50519350610599868563ffffffff61228716565b6003546040805160e160020a6342e10507028152600160a060020a038b8116600483015291519399509116916385c20a0e9160248082019260009290919082900301818387803b1580156105ec57600080fd5b505af1158015610600573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561062957600080fd5b81019080805164010000000081111561064157600080fd5b8201602081018481111561065457600080fd5b815185602082028301116401000000008211171561067157600080fd5b5050519550600094505050505b82821015610792576003546040805160e160020a6342e10507028152600160a060020a038a81166004830152915191909216916385c20a0e91602480830192600092919082900301818387803b1580156106d757600080fd5b505af11580156106eb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561071457600080fd5b81019080805164010000000081111561072c57600080fd5b8201602081018481111561073f57600080fd5b815185602082028301116401000000008211171561075c57600080fd5b505080519093508592508210905061077057fe5b90602001906020020151905061078681876104e8565b5060019091019061067e565b509395945050505050565b600254600090600160a060020a031633146107f0576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b50600160a060020a0382166000908152600760205260409020600481015461081e908363ffffffff6122a416565b60048201556006810154610838908363ffffffff61228716565b6006909101555050565b60035460009081908190600160a060020a031633146108ab576040805160e560020a62461bcd02815260206004820152601360248201527f6f6e6c79436974697a656e436f6e747261637400000000000000000000000000604482015290519081900360640190fd5b848411610902576040805160e560020a62461bcd02815260206004820152600d60248201527f496e76616c69642072616e6b7300000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038616600090815260076020526040902092506001850191505b60ff80851690831611610a4257600354604080517f2ccee5ca00000000000000000000000000000000000000000000000000000000815260ff851660048201529051600160a060020a0390921691632ccee5ca916024808201926020929091908290030181600087803b15801561099957600080fd5b505af11580156109ad573d6000803e3d6000fd5b505050506040513d60208110156109c357600080fd5b505160048401549091506109dd908263ffffffff61228716565b60048401556000811115610a375760408051600160a060020a038816815260ff8416602082015280820183905290517f4f7e2e84b8214956c6b0332a99d4c210b5c0aade4a88b2f03443b8ba5863bd769181900360600190a15b600190910190610923565b505050505050565b600254600090600160a060020a03163314610a9d576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b50600160a060020a038116600090815260076020526040902080546006820154600490910290610ad3908563ffffffff61228716565b1115610b4f576040805160e560020a62461bcd02815260206004820152603460248201527f596f752063616e206f6e6c79206d696e65206d6178696d756d203478206f662060448201527f796f757220746f74616c206465706f7369746564000000000000000000000000606482015290519081900360840190fd5b505050565b6000806000600260009054906101000a9004600160a060020a0316600160a060020a03166350a4947b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015610bac57600080fd5b505af1158015610bc0573d6000803e3d6000fd5b505050506040513d6020811015610bd657600080fd5b5051851015610c55576040805160e560020a62461bcd02815260206004820152602e60248201527f416d6f756e74206d757374206265203e3d206d696e696d756d5472616e73666560448201527f7250726f66697442616c616e6365000000000000000000000000000000000000606482015290519081900360840190fd5b33600081815260076020908152604080832060035482517ff3caad0300000000000000000000000000000000000000000000000000000000815260048101969096529151909750600160a060020a039091169363f3caad039360248083019493928390030190829087803b158015610ccc57600080fd5b505af1158015610ce0573d6000803e3d6000fd5b505050506040513d6020811015610cf657600080fd5b50511515610d4e576040805160e560020a62461bcd02815260206004820152601560248201527f506c656173652072656769737465722066697273740000000000000000000000604482015290519081900360640190fd5b600354604080517ff3caad03000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301529151919092169163f3caad039160248083019260209291908290030181600087803b158015610db657600080fd5b505af1158015610dca573d6000803e3d6000fd5b505050506040513d6020811015610de057600080fd5b50511515610e5e576040805160e560020a62461bcd02815260206004820152602960248201527f596f752063616e206f6e6c79207472616e7366657220746f20616e206578697360448201527f7473206d656d6265720000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6004830154851115610eba576040805160e560020a62461bcd02815260206004820152601b60248201527f596f752068617665206e6f7420656e6f7567682062616c616e63650000000000604482015290519081900360640190fd5b600354604080517fda9c9ba7000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0387811660248301529151919092169163da9c9ba79160448083019260209291908290030181600087803b158015610f2857600080fd5b505af1158015610f3c573d6000803e3d6000fd5b505050506040513d6020811015610f5257600080fd5b50519150811515610fd3576040805160e560020a62461bcd02815260206004820152602560248201527f5468697320757365722069736e277420696e20796f757220726566657272616c60448201527f2074726565000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03831660009081526007602052604090206004830154611001908663ffffffff6122a416565b60048085019190915581015461101d908663ffffffff61228716565b600482015560408051338152600160a060020a038616602082015280820187905290517f4af963b3b3cf29b512e536c50cec80ec744b62d4e490fdfeba18a728bd25d7459181900360600190a15050505050565b60045481565b600254600090600160a060020a031633146110ca576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b50600160a060020a038116600090815260076020526040902060048101546110f8908463ffffffff61228716565b6004909101555050565b61110a611d05565b1515611160576040805160e560020a62461bcd02815260206004820152601160248201527f6f6e6c79436f6e747261637441646d696e000000000000000000000000000000604482015290519081900360640190fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038116600090815260076020526040812060010154156111eb57600160a060020a0382166000908152600760205260409020600101805460001981019081106111db57fe5b90600052602060002001546111ee565b60005b92915050565b6003546040805160e160020a6342e10507028152600160a060020a0384811660048301529151606093600093859385938493849384939116916385c20a0e91602480820192869290919082900301818387803b15801561125357600080fd5b505af1158015611267573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561129057600080fd5b8101908080516401000000008111156112a857600080fd5b820160208101848111156112bb57600080fd5b81518560208202830111640100000000821117156112d857600080fd5b50509291905050505195508560405190808252806020026020018201604052801561130d578160200160208202803883390190505b509450600093505b85841015611461576003546040805160e160020a6342e10507028152600160a060020a038b81166004830152915191909216916385c20a0e91602480830192600092919082900301818387803b15801561136e57600080fd5b505af1158015611382573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156113ab57600080fd5b8101908080516401000000008111156113c357600080fd5b820160208101848111156113d657600080fd5b81518560208202830111640100000000821117156113f357600080fd5b505080519093508792508210905061140757fe5b6020908102909101810151600160a060020a03811660009081526007909252604090912054909350915061143b83836104e8565b905080858581518110151561144c57fe5b60209081029091010152600190930192611315565b61146a85611d16565b98975050505050505050565b60008060008060008060008061148a611d05565b15156114e0576040805160e560020a62461bcd02815260206004820152601160248201527f6f6e6c79436f6e747261637441646d696e000000000000000000000000000000604482015290519081900360640190fd5b8851600010611539576040805160e560020a62461bcd02815260206004820152600d60248201527f496e76616c696420696e70757400000000000000000000000000000000000000604482015290519081900360640190fd5b600360009054906101000a9004600160a060020a0316600160a060020a031663960524e36040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561158c57600080fd5b505af11580156115a0573d6000803e3d6000fd5b505050506040513d60208110156115b657600080fd5b5051975060019450600091505b88518210156118cb576003548951600160a060020a03909116906365f68c89908b90859081106115ef57fe5b906020019060200201516040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561164457600080fd5b505af1158015611658573d6000803e3d6000fd5b505050506040513d602081101561166e57600080fd5b505193508388116116c9576040805160e560020a62461bcd02815260206004820152600e60248201527f496e76616c696420757365724964000000000000000000000000000000000000604482015290519081900360640190fd5b88828151811015156116d757fe5b6020908102909101810151600254604080517fed153dc5000000000000000000000000000000000000000000000000000000008152600160a060020a038085166004830152915193975060ff8a1694919092169263ed153dc59260248082019392918290030181600087803b15801561174f57600080fd5b505af1158015611763573d6000803e3d6000fd5b505050506040513d602081101561177957600080fd5b505160ff16146118c05750600160a060020a0382166000908152600760205260409020600581015415806117b1575080546005820154105b6117d65780600001546004028160050154106117ce5760036117d1565b60045b6117d9565b60055b60ff1696506118076103e86117fb8984600201546122bb90919063ffffffff16565b9063ffffffff6122e916565b600282015490965061181f908763ffffffff6122a416565b60028201556004810154611839908763ffffffff61228716565b60048201556005810154611853908763ffffffff61228716565b6005808301919091555461186d908763ffffffff61228716565b600555604080516000808252600160a060020a0386166020830152818301899052606082015290517fd7ad9f3bbe311e558c9f800f5f0852c789ea22555f15a4016530cce2bbbf28679181900360800190a15b6001909101906115c3565b505050505050505050565b600254600090606090829081908190819081908190600160a060020a0316331480159061190e5750600154600160a060020a03163314155b80156119255750600054600160a060020a03163314155b1561199057600054600160a060020a038a811691161415611990576040805160e560020a62461bcd02815260206004820152601d60248201527f596f752063616e206e6f74207365652061646d696e206163636f756e74000000604482015290519081900360640190fd5b600760008a600160a060020a0316600160a060020a0316815260200190815260200160002090508060000154816001018260020154836003015484600401548560050154866007015485805480602002602001604051908101604052809291908181526020018280548015611a2457602002820191906000526020600020905b815481526020019060010190808311611a10575b50505050509550975097509750975097509750975050919395979092949650565b600160a060020a031660009081526007602052604090206004015490565b6002546000908190819081908190600160a060020a03163314611abe576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b600160a060020a0386161515611b1e576040805160e560020a62461bcd02815260206004820152601d60248201527f5573657220616464726573732063616e206e6f7420626520656d707479000000604482015290519081900360640190fd5b505050600160a060020a038316600090815260076020908152604082206001808201805491820181558452919092206302faf08090820181905582549094506305f5e1009350631dcd650092911590611b7d908663ffffffff61228716565b82556002820154611b94908563ffffffff61228716565b60028301556003820154611bae908463ffffffff61228716565b600383015560408051600160a060020a0388168082526020820187905281830152600060608201529051600080516020612bfd8339815191529181900360800190a160408051600160a060020a0388168082526020820186905281830152600060608201529051600080516020612bbd8339815191529181900360800190a1505050505050565b600254600160a060020a03163314611c85576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b600454611c98908263ffffffff61228716565b60045550565b6000611ca86104d7565b1515611cfe576040805160e560020a62461bcd02815260206004820152600d60248201527f6f6e6c794d61696e41646d696e00000000000000000000000000000000000000604482015290519081900360640190fd5b5060055490565b600154600160a060020a0316331490565b60606000606060008060008651945084604051908082528060200260200182016040528015611d4f578160200160208202803883390190505b509350600092505b84831015611d9a578683815181101515611d6d57fe5b906020019060200201518484815181101515611d8557fe5b60209081029091010152600190920191611d57565b600092505b84831015611e67578260010191505b84821015611e5c578382815181101515611dc457fe5b906020019060200201518484815181101515611ddc57fe5b906020019060200201511015611e51578382815181101515611dfa57fe5b9060200190602002015190508383815181101515611e1457fe5b906020019060200201518483815181101515611e2c57fe5b6020908102909101015283518190859085908110611e4657fe5b602090810290910101525b600190910190611dae565b600190920191611d9f565b509195945050505050565b6002546000908190819081908190600160a060020a03163314611ecd576040805160e560020a62461bcd0281526020600482015260176024820152600080516020612bdd833981519152604482015290519081900360640190fd5b600160a060020a0389161515611f2d576040805160e560020a62461bcd02815260206004820152601d60248201527f5573657220616464726573732063616e206e6f7420626520656d707479000000604482015290519081900360640190fd5b60008811611f85576040805160e560020a62461bcd02815260206004820152601960248201527f5061636b6167652076616c7565206d757374206265203e203000000000000000604482015290519081900360640190fd5b600160a060020a0389166000908152600760209081526040822060018082018054918201815584529190922081018a905590955015935083611fc8576001611fcb565b60025b855460ff9190911689029350600a89029250611fed908963ffffffff61228716565b85556002850154612004908463ffffffff61228716565b6002860155600385015461201e908363ffffffff61228716565b6003860155600260ff881614156120dd57600160a060020a03891632141561205f576004850154612055908963ffffffff6122a416565b600486015561208a565b503260009081526007602052604090206004810154612084908963ffffffff6122a416565b60048201555b60408051328152600160a060020a038b16602082015260008a9003818301526001606082015290517fd7ad9f3bbe311e558c9f800f5f0852c789ea22555f15a4016530cce2bbbf28679181900360800190a15b600354604080517f5e91e9bf000000000000000000000000000000000000000000000000000000008152600160a060020a038c81166004830152602482018c905291519190921691635e91e9bf91604480830192600092919082900301818387803b15801561214b57600080fd5b505af115801561215f573d6000803e3d6000fd5b5050505061216f8989898961230c565b83156121f557600354604080517fbe396e14000000000000000000000000000000000000000000000000000000008152600160a060020a038c811660048301529151919092169163be396e1491602480830192600092919082900301818387803b1580156121dc57600080fd5b505af11580156121f0573d6000803e3d6000fd5b505050505b60008311156118cb5760408051600160a060020a038b16808252602082018690528183015260ff891660608201529051600080516020612bfd8339815191529181900360800190a160408051600160a060020a038b16808252602082018590528183015260ff891660608201529051600080516020612bbd8339815191529181900360800190a1505050505050505050565b60008282018381101561229957600080fd5b8091505b5092915050565b600080838311156122b457600080fd5b5050900390565b6000808315156122ce576000915061229d565b508282028284828115156122de57fe5b041461229957600080fd5b6000808083116122f857600080fd5b828481151561230357fe5b04949350505050565b600060015b600354604080517fd216ce6f000000000000000000000000000000000000000000000000000000008152600160a060020a0389811660048301529151919092169163d216ce6f9160248083019260209291908290030181600087803b15801561237957600080fd5b505af115801561238d573d6000803e3d6000fd5b505050506040513d60208110156123a357600080fd5b50519150600160a060020a0382161561246257600354604080517f1d9b83c3000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820189905260ff881660448301526064820187905291519190921691631d9b83c391608480830192600092919082900301818387803b15801561243457600080fd5b505af1158015612448573d6000803e3d6000fd5b505050506124598683838789612476565b90945084906001015b600160a060020a03821615610a4257612311565b600080600060606000808861ffff166001141561249f5761249a8b8b8b8b8b612674565b612667565b60018961ffff161180156124b75750600b8961ffff16105b156124c95761249a8b8b8b8b8b612674565b600654600160a060020a03808c16600081815260076020526040808220546003805483517f852c630200000000000000000000000000000000000000000000000000000000815260048101969096529251969091119b509493169263852c630292602480820193929182900301818387803b15801561254757600080fd5b505af115801561255b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561258457600080fd5b81019080805164010000000081111561259c57600080fd5b820160208101848111156125af57600080fd5b81518560208202830111640100000000821117156125cc57600080fd5b50509291905050505110159450600093506125e68a6111f4565b92506003835110151561264257506000905060025b60018351038110156126385761262f838281518110151561261857fe5b60209081029091010151839063ffffffff61228716565b506001016125fb565b6302625a00821193505b85801561264c5750845b80156126555750835b15612667576126678b8b8b8b8b612674565b5050505050505050505050565b600354604080517f35bab2c9000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015291516000938493849384938493849384939116916335bab2c99160248082019260209290919082900301818787803b1580156126e957600080fd5b505af11580156126fd573d6000803e3d6000fd5b505050506040513d602081101561271357600080fd5b50516003546040805160e160020a6342e10507028152600160a060020a038f8116600483015291519399509116916385c20a0e9160248082019260009290919082900301818387803b15801561276857600080fd5b505af115801561277c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156127a557600080fd5b8101908080516401000000008111156127bd57600080fd5b820160208101848111156127d057600080fd5b81518560208202830111640100000000821117156127ed57600080fd5b505051600160a060020a038f1660009081526007602052604081206001015491995010925061282091505057600061285a565b600160a060020a038b1660009081526007602052604081206001018054909190811061284857fe5b90600052602060002001546003028610155b600160a060020a038c16600090815260076020526040902090945061ffff8b168087101594509092506001141561290d5750600481015460646032890281900497506003890204906128b2908263ffffffff61228716565b600483015560408051600160a060020a03808f1682528d1660208201528082018390526001606082015290517fd7ad9f3bbe311e558c9f800f5f0852c789ea22555f15a4016530cce2bbbf28679181900360800190a1612a15565b8961ffff16600214156129525760646014890204965083801561292d5750825b1561294d5761294b606460148a025b8991900463ffffffff61228716565b505b612a15565b8961ffff1660031415612985576064600f89020496508380156129725750825b1561294d5761294b6064600f8a0261293c565b8961ffff166004148061299c57508961ffff166005145b156129c7576064600a89020496508380156129b45750825b1561294d5761294b6064600a8a0261293c565b60068a61ffff161015806129e05750600a8a61ffff1611155b15612a0b576064600589020496508380156129f85750825b1561294d5761294b606460058a0261293c565b6064600589020496505b8682600301541115612ae9576002820154612a36908863ffffffff61228716565b60028301556003820154612a50908863ffffffff6122a416565b60038301556000871115612ae45760408051600160a060020a03808e168252602082018a90528e168183015260ff8b1660608201529051600080516020612bfd8339815191529181900360800190a160408051600160a060020a03808e16825260008a900360208301528e168183015260ff8b1660608201529051600080516020612bbd8339815191529181900360800190a15b612bae565b600082600301541115612b8857600382015460408051600160a060020a03808f1682526020820193909352918e168282015260ff8b16606083015251600080516020612bfd8339815191529181900360800190a1600382015460408051600160a060020a03808f1682526000939093036020820152918e168282015260ff8b16606083015251600080516020612bbd8339815191529181900360800190a15b60038201546002830154612ba19163ffffffff61228716565b6002830155600060038301555b50505050505050505050505056008f8efd5f85f04a7663637e3efa5ba6ec23433545ffd252daac0d2bbb429ef0ac6f6e6c795265736572766546756e64436f6e747261637400000000000000000087a7880a292f66f5339d90f3f9a3238e74926be09acb98c5caa60312c188af6aa165627a7a72305820f26386d88193d3e58617b692c62ff8cbab0456bac3773201f956bf4dee72f6120029

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

0000000000000000000000007f464a81db1c5eb975227b6953daf6b216fbc56100000000000000000000000015f3f85cd9d1855300ba344be07e3592aa1b1451

-----Decoded View---------------
Arg [0] : _mainAdmin (address): 0x7f464A81db1c5Eb975227B6953DaF6b216fbc561
Arg [1] : _citizen (address): 0x15f3F85cd9D1855300bA344BE07e3592aA1B1451

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007f464a81db1c5eb975227b6953daf6b216fbc561
Arg [1] : 00000000000000000000000015f3f85cd9d1855300ba344be07e3592aa1b1451


Deployed Bytecode Sourcemap

4974:16550:0:-;;;;;;;;;-1:-1:-1;;;4974:16550:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1040:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1040:99:0;;;;;;;;;;;;;;;;;;;;;;20329:597;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20329:597:0;-1:-1:-1;;;;;20329:597:0;;;;;;;;;;;;;;;;;;;;;;;11553:308;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11553:308:0;-1:-1:-1;;;;;11553:308:0;;;;;;;;;12245:604;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12245:604:0;-1:-1:-1;;;;;12245:604:0;;;;;;;;;11869:324;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11869:324:0;;;-1:-1:-1;;;;;11869:324:0;;;;;13793:971;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13793:971:0;;;-1:-1:-1;;;;;13793:971:0;;;;;5530:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5530:23:0;;;;11147:259;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11147:259:0;;;-1:-1:-1;;;;;11147:259:0;;;;;6835:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6835:154:0;-1:-1:-1;;;;;6835:154:0;;;;;13551:234;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13551:234:0;-1:-1:-1;;;;;13551:234:0;;;;;19632:689;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19632:689:0;-1:-1:-1;;;;;19632:689: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;19632:689:0;;;;;;;;;;;;;;;;;6997:1403;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6997:1403:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6997:1403:0;;-1:-1:-1;6997:1403:0;;-1:-1:-1;;;;;;;6997:1403:0;12884:659;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12884:659:0;-1:-1:-1;;;;;12884:659:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12884:659:0;;;;;;;;;;;;;;;;;;;;;;;14772:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14772:134:0;-1:-1:-1;;;;;14772:134:0;;;;;10311:828;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10311:828:0;-1:-1:-1;;;;;10311:828:0;;;;;11414:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11414:131:0;;;;;6685:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6685:102:0;;;;1147:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1147:107:0;;;;20934:585;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20934:585:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20934:585:0;;-1:-1:-1;20934:585:0;;-1:-1:-1;;;;;;;20934:585:0;8482:1819;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8482:1819:0;-1:-1:-1;;;;;8482:1819:0;;;;;;;;;;;;;1040:99;1084:4;1122:9;-1:-1:-1;;;;;1122:9:0;1108:10;:23;;1040:99::o;20329:597::-;20469:7;;:33;;;;;;-1:-1:-1;;;;;20469:33:0;;;;;;;;;20433:4;;;;;;;;;;20469:7;;;;;:22;;:33;;;;;;;;;;;;;;;20433:4;20469:7;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;20469:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20469:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20469:33:0;;-1:-1:-1;20530:31:0;:14;20469:33;20530:31;:18;:31;:::i;:::-;20600:7;;:54;;;-1:-1:-1;;;;;20600:54:0;;-1:-1:-1;;;;;20600:54:0;;;;;;;;;20513:48;;-1:-1:-1;20600:7:0;;;:43;;:54;;;;;:7;;:54;;;;;;;;:7;;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;20600:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20600:54:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;20600:54:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;20600:54:0;;;;;;20:11:-1;15:3;12:20;9:2;;;45:1;42;35:12;9:2;64:21;;126:4;117:14;;142:31;;;139:2;;;186:1;183;176:12;139:2;224:3;218:10;339:9;333:2;319:12;315:21;297:16;293:44;290:59;268:11;254:12;251:29;239:119;236:2;;;371:1;368;361:12;236:2;-1:-1;;20600:61:0;;-1:-1:-1;20686:1:0;;-1:-1:-1;;;;20672:215:0;20693:20;20689:1;:24;20672:215;;;20749:7;;:54;;;-1:-1:-1;;;;;20749:54:0;;-1:-1:-1;;;;;20749:54:0;;;;;;;;;:7;;;;;:43;;:54;;;;;:7;;:54;;;;;;;:7;;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;20749:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20749:54:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;20749:54:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;20749:54:0;;;;;;20:11:-1;15:3;12:20;9:2;;;45:1;42;35:12;9:2;64:21;;126:4;117:14;;142:31;;;139:2;;;186:1;183;176:12;139:2;224:3;218:10;339:9;333:2;319:12;315:21;297:16;293:44;290:59;268:11;254:12;251:29;239:119;236:2;;;371:1;368;361:12;236:2;-1:-1;;20749:57:0;;:54;;-1:-1:-1;20804:1:0;;-1:-1:-1;20749:57:0;;;-1:-1:-1;20749:57:0;;;;;;;;;;;;20735:71;;20821:54;20855:3;20860:14;20821:33;:54::i;:::-;-1:-1:-1;20715:3:0;;;;;20672:215;;;-1:-1:-1;20904:14:0;;20329:597;-1:-1:-1;;;;;20329:597:0:o;11553:308::-;5782:19;;11643:27;;-1:-1:-1;;;;;5782:19:0;5760:10;:42;5752:78;;;;;-1:-1:-1;;;;;5752:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5752:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11673:18:0;;;;;;:11;:18;;;;;11730:25;;;;:38;;11760:7;11730:38;:29;:38;:::i;:::-;11702:25;;;:66;11811:29;;;;:42;;11845:7;11811:42;:33;:42;:::i;:::-;11779:29;;;;:74;-1:-1:-1;;11553:308:0:o;12245:604::-;5930:7;;12425:23;;;;;;-1:-1:-1;;;;;5930:7:0;5908:10;:30;5900:62;;;;;-1:-1:-1;;;;;5900:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12373:23;;;12365:49;;;;;-1:-1:-1;;;;;12365:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12451:29:0;;;;;;:11;:29;;;;;;-1:-1:-1;12528:1:0;12506:23;;;-1:-1:-1;12491:351:0;12531:20;;;;;;;;12491:351;;12596:7;;:23;;;;;;;;;;;;;;;-1:-1:-1;;;;;12596:7:0;;;;:20;;:23;;;;;;;;;;;;;;;:7;;:23;;;5:2:-1;;;;30:1;27;20:12;5:2;12596:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12596:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12596:23:0;12658:21;;;;12596:23;;-1:-1:-1;12658:42:0;;12596:23;12658:42;:25;:42;:::i;:::-;12634:21;;;:66;12737:1;12719:19;;12715:116;;;12764:51;;;-1:-1:-1;;;;;12764:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12715:116;12553:3;;;;;12491:351;;;12245:604;;;;;;:::o;11869:324::-;5782:19;;11980:27;;-1:-1:-1;;;;;5782:19:0;5760:10;:42;5752:78;;;;;-1:-1:-1;;;;;5752:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5752:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12010:18:0;;;;;;:11;:18;;;;;12102:26;;12047:29;;;;12098:1;:30;;;;12047:47;;12081:12;12047:47;:33;:47;:::i;:::-;:81;;12039:146;;;;;-1:-1:-1;;;;;12039:146:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11869:324;;;:::o;13793:971::-;13992:29;14308:18;14474:31;13887:19;;;;;;;;;-1:-1:-1;;;;;13887:19:0;-1:-1:-1;;;;;13887:41:0;;:43;;;;;-1:-1:-1;;;13887:43:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13887:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13887:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13887:43:0;13876:54;;;13868:113;;;;;-1:-1:-1;;;;;13868:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14036:10;14024:23;;;;:11;:23;;;;;;;;14066:7;;:29;;;;;;;;;;;;;;14024:23;;-1:-1:-1;;;;;;14066:7:0;;;;:17;;:29;;;;;14024:23;14066:29;;;;;;;;:7;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;14066:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14066:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14066:29:0;14058:63;;;;;;;-1:-1:-1;;;;;14058:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14140:7;;:22;;;;;;-1:-1:-1;;;;;14140:22:0;;;;;;;;;:7;;;;;:17;;:22;;;;;;;;;;;;;;:7;;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;14140:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14140:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14140:22:0;14132:76;;;;;;;-1:-1:-1;;;;;14132:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14227:27;;;;:38;-1:-1:-1;14227:38:0;14219:78;;;;;-1:-1:-1;;;;;14219:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14329:7;;:60;;;;;;14373:10;14329:60;;;;-1:-1:-1;;;;;14329:60:0;;;;;;;;;:7;;;;;:43;;:60;;;;;;;;;;;;;;:7;;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;14329:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14329:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14329:60:0;;-1:-1:-1;14400:63:0;;;;;;;;-1:-1:-1;;;;;14400:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14508:16:0;;;;;;:11;:16;;;;;14565:27;;;;:40;;14597:7;14565:40;:31;:40;:::i;:::-;14535:27;;;;:70;;;;14648:29;;;:42;;14682:7;14648:42;:33;:42;:::i;:::-;14616:29;;;:74;14706:50;;;14731:10;14706:50;;-1:-1:-1;;;;;14706:50:0;;;;;;;;;;;;;;;;;;;;;;;13793:971;;;;;:::o;5530:23::-;;;;:::o;11147:259::-;5782:19;;11269:28;;-1:-1:-1;;;;;5782:19:0;5760:10;:42;5752:78;;;;;-1:-1:-1;;;;;5752:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5752:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11300:19:0;;;;;;:11;:19;;;;;11359:26;;;;:39;;11390:7;11359:39;:30;:39;:::i;:::-;11330:26;;;;:68;-1:-1:-1;;11147:259:0:o;6835:154::-;744:17;:15;:17::i;:::-;736:47;;;;;;;-1:-1:-1;;;;;736:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6925:19;:56;;-1:-1:-1;;6925:56:0;-1:-1:-1;;;;;6925:56:0;;;;;;;;;;6835:154::o;13551:234::-;-1:-1:-1;;;;;13649:22:0;;13625:4;13649:22;;;:11;:22;;;;;:32;;:39;:44;:128;;-1:-1:-1;;;;;13700:22:0;;;;;;:11;:22;;;;;:32;;13733:39;;-1:-1:-1;;13733:43:0;;;13700:77;;;;;;;;;;;;;;13649:128;;;13696:1;13649:128;13642:135;13551:234;-1:-1:-1;;13551:234:0:o;19632:689::-;19751:7;;:54;;;-1:-1:-1;;;;;19751:54:0;;-1:-1:-1;;;;;19751:54:0;;;;;;;;;19705:6;;19723:25;;19705:6;;19723:25;;;;;;;;19751:7;;;:43;;:54;;;;;19723:25;;19751:54;;;;;;;;19723:25;19751:7;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;19751:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19751:54:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;19751:54:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;19751:54:0;;;;;;20:11:-1;15:3;12:20;9:2;;;45:1;42;35:12;9:2;64:21;;126:4;117:14;;142:31;;;139:2;;;186:1;183;176:12;139:2;224:3;218:10;339:9;333:2;319:12;315:21;297:16;293:44;290:59;268:11;254:12;251:29;239:119;236:2;;;371:1;368;361:12;236:2;0:383;;19751:54:0;;;;;;:61;19723:89;;19859:20;19848:32;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;19848:32:0;;19823:57;;19905:1;19896:10;;19891:334;19912:20;19908:1;:24;19891:334;;;19968:7;;:54;;;-1:-1:-1;;;;;19968:54:0;;-1:-1:-1;;;;;19968:54:0;;;;;;;;;:7;;;;;:43;;:54;;;;;:7;;:54;;;;;;;:7;;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;19968:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19968:54:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;19968:54:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;19968:54:0;;;;;;20:11:-1;15:3;12:20;9:2;;;45:1;42;35:12;9:2;64:21;;126:4;117:14;;142:31;;;139:2;;;186:1;183;176:12;139:2;224:3;218:10;339:9;333:2;319:12;315:21;297:16;293:44;290:59;268:11;254:12;251:29;239:119;236:2;;;371:1;368;361:12;236:2;-1:-1;;19968:57:0;;:54;;-1:-1:-1;20023:1:0;;-1:-1:-1;19968:57:0;;;-1:-1:-1;19968:57:0;;;;;;;;;;;;;;-1:-1:-1;;;;;20062:16:0;;;;;;:11;:16;;;;;;;:31;19968:57;;-1:-1:-1;20062:31:0;-1:-1:-1;20123:54:0;19968:57;20062:31;20123:33;:54::i;:::-;20108:69;;20206:7;20192:8;20201:1;20192:11;;;;;;;;;;;;;;;;;;:21;19934:3;;;;;19891:334;;;20267:20;20278:8;20267:10;:20::i;:::-;20256:31;19632:689;-1:-1:-1;;;;;;;;19632:689:0:o;6997:1403::-;7146:18;7204:17;7232:16;7259;7290:7;7308:19;7343:6;7647:23;744:17;:15;:17::i;:::-;736:47;;;;;;;-1:-1:-1;;;;;736:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7092:21;;7116:1;-1:-1:-1;7084:51:0;;;;;-1:-1:-1;;;;;7084:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7167:7;;;;;;;;;-1:-1:-1;;;;;7167:7:0;-1:-1:-1;;;;;7167:24:0;;:26;;;;;-1:-1:-1;;;7167:26:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7167:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7167:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7167:26:0;;-1:-1:-1;7278:1:0;;-1:-1:-1;7352:1:0;;-1:-1:-1;7338:1055:0;7359:14;:21;7355:1;:25;7338:1055;;;7407:7;;7421:17;;-1:-1:-1;;;;;7407:7:0;;;;:13;;7421:14;;7436:1;;7421:17;;;;;;;;;;;;;;7407:32;;;;;-1:-1:-1;;;7407:32:0;;;;;;;-1:-1:-1;;;;;7407:32:0;-1:-1:-1;;;;;7407:32:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7407:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7407:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7407:32:0;;-1:-1:-1;7462:18:0;;;7454:45;;;;;-1:-1:-1;;;;;7454:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7528:14;7543:1;7528:17;;;;;;;;;;;;;;;;;;;;7564:19;;:48;;;;;;-1:-1:-1;;;;;7564:48:0;;;;;;;;;7528:17;;-1:-1:-1;7564:62:0;;;;:19;;;;;:35;;:48;;;;;7528:17;7564:48;;;;;;:19;;:48;;;5:2:-1;;;;30:1;27;20:12;5:2;7564:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7564:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7564:48:0;:62;;;7560:822;;-1:-1:-1;;;;;;7673:24:0;;;;;;:11;:24;;;;;7732:21;;;;:26;;:76;;-1:-1:-1;7786:22:0;;7762:21;;;;:46;7732:76;7731:145;;7845:7;:22;;;7841:1;:26;7817:7;:21;;;:50;7816:60;;7875:1;7816:60;;;7871:1;7816:60;7731:145;;;7812:1;7731:145;7716:160;;;;7909:53;7957:4;7909:43;7939:12;7909:7;:25;;;:29;;:43;;;;:::i;:::-;:47;:53;:47;:53;:::i;:::-;8011:25;;;;7895:67;;-1:-1:-1;8011:42:0;;7895:67;8011:42;:29;:42;:::i;:::-;7983:25;;;:70;8096:21;;;;:38;;8122:11;8096:38;:25;:38;:::i;:::-;8072:21;;;:62;8177:21;;;;:38;;8203:11;8177:38;:25;:38;:::i;:::-;8153:21;;;;:62;;;;8247:10;:27;;8262:11;8247:27;:14;:27;:::i;:::-;8234:10;:40;8298:68;;;8327:3;8298:68;;;-1:-1:-1;;;;;8298:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7560:822;7382:3;;;;;7338:1055;;;6997:1403;;;;;;;;;:::o;12884:659::-;13048:19;;12962:4;;12968:6;;12962:4;;;;;;;;;;;;-1:-1:-1;;;;;13048:19:0;13026:10;:42;;;;:73;;-1:-1:-1;13086:13:0;;-1:-1:-1;;;;;13086:13:0;13072:10;:27;;13026:73;:100;;;;-1:-1:-1;13117:9:0;;-1:-1:-1;;;;;13117:9:0;13103:10;:23;;13026:100;13022:197;;;13164:9;;-1:-1:-1;;;;;13151:22:0;;;13164:9;;13151:22;;13143:64;;;;;-1:-1:-1;;;;;13143:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13255:11;:22;13267:9;-1:-1:-1;;;;;13255:22:0;-1:-1:-1;;;;;13255:22:0;;;;;;;;;;;;13229:48;;13306:7;:22;;;13339:7;:17;;13367:7;:25;;;13403:7;:27;;;13441:7;:21;;;13473:7;:21;;;13505:7;:19;;;13288:247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12884:659;;;;;;;;;;:::o;14772:134::-;-1:-1:-1;;;;;14862:22:0;14838:4;14862:22;;;:11;:22;;;;;:36;;;;14772:134::o;10311:828::-;5782:19;;10466:13;;;;;;;;;;-1:-1:-1;;;;;5782:19:0;5760:10;:42;5752:78;;;;;-1:-1:-1;;;;;5752:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5752:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10400:19:0;;;;10392:61;;;;;-1:-1:-1;;;;;10392:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;10646:16:0;;;;;;:11;:16;;;;;;;10693:17;;;;:24;;23:18:-1;;;45:23;;10733:32:0;;;;;;10482:8;10733:32;;;;;;10801:22;;10482:8;;-1:-1:-1;10532:9:0;;-1:-1:-1;10581:9:0;;10646:16;10693:29;;10801:36;;10482:8;10801:36;:26;:36;:::i;:::-;10776:61;;10876:25;;;;:38;;10906:7;10876:38;:29;:38;:::i;:::-;10848:25;;;:66;10955:27;;;;:38;;10987:5;10955:38;:31;:38;:::i;:::-;10925:27;;;:68;11011:51;;;-1:-1:-1;;;;;11011:51:0;;;;;;;;;;;;;;;11060:1;11011:51;;;;;;-1:-1:-1;;;;;;;;;;;11011:51:0;;;;;;;;11078;;;-1:-1:-1;;;;;11078:51:0;;;;;;;;;;;;;;;11127:1;11078:51;;;;;;-1:-1:-1;;;;;;;;;;;11078:51:0;;;;;;;;10311:828;;;;;;:::o;11414:131::-;5782:19;;-1:-1:-1;;;;;5782:19:0;5760:10;:42;5752:78;;;;;-1:-1:-1;;;;;5752:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5752:78:0;;;;;;;;;;;;;;;11513:11;;:24;;11529:7;11513:24;:15;:24;:::i;:::-;11499:11;:38;-1:-1:-1;11414:131:0:o;6685:102::-;6745:4;637:13;:11;:13::i;:::-;629:39;;;;;;;-1:-1:-1;;;;;629:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6769:10:0;;6685:102;:::o;1147:107::-;1233:13;;-1:-1:-1;;;;;1233:13:0;1219:10;:27;;1147:107::o;20934:585::-;20988:7;21013:6;21044:17;21093:6;21232;21353:9;21022:4;:11;21013:20;;21075:1;21064:13;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;21064:13:0;;21044:33;;21102:1;21093:10;;21088:81;21109:1;21105;:5;21088:81;;;21150:4;21155:1;21150:7;;;;;;;;;;;;;;;;;;21141:3;21145:1;21141:6;;;;;;;;;;;;;;;;;;:16;21112:3;;;;;21088:81;;;21188:1;21184:5;;21179:312;21195:1;21191;:5;21179:312;;;21241:1;21245;21241:5;21232:14;;21227:253;21252:1;21248;:5;21227:253;;;21305:3;21309:1;21305:6;;;;;;;;;;;;;;;;;;21296:3;21300:1;21296:6;;;;;;;;;;;;;;;;;;:15;21292:173;;;21365:3;21369:1;21365:6;;;;;;;;;;;;;;;;;;21353:18;;21403:3;21407:1;21403:6;;;;;;;;;;;;;;;;;;21394:3;21398:1;21394:6;;;;;;;;;;;;;;;;;;:15;21432:6;;21441:4;;21432:3;;21436:1;;21432:6;;;;;;;;;;;;;;:13;21292:173;21255:3;;;;;21227:253;;;21198:3;;;;;21179:312;;;-1:-1:-1;21508:3:0;;20934:585;-1:-1:-1;;;;;20934:585:0:o;8482:1819::-;5782:19;;8743:23;;;;;;;;;;-1:-1:-1;;;;;5782:19:0;5760:10;:42;5752:78;;;;;-1:-1:-1;;;;;5752:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5752:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8614:19:0;;;;8606:61;;;;;-1:-1:-1;;;;;8606:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8699:1;8686:14;;8678:52;;;;;-1:-1:-1;;;;;8678:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8769:16:0;;;;;;:11;:16;;;;;;;8816:17;;;;:24;;23:18:-1;;;45:23;;8856:34:0;;;;;;;;;;;8769:16;;-1:-1:-1;8816:29:0;;-1:-1:-1;8816:29:0;8947:20;;8966:1;8947:20;;;8962:1;8947:20;9064:22;;8933:35;;;;;;;;-1:-1:-1;9026:2:0;9013:15;;;-1:-1:-1;9064:38:0;;8933:10;9064:38;:26;:38;:::i;:::-;9039:63;;9141:25;;;;:55;;9171:24;9141:55;:29;:55;:::i;:::-;9113:25;;;:83;9237:27;;;;:59;;9269:26;9237:59;:31;:59;:::i;:::-;9207:27;;;:89;9322:1;9311:12;;;;9307:503;;;-1:-1:-1;;;;;9344:16:0;;9351:9;9344:16;9340:377;;;9438:21;;;;:37;;9464:10;9438:37;:25;:37;:::i;:::-;9414:21;;;:61;9340:377;;;-1:-1:-1;9599:9:0;9587:22;;;;:11;:22;;;;;9658:27;;;;:43;;9690:10;9658:43;:31;:43;:::i;:::-;9628:27;;;:73;9340:377;9736:62;;;9757:9;9736:62;;-1:-1:-1;;;;;9736:62:0;;;;;;9773:21;;;;9736:62;;;;9796:1;9736:62;;;;;;;;;;;;;;;9307:503;9820:7;;:48;;;;;;-1:-1:-1;;;;;9820:48:0;;;;;;;;;;;;;;;:7;;;;;:31;;:48;;;;;:7;;:48;;;;;;;:7;;:48;;;5:2:-1;;;;30:1;27;20:12;5:2;9820:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9820:48:0;;;;9879:60;9899:3;9904:10;9916:7;9925:13;9879:19;:60::i;:::-;9956:12;9952:92;;;9985:7;;:47;;;;;;-1:-1:-1;;;;;9985:47:0;;;;;;;;;:7;;;;;:42;;:47;;;;;:7;;:47;;;;;;;:7;;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;9985:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9985:47:0;;;;9952:92;10087:1;10060:24;:28;10056:238;;;10110:74;;;-1:-1:-1;;;;;10110:74:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10110:74:0;;;;;;;;10204:78;;;-1:-1:-1;;;;;10204:78:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10204:78:0;;;;;;;;8482:1819;;;;;;;;;:::o;2723:150::-;2781:7;2813:5;;;2837:6;;;;2829:15;;;;;;2864:1;2857:8;;2723:150;;;;;;:::o;2485:::-;2543:7;;2571:6;;;;2563:15;;;;;;-1:-1:-1;;2601:5:0;;;2485:150::o;1476:433::-;1534:7;;1778:6;;1774:47;;;1808:1;1801:8;;;;1774:47;-1:-1:-1;1845:5:0;;;1849:1;1845;:5;1869;;;;;;;;:10;1861:19;;;;;2044:303;2102:7;;2197:5;;;2189:14;;;;;;2230:1;2226;:5;;;;;;;;;2044:303;-1:-1:-1;;;;2044:303:0:o;14942:608::-;15057:15;15106:1;15118:425;15146:7;;:28;;;;;;-1:-1:-1;;;;;15146:28:0;;;;;;;;;:7;;;;;:18;;:28;;;;;;;;;;;;;;:7;;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;15146:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15146:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15146:28:0;;-1:-1:-1;;;;;;15193:23:0;;;15189:301;;15237:7;;:78;;;;;;-1:-1:-1;;;;;15237:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;;;;;:36;;:78;;;;;:7;;:78;;;;;;;:7;;:78;;;5:2:-1;;;;30:1;27;20:12;5:2;15237:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15237:78:0;;;;15334:66;15349:8;15359:7;15368:13;15383:7;15392;15334:14;:66::i;:::-;15430:7;;-1:-1:-1;15430:7:0;;15473:1;15456:18;15189:301;-1:-1:-1;;;;;15518:23:0;;;15118:425;;;;15558:1220;16014:15;16104;16185;16223:30;16357:10;16395:6;15693:14;:19;;15711:1;15693:19;15689:1082;;;15729:86;15762:8;15772;15782:14;15798:7;15807;15729:32;:86::i;:::-;15689:1082;;;15854:1;15837:14;:18;;;:41;;;;;15876:2;15859:14;:19;;;15837:41;15833:938;;;15895:86;15928:8;15938;15948:14;15964:7;15973;15895:32;:86::i;15833:938::-;16071:18;;-1:-1:-1;;;;;16032:21:0;;;;;;;:11;:21;;;;;;:36;16169:1;16122:7;;:36;;;;;;;;;;;;;;16032:57;;;;;-1:-1:-1;16169:1:0;16122:7;;;:26;;:36;;;;;16032:21;16122:36;;;;;;16032:21;16122:7;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;16122:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16122:36:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;16122:36:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;16122:36:0;;;;;;20:11:-1;15:3;12:20;9:2;;;45:1;42;35:12;9:2;64:21;;126:4;117:14;;142:31;;;139:2;;;186:1;183;176:12;139:2;224:3;218:10;339:9;333:2;319:12;315:21;297:16;293:44;290:59;268:11;254:12;251:29;239:119;236:2;;;371:1;368;361:12;236:2;0:383;;16122:36:0;;;;;;:43;:48;;16104:66;;16203:5;16185:23;;16256:33;16280:8;16256:23;:33::i;:::-;16223:66;;16335:1;16308:16;:23;:28;;16304:277;;;-1:-1:-1;16370:1:0;;-1:-1:-1;16404:1:0;16390:128;16437:1;16411:16;:23;:27;16407:1;:31;16390:128;;;16468:30;16478:16;16495:1;16478:19;;;;;;;;;;;;;;;;;;;16468:5;;:30;:9;:30;:::i;:::-;-1:-1:-1;16440:3:0;;16390:128;;;16557:8;16549:5;:16;16536:29;;16304:277;16599:10;:24;;;;;16613:10;16599:24;:38;;;;;16627:10;16599:38;16595:165;;;16658:86;16691:8;16701;16711:14;16727:7;16736;16658:32;:86::i;:::-;15558:1220;;;;;;;;;;;:::o;16786:2838::-;16988:7;;:32;;;;;;-1:-1:-1;;;;;16988:32:0;;;;;;;;;16935:19;;;;;;;;;;;;;;16988:7;;;:22;;:32;;;;;;;;;;;;;;;16935:19;16988:7;:32;;;5:2:-1;;;;30:1;27;20:12;5:2;16988:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16988:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16988:32:0;17059:7;;:53;;;-1:-1:-1;;;;;17059:53:0;;-1:-1:-1;;;;;17059:53:0;;;;;;;;;16988:32;;-1:-1:-1;17059:7:0;;;:43;;:53;;;;;:7;;:53;;;;;;;;:7;;:53;;;5:2:-1;;;;30:1;27;20:12;5:2;17059:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17059:53:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;17059:53:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;17059:53:0;;;;;;20:11:-1;15:3;12:20;9:2;;;45:1;42;35:12;9:2;64:21;;126:4;117:14;;142:31;;;139:2;;;186:1;183;176:12;139:2;224:3;218:10;339:9;333:2;319:12;315:21;297:16;293:44;290:59;268:11;254:12;251:29;239:119;236:2;;;371:1;368;361:12;236:2;-1:-1;;17059:60:0;-1:-1:-1;;;;;17148:21:0;;17189:1;17148:21;;;:11;:21;;;;;:31;;:38;17059:60;;-1:-1:-1;;17148:42:0;-1:-1:-1;17148:106:0;;-1:-1:-1;;17148:106:0;17249:5;17148:106;;;-1:-1:-1;;;;;17208:21:0;;;;;;:11;:21;;;;;:31;;:34;;:31;;:21;:34;;;;;;;;;;;;;;17245:1;17208:38;17193:11;:53;;17148:106;-1:-1:-1;;;;;17358:21:0;;;;;;:11;:21;;;;;17130:124;;-1:-1:-1;17283:38:0;;;;;;;;-1:-1:-1;17358:21:0;;-1:-1:-1;17412:1:0;17394:19;17390:1255;;;-1:-1:-1;17554:21:0;;;;17464:3;17458:2;17448:12;;17447:20;;;;-1:-1:-1;17507:1:0;17497:11;;17496:19;;17554:33;;17496:19;17554:33;:25;:33;:::i;:::-;17530:21;;;:57;17607:56;;;-1:-1:-1;;;;;17607:56:0;;;;;;;;;;;;;;;;;17661:1;17607:56;;;;;;;;;;;;;;;17390:1255;;;17685:14;:19;;17703:1;17685:19;17681:964;;;17755:3;17749:2;17739:12;;17738:20;17721:37;;17777:10;:24;;;;;17791:10;17777:24;17773:105;;;17822:40;17858:3;17852:2;17842:12;;17841:20;17822:14;;17841:20;;17822:40;:18;:40;:::i;:::-;;17773:105;17681:964;;;17899:14;:19;;17917:1;17899:19;17895:750;;;17969:3;17963:2;17953:12;;17952:20;17935:37;;17991:10;:24;;;;;18005:10;17991:24;17987:105;;;18036:40;18072:3;18066:2;18056:12;;18055:20;;17895:750;18113:14;:19;;18131:1;18113:19;:42;;;;18136:14;:19;;18154:1;18136:19;18113:42;18109:536;;;18206:3;18200:2;18190:12;;18189:20;18172:37;;18228:10;:24;;;;;18242:10;18228:24;18224:105;;;18273:40;18309:3;18303:2;18293:12;;18292:20;;18109:536;18368:1;18350:14;:19;;;;:43;;;;18391:2;18373:14;:20;;;;18350:43;18346:299;;;18443:3;18438:1;18428:11;;18427:19;18410:36;;18465:10;:24;;;;;18479:10;18465:24;18461:104;;;18510:39;18545:3;18540:1;18530:11;;18529:19;;18346:299;18630:3;18625:1;18615:11;;18614:19;18597:36;;18346:299;18689:14;18659:7;:27;;;:44;18655:962;;;18748:25;;;;:45;;18778:14;18748:45;:29;:45;:::i;:::-;18720:25;;;:73;18838:27;;;;:47;;18870:14;18838:47;:31;:47;:::i;:::-;18808:27;;;:77;18921:1;18904:18;;18900:244;;;18948:74;;;-1:-1:-1;;;;;18948:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18948:74:0;;;;;;;;19046:82;;;-1:-1:-1;;;;;19046:82:0;;;;;19083:25;;;;19046:82;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19046:82:0;;;;;;;;18900:244;18655:962;;;19210:1;19180:7;:27;;;:31;19176:283;;;19276:27;;;;19237:87;;;-1:-1:-1;;;;;19237:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19237:87:0;;;;;;;;19389:27;;;;19348:95;;;-1:-1:-1;;;;;19348:95:0;;;;;19385:38;;;;;19348:95;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19348:95:0;;;;;;;;19176:283;19531:27;;;;19501:25;;;;:58;;;:29;:58;:::i;:::-;19473:25;;;:86;19604:1;19574:27;;;:31;18655:962;16786:2838;;;;;;;;;;;;:::o

Swarm Source

bzzr://f26386d88193d3e58617b692c62ff8cbab0456bac3773201f956bf4dee72f612

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
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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.