Contract 0xcb3720CcdbbCe125DaDe92B7E7a94545DAf9011A

 
 
Txn Hash
Method
Block
From
To
Value [Txn Fee]
0x9a26a0bb9422e053cf7efc2639b65625cd6db7df9cfb12af91127588b331c9080x60806040407858972023-03-26 9:48:5074 days 5 hrs ago0x02b96373b43ab0a46c65f06e0d1f53d9b8b2d089 IN  Create: DREAMSFIRE_CONTRACT0 MATIC0.104590625839 67.344871312
[ Download CSV Export 
Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DREAMSFIRE_CONTRACT

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at polygonscan.com on 2023-03-26
*/

/**
 *Submitted for verification at BscScan.com on 2023-03-18
*/

/**
 *Submitted for verification at BscScan.com on 2023-02-22
*/

pragma solidity >= 0.5.0;

interface IBEP20 {
  function totalSupply() external view returns (uint256);
  function balanceOf(address who) external view returns (uint256);
  function allowance(address owner, address spender) external view returns (uint256);
  function transfer(address to, uint256 value) external returns (bool);
  function approve(address spender, uint256 value) external returns (bool);
  
  function transferFrom(address from, address to, uint256 value) external returns (bool);
  function burn(uint256 value) external returns (bool);
  event Transfer(address indexed from,address indexed to,uint256 value);
  event Approval(address indexed owner,address indexed spender,uint256 value);
}

contract DREAMSFIRE_CONTRACT{
    event Multisended(uint256 value , address indexed sender);
    event Airdropped(address indexed _userAddress, uint256 _amount);
	event Staking(string  investorId,string time,uint256 investment,address indexed investor);
	event WithDraw(address indexed  investor,uint256 WithAmt);
	event MemberPayment(address indexed  investor,uint netAmt,uint256 Withid);
	event Payment(uint256 NetQty);
    event buypackage(address indexed userwallet,uint256 amountbuy);
    event buyregister(address indexed userwallet,address indexed sender,string  referral,uint256 amountbuy);
	
    using SafeMath for uint256;
    IBEP20 private USDT; 
    address public owner;   
   
   
    constructor(address _ownerAddress,IBEP20 _USDT) public
    {
        owner = _ownerAddress; 
        USDT = _USDT;
    }
    
  function registerandbuy(address _userwallet,string memory referral,uint256 investment) public payable
	{
	  require(USDT.balanceOf(msg.sender)>=investment);
      require(USDT.allowance(msg.sender,address(this))>=investment,"Approve Your Token First");
   	  USDT.transferFrom(msg.sender ,owner,investment);
	  emit buyregister( _userwallet,msg.sender,referral,investment);
	}

	function Deposit(uint256 investment) public payable
	{
	  require(USDT.balanceOf(msg.sender)>=investment);
   	  USDT.transferFrom(msg.sender ,owner,investment);
	  emit buypackage( msg.sender,investment);
	}
  
    function multisendBNB(address payable[]  memory  _contributors, uint256[] memory _balances) public payable {
        uint256 total = msg.value;
        uint256 i = 0;
        for (i; i < _contributors.length; i++) {
            require(total >= _balances[i] );
            total = total.sub(_balances[i]);
            _contributors[i].transfer(_balances[i]);
        }       
    }

  
    function multisendToken(address payable[]  memory  _contributors, uint256[] memory _balances, uint256 totalQty,uint256[] memory WithId,IBEP20 _TKN) public payable {
    	uint256 total = totalQty;
        uint256 i = 0;
        for (i; i < _contributors.length; i++) {
            require(total >= _balances[i]);
            total = total.sub(_balances[i]);
            _TKN.transferFrom(msg.sender, _contributors[i], _balances[i]);
			emit MemberPayment(_contributors[i],_balances[i],WithId[i]);
        }
		emit Payment(totalQty);
    }
    
	 function multisendWithdraw(address payable[]  memory  _contributors, uint256[] memory _balances,IBEP20 _TKN) public payable {
    	require(msg.sender == owner, "onlyOwner");
        uint256 i = 0;
        for (i; i < _contributors.length; i++) {
              _TKN.transfer(_contributors[i], _balances[i]);
        }
    }

    function withdrawLostBNBFromBalance(address payable _sender) public {
        require(msg.sender == owner, "onlyOwner");
        _sender.transfer(address(this).balance);
    }
    
    function withdrawincome(address payable _userAddress,uint256 WithAmt) public {
        require(msg.sender == owner, "onlyOwner");
        USDT.transferFrom(msg.sender,_userAddress, WithAmt);
        emit WithDraw(_userAddress,WithAmt);
    }
     
	function withdrawLostTokenFromBalance(uint QtyAmt,IBEP20 _TKN) public 
	{
        require(msg.sender == owner, "onlyOwner");
        _TKN.transfer(owner,QtyAmt);
	}
	
}


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

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

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

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

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

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"investment","type":"uint256"}],"name":"Deposit","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"},{"name":"totalQty","type":"uint256"},{"name":"WithId","type":"uint256[]"},{"name":"_TKN","type":"address"}],"name":"multisendToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"multisendBNB","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_userAddress","type":"address"},{"name":"WithAmt","type":"uint256"}],"name":"withdrawincome","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"QtyAmt","type":"uint256"},{"name":"_TKN","type":"address"}],"name":"withdrawLostTokenFromBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_sender","type":"address"}],"name":"withdrawLostBNBFromBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_userwallet","type":"address"},{"name":"referral","type":"string"},{"name":"investment","type":"uint256"}],"name":"registerandbuy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"},{"name":"_TKN","type":"address"}],"name":"multisendWithdraw","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[{"name":"_ownerAddress","type":"address"},{"name":"_USDT","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"sender","type":"address"}],"name":"Multisended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_userAddress","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Airdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"investorId","type":"string"},{"indexed":false,"name":"time","type":"string"},{"indexed":false,"name":"investment","type":"uint256"},{"indexed":true,"name":"investor","type":"address"}],"name":"Staking","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"investor","type":"address"},{"indexed":false,"name":"WithAmt","type":"uint256"}],"name":"WithDraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"investor","type":"address"},{"indexed":false,"name":"netAmt","type":"uint256"},{"indexed":false,"name":"Withid","type":"uint256"}],"name":"MemberPayment","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"NetQty","type":"uint256"}],"name":"Payment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"userwallet","type":"address"},{"indexed":false,"name":"amountbuy","type":"uint256"}],"name":"buypackage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"userwallet","type":"address"},{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"referral","type":"string"},{"indexed":false,"name":"amountbuy","type":"uint256"}],"name":"buyregister","type":"event"}]

608060405234801561001057600080fd5b50604051604080611b3f8339810180604052604081101561003057600080fd5b81019080805190602001909291908051906020019092919050505081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050611a62806100dd6000396000f3fe608060405260043610610099576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634d6ce1e51461009e5780636814879e146100cc5780636c142738146102d657806377ff7d85146104225780637b5005641461047d5780638da5cb5b146104d85780639122c5441461052f578063e1a1b11414610580578063ef5d723414610665575b600080fd5b6100ca600480360360208110156100b457600080fd5b81019080803590602001909291905050506107d1565b005b6102d4600480360360a08110156100e257600080fd5b81019080803590602001906401000000008111156100ff57600080fd5b82018360208201111561011157600080fd5b8035906020019184602083028401116401000000008311171561013357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561019357600080fd5b8201836020820111156101a557600080fd5b803590602001918460208302840111640100000000831117156101c757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291908035906020019064010000000081111561023157600080fd5b82018360208201111561024357600080fd5b8035906020019184602083028401116401000000008311171561026557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a7b565b005b610420600480360360408110156102ec57600080fd5b810190808035906020019064010000000081111561030957600080fd5b82018360208201111561031b57600080fd5b8035906020019184602083028401116401000000008311171561033d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561039d57600080fd5b8201836020820111156103af57600080fd5b803590602001918460208302840111640100000000831117156103d157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610d0a565b005b34801561042e57600080fd5b5061047b6004803603604081101561044557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df8565b005b34801561048957600080fd5b506104d6600480360360408110156104a057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611043565b005b3480156104e457600080fd5b506104ed61120d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561053b57600080fd5b5061057e6004803603602081101561055257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611233565b005b6106636004803603606081101561059657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156105d357600080fd5b8201836020820111156105e557600080fd5b8035906020019184600183028401116401000000008311171561060757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611359565b005b6107cf6004803603606081101561067b57600080fd5b810190808035906020019064010000000081111561069857600080fd5b8201836020820111156106aa57600080fd5b803590602001918460208302840111640100000000831117156106cc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561072c57600080fd5b82018360208201111561073e57600080fd5b8035906020019184602083028401116401000000008311171561076057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611829565b005b806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561088c57600080fd5b505afa1580156108a0573d6000803e3d6000fd5b505050506040513d60208110156108b657600080fd5b8101908080519060200190929190505050101515156108d457600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156109ee57600080fd5b505af1158015610a02573d6000803e3d6000fd5b505050506040513d6020811015610a1857600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167ff3748edfcd35f4623dc3c84f24c9e2bb1a03d04b0e9b5a2ab1a9e76b8cf56ac1826040518082815260200191505060405180910390a250565b600083905060008090505b8651811015610cca578581815181101515610a9d57fe5b906020019060200201518210151515610ab557600080fd5b610adf8682815181101515610ac657fe5b9060200190602002015183611a1d90919063ffffffff16565b91508273ffffffffffffffffffffffffffffffffffffffff166323b872dd338984815181101515610b0c57fe5b906020019060200201518985815181101515610b2457fe5b906020019060200201516040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610be657600080fd5b505af1158015610bfa573d6000803e3d6000fd5b505050506040513d6020811015610c1057600080fd5b8101908080519060200190929190505050508681815181101515610c3057fe5b9060200190602002015173ffffffffffffffffffffffffffffffffffffffff167f0a1872f3bd246cb1112f591291baee9e061e6bb509aefde913f69fa1bc008cf48783815181101515610c7f57fe5b906020019060200201518684815181101515610c9757fe5b90602001906020020151604051808381526020018281526020019250505060405180910390a28080600101915050610a86565b7fd73298c59e2f8823f5313441b46ced5bddf204a2d4d72bdd904a6d6785e51ae9856040518082815260200191505060405180910390a150505050505050565b600034905060008090505b8351811015610df2578281815181101515610d2c57fe5b906020019060200201518210151515610d4457600080fd5b610d6e8382815181101515610d5557fe5b9060200190602002015183611a1d90919063ffffffff16565b91508381815181101515610d7e57fe5b9060200190602002015173ffffffffffffffffffffffffffffffffffffffff166108fc8483815181101515610daf57fe5b906020019060200201519081150290604051600060405180830381858888f19350505050158015610de4573d6000803e3d6000fd5b508080600101915050610d15565b50505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6f6e6c794f776e6572000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3384846040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b505050506040513d6020811015610fdf57600080fd5b8101908080519060200190929190505050508173ffffffffffffffffffffffffffffffffffffffff167f14b43ca4c63c5423006ad978eab8a14386476b52f1d4728070ea20a36f13e83b826040518082815260200191505060405180910390a25050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6f6e6c794f776e6572000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156111cd57600080fd5b505af11580156111e1573d6000803e3d6000fd5b505050506040513d60208110156111f757600080fd5b8101908080519060200190929190505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6f6e6c794f776e6572000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b5050565b806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561141457600080fd5b505afa158015611428573d6000803e3d6000fd5b505050506040513d602081101561143e57600080fd5b81019080805190602001909291905050501015151561145c57600080fd5b806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561154b57600080fd5b505afa15801561155f573d6000803e3d6000fd5b505050506040513d602081101561157557600080fd5b8101908080519060200190929190505050101515156115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f417070726f766520596f757220546f6b656e204669727374000000000000000081525060200191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561171657600080fd5b505af115801561172a573d6000803e3d6000fd5b505050506040513d602081101561174057600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f25c9e279d8117779444afd7c8cf3d6d0a34f4d8924c08e78bb70dd2f6d03ffd184846040518080602001838152602001828103825284818151815260200191508051906020019080838360005b838110156117e95780820151818401526020810190506117ce565b50505050905090810190601f1680156118165780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6f6e6c794f776e6572000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b8351811015611a17578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858381518110151561192757fe5b90602001906020020151858481518110151561193f57fe5b906020019060200201516040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156119ce57600080fd5b505af11580156119e2573d6000803e3d6000fd5b505050506040513d60208110156119f857600080fd5b81019080805190602001909291905050505080806001019150506118f4565b50505050565b6000828211151515611a2b57fe5b81830390509291505056fea165627a7a7230582021573b2d1905385ad124893b849dee2b28c2d67a2c3691fba08e9ce99d362f52002900000000000000000000000002b96373b43ab0a46c65f06e0d1f53d9b8b2d089000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f

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

00000000000000000000000002b96373b43ab0a46c65f06e0d1f53d9b8b2d089000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f

-----Decoded View---------------
Arg [0] : _ownerAddress (address): 0x02b96373b43ab0a46c65f06e0d1f53d9b8b2d089
Arg [1] : _USDT (address): 0xc2132d05d31c914a87c6611c10748aeb04b58e8f

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000002b96373b43ab0a46c65f06e0d1f53d9b8b2d089
Arg [1] : 000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f


Deployed ByteCode Sourcemap

864:3372:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2100:213:0;;;;;;;;;;;;;;;;;;;;2724:547;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;2724:547:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;2724:547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2724:547:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2724:547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;2724:547:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;2724:547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2724:547:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2724:547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;2724:547:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;2724:547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2724:547:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2724:547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;2724:547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2323:389;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2323:389:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;2323:389:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2323:389:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2323:389:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;2323:389:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;2323:389:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2323:389:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2323:389:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;2323:389:0;;;;;;;;;;;;;;;;;;3807:245;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3807:245:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3807:245:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4062:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4062:168:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4062:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1539:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1539:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3617:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3617:178:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3617:178:0;;;;;;;;;;;;;;;;;;;;;;1713:382;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1713:382:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1713:382:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1713:382:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;1713:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;1713:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3281:328;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3281:328:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;3281:328:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3281:328:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3281:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;3281:328:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;3281:328:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3281:328:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3281:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;3281:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100:213;2196:10;2168:4;;;;;;;;;;;:14;;;2183:10;2168:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2168:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2168:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2168:26:0;;;;;;;;;;;;;;;;:38;;2160:47;;;;;;;;2216:4;;;;;;;;;;;:17;;;2234:10;2246:5;;;;;;;;;;;2252:10;2216:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2216:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2216:47:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2216:47:0;;;;;;;;;;;;;;;;;2286:10;2274:34;;;2297:10;2274:34;;;;;;;;;;;;;;;;;;2100:213;:::o;2724:547::-;2895:13;2911:8;2895:24;;2930:9;2942:1;2930:13;;2954:283;2966:13;:20;2962:1;:24;2954:283;;;3025:9;3035:1;3025:12;;;;;;;;;;;;;;;;;;3016:5;:21;;3008:30;;;;;;;;3061:23;3071:9;3081:1;3071:12;;;;;;;;;;;;;;;;;;3061:5;:9;;:23;;;;:::i;:::-;3053:31;;3099:4;:17;;;3117:10;3129:13;3143:1;3129:16;;;;;;;;;;;;;;;;;;3147:9;3157:1;3147:12;;;;;;;;;;;;;;;;;;3099:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3099:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3099:61:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3099:61:0;;;;;;;;;;;;;;;;;3185:13;3199:1;3185:16;;;;;;;;;;;;;;;;;;3171:54;;;3202:9;3212:1;3202:12;;;;;;;;;;;;;;;;;;3215:6;3222:1;3215:9;;;;;;;;;;;;;;;;;;3171:54;;;;;;;;;;;;;;;;;;;;;;;;2988:3;;;;;;;2954:283;;;3246:17;3254:8;3246:17;;;;;;;;;;;;;;;;;;2724:547;;;;;;;:::o;2323:389::-;2441:13;2457:9;2441:25;;2477:9;2489:1;2477:13;;2501:197;2513:13;:20;2509:1;:24;2501:197;;;2572:9;2582:1;2572:12;;;;;;;;;;;;;;;;;;2563:5;:21;;2555:31;;;;;;;;2609:23;2619:9;2629:1;2619:12;;;;;;;;;;;;;;;;;;2609:5;:9;;:23;;;;:::i;:::-;2601:31;;2647:13;2661:1;2647:16;;;;;;;;;;;;;;;;;;:25;;:39;2673:9;2683:1;2673:12;;;;;;;;;;;;;;;;;;2647:39;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2647:39:0;2535:3;;;;;;;2501:197;;;2323:389;;;;:::o;3807:245::-;3917:5;;;;;;;;;;;3903:19;;:10;:19;;;3895:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947:4;;;;;;;;;;;:17;;;3965:10;3976:12;3990:7;3947:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3947:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3947:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3947:51:0;;;;;;;;;;;;;;;;;4023:12;4014:30;;;4036:7;4014:30;;;;;;;;;;;;;;;;;;3807:245;;:::o;4062:168::-;4168:5;;;;;;;;;;;4154:19;;:10;:19;;;4146:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4198:4;:13;;;4212:5;;;;;;;;;;;4218:6;4198:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4198:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4198:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4198:27:0;;;;;;;;;;;;;;;;;4062:168;;:::o;1539:20::-;;;;;;;;;;;;;:::o;3617:178::-;3718:5;;;;;;;;;;;3704:19;;:10;:19;;;3696:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3748:7;:16;;:39;3773:4;3765:21;;;3748:39;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3748:39:0;3617:178;:::o;1713:382::-;1859:10;1831:4;;;;;;;;;;;:14;;;1846:10;1831:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1831:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1831:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1831:26:0;;;;;;;;;;;;;;;;:38;;1823:47;;;;;;;;1929:10;1887:4;;;;;;;;;;;:14;;;1902:10;1921:4;1887:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1887:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1887:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1887:40:0;;;;;;;;;;;;;;;;:52;;1879:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976:4;;;;;;;;;;;:17;;;1994:10;2006:5;;;;;;;;;;;2012:10;1976:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1976:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1976:47:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1976:47:0;;;;;;;;;;;;;;;;;2059:10;2034:56;;2047:11;2034:56;;;2070:8;2079:10;2034:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2034:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1713:382;;;:::o;3281:328::-;3435:5;;;;;;;;;;;3421:19;;:10;:19;;;3413:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3465:9;3477:1;3465:13;;3489:113;3501:13;:20;3497:1;:24;3489:113;;;3545:4;:13;;;3559;3573:1;3559:16;;;;;;;;;;;;;;;;;;3577:9;3587:1;3577:12;;;;;;;;;;;;;;;;;;3545:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3545:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3545:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3545:45:0;;;;;;;;;;;;;;;;;3523:3;;;;;;;3489:113;;;3281:328;;;;:::o;5087:113::-;5145:7;5173:1;5168;:6;;5161:14;;;;;;5193:1;5189;:5;5182:12;;5087:113;;;;:::o

Swarm Source

bzzr://21573b2d1905385ad124893b849dee2b28c2d67a2c3691fba08e9ce99d362f52
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.