Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Renounce Ownersh... | 17531059 | 1267 days ago | IN | 0 POL | 0.00028136 | ||||
Add | 17508236 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508227 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508224 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508223 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508220 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508217 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508214 | 1268 days ago | IN | 0 POL | 0.00327626 | ||||
Add | 17508211 | 1268 days ago | IN | 0 POL | 0.00327602 | ||||
Add | 17508208 | 1268 days ago | IN | 0 POL | 0.00327602 | ||||
Add | 17508205 | 1268 days ago | IN | 0 POL | 0.00327578 | ||||
Add | 17508202 | 1268 days ago | IN | 0 POL | 0.00327602 | ||||
Add | 17508199 | 1268 days ago | IN | 0 POL | 0.00327602 | ||||
Add | 17508196 | 1268 days ago | IN | 0 POL | 0.00327626 | ||||
Add | 17508193 | 1268 days ago | IN | 0 POL | 0.00327626 | ||||
Add | 17508190 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508187 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508184 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508181 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508178 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508175 | 1268 days ago | IN | 0 POL | 0.0036745 | ||||
Add | 17508172 | 1268 days ago | IN | 0 POL | 0.00327626 | ||||
Add | 17508169 | 1268 days ago | IN | 0 POL | 0.00327626 | ||||
Add | 17508166 | 1268 days ago | IN | 0 POL | 0.00396026 | ||||
Set Referral | 17508129 | 1268 days ago | IN | 0 POL | 0.00057858 |
Loading...
Loading
Contract Name:
KulMasterChef
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./libs/IBEP20.sol"; import "./libs/SafeBEP20.sol"; import "./libs/IReferral.sol"; import "./libs/IPresale.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "./KulToken.sol"; // MasterChef is the manager of WorldSwap Farms. // // Note that it's ownable but ownership was renounced. // // Have fun reading it. Hopefully it's bug-free. God bless. contract KulMasterChef is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeBEP20 for IBEP20; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of WSs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accWsPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accWsPerShare` (and `lastRewardBlock`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each pool. struct PoolInfo { IBEP20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. WSs to distribute per block. uint256 lastRewardBlock; // Last block number that WSs distribution occurs. uint256 accWsPerShare; // Accumulated WSs per share, times 1e12. See below. uint16 depositFeeBP; // Deposit fee in basis points uint256 tokensPerBlock; // Tokens per block on the last updatePool bool exclusive; } // The WS TOKEN! KulToken public ws; // Dev address. address public devaddr; // Tokens created per block depending on each block breakpoint uint256[] public wsPerBlockPhases; // Block number breakpoints for each emission rate uint256[] public wsPerBlockBreakpoints; // Deposit Fee address address public feeAddress; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when mining starts. uint256 public startBlock; // Referral contract address. IReferral public referral; // Referral commission rate in basis points. uint16 public referralCommissionRate = 100; // Presale contract address. // Used to get the amount of tokens a wallet can deposit on the exclusive pool. IPresale public presale; // Burn address address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw( address indexed user, uint256 indexed pid, uint256 amount ); event SetFeeAddress(address indexed user, address indexed newAddress); event ReferralCommissionPaid( address indexed user, address indexed referrer, uint256 commissionAmount ); event StartBlockChanged(uint256 previousStartTime, uint256 newStartTime); constructor( KulToken _ws, address _devaddr, address _feeAddress, uint256[] memory _wsPerBlockPhases, uint256[] memory _wsPerBlockBreakpoints, uint256 _startBlock ) public { ws = _ws; devaddr = _devaddr; feeAddress = _feeAddress; wsPerBlockPhases = _wsPerBlockPhases; wsPerBlockBreakpoints = _wsPerBlockBreakpoints; startBlock = _startBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } mapping(IBEP20 => mapping(bool => bool)) public poolExistence; modifier nonDuplicated(IBEP20 _lpToken, bool _exclusive) { require(poolExistence[_lpToken][_exclusive] == false, "nonDuplicated: duplicated"); _; } // Add a new lp to the pool. Can only be called by the owner. function add( uint256 _allocPoint, IBEP20 _lpToken, uint16 _depositFeeBP, bool _exclusive, bool _withUpdate ) public onlyOwner nonDuplicated(_lpToken, _exclusive) { require(_depositFeeBP <= 199, "add: invalid deposit fee basis points"); if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolExistence[_lpToken][_exclusive] = true; poolInfo.push( PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accWsPerShare: 0, depositFeeBP: _depositFeeBP, tokensPerBlock: wsPerBlock(), exclusive: _exclusive }) ); } // View function to see pending WSs on frontend. function pendingWs(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accWsPerShare = pool.accWsPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 wsReward = tokensBetweenBlocks(pool.lastRewardBlock, block.number).mul(pool.allocPoint).div( totalAllocPoint ); accWsPerShare = accWsPerShare.add(wsReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accWsPerShare).div(1e12).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0 || pool.allocPoint == 0) { pool.lastRewardBlock = block.number; return; } uint256 wsReward = tokensBetweenBlocks(pool.lastRewardBlock, block.number).mul(pool.allocPoint).div( totalAllocPoint ); ws.mint(0x000000000000000000000000000000000000dEaD, wsReward.div(10)); ws.mint(address(this), wsReward); pool.accWsPerShare = pool.accWsPerShare.add( wsReward.mul(1e12).div(lpSupply) ); pool.tokensPerBlock = wsPerBlock(); pool.lastRewardBlock = block.number; } // Number of tokens emitted between 2 blocks function tokensBetweenBlocks(uint256 from, uint256 to) public view returns (uint256) { uint256 tokens = 0; uint256 fromLast = from; for (uint256 i = 0; i < wsPerBlockBreakpoints.length; i++) { if (wsPerBlockBreakpoints[i] > fromLast) { uint256 toLast = to > wsPerBlockBreakpoints[i] ? wsPerBlockBreakpoints[i] : to; tokens = tokens.add(toLast.sub(fromLast).mul(wsPerBlockPhases[i])); if (wsPerBlockBreakpoints[i] > to) { return tokens; } fromLast = toLast; } } return tokens.add(to.sub(fromLast).mul(wsPerBlockPhases[wsPerBlockPhases.length - 1])); } // Deposit LP tokens to MasterChef for WS allocation. function deposit( uint256 _pid, uint256 _amount, address _referrer ) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); // Calculate the difference in balance before and after the deposit to account for tokens with tax // Thanks for RugDoc advice if (_amount > 0) { uint256 balanceBefore = pool.lpToken.balanceOf(address(this)); pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); uint256 balanceAfter = pool.lpToken.balanceOf(address(this)); _amount = balanceAfter.sub(balanceBefore); } // Only users who participated on the presale can access to the exclusive native pool up to the amount of tokens bought if (pool.exclusive && address(presale) != address(0)) { require(presale.tokensBought(msg.sender) >= user.amount + _amount, "deposit: exceeds presale allowance"); } if ( _amount > 0 && address(referral) != address(0) && _referrer != address(0) && _referrer != msg.sender ) { referral.recordReferral(msg.sender, _referrer); } if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accWsPerShare).div(1e12).sub( user.rewardDebt ); if (pending > 0) { safeWsTransfer(msg.sender, pending); payReferralCommission(msg.sender, pending); } } if (_amount > 0) { if (pool.depositFeeBP > 0) { uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000); pool.lpToken.safeTransfer(feeAddress, depositFee); user.amount = user.amount.add(_amount).sub(depositFee); } else { user.amount = user.amount.add(_amount); } } user.rewardDebt = user.amount.mul(pool.accWsPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterChef. function withdraw(uint256 _pid, uint256 _amount) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = user.amount.mul(pool.accWsPerShare).div(1e12).sub(user.rewardDebt); if (pending > 0) { safeWsTransfer(msg.sender, pending); payReferralCommission(msg.sender, pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.accWsPerShare).div(1e12); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), amount); emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe ws transfer function, just in case if rounding error causes pool to not have enough tokens. function safeWsTransfer(address _to, uint256 _amount) internal { uint256 wsBal = ws.balanceOf(address(this)); bool transferSuccess = false; if (_amount > wsBal) { transferSuccess = ws.transfer(_to, wsBal); } else { transferSuccess = ws.transfer(_to, _amount); } require(transferSuccess, "safeWsTransfer: transfer failed"); } function wsPerBlock() public view returns (uint256) { for (uint256 i = 0; i < wsPerBlockBreakpoints.length; i++) { if (wsPerBlockBreakpoints[i] > block.number) { return wsPerBlockPhases[i]; } } return wsPerBlockPhases[wsPerBlockPhases.length - 1]; } function setFeeAddress(address _feeAddress) external { require(msg.sender == feeAddress, "setFeeAddress: FORBIDDEN"); feeAddress = _feeAddress; emit SetFeeAddress(msg.sender, _feeAddress); } // Allows the owner to update the referral contract. function setReferral(IReferral _referral) external onlyOwner { referral = _referral; } // Allows the owner to update the presale contract. function setPresale(IPresale _presale) external onlyOwner { presale = _presale; } function setStartBlock(uint256 _startBlock) external { require(msg.sender == devaddr, 'setStartBlock: not allowed'); require(startBlock > block.number, 'setStartBlock: farm already started'); require(_startBlock > block.number, 'setStartBlock: new start must be a future block'); uint256 previous = startBlock; startBlock = _startBlock; uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; pid++) { PoolInfo storage pool = poolInfo[pid]; pool.lastRewardBlock = startBlock; } emit StartBlockChanged(previous, _startBlock); } // Pay referral commission to the referrer who referred this user. function payReferralCommission(address _user, uint256 _pending) internal { if (address(referral) != address(0) && referralCommissionRate > 0) { address referrer = referral.getReferrer(_user); uint256 commissionAmount = _pending.mul(referralCommissionRate).div(10000); if (referrer != address(0) && commissionAmount > 0) { ws.mint(referrer, commissionAmount); emit ReferralCommissionPaid(_user, referrer, commissionAmount); } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./libs/BEP20.sol"; import "./libs/IUniswapV2Factory.sol"; import "./libs/IUniswapV2Router02.sol"; // WorldSwap Edition Token with Governance. contract KulToken is BEP20 { // Transfer tax rate in basis points. (3% not upgradeable) uint16 public transferTaxRate = 300; // How much % of the transfer tax will be burned uint16 public burnRate = 100; // Burn address address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // Max transfer amount rate in basis points. (5% not upgradeable) uint16 public maxTransferAmountRate = 500; // Addresses excluded from antiWhale mapping(address => bool) private _excludedFromAntiWhale; // Addresses excluded from tax (masterchef and presale contracts) mapping(address => bool) private _excludedFromTax; // The operator can only update the burn rate address private _operator; // Events event OperatorTransferred( address indexed previousOperator, address indexed newOperator ); modifier onlyOperator() { require( _operator == msg.sender, "operator: caller is not the operator" ); _; } modifier antiWhale( address sender, address recipient, uint256 amount ) { if (maxTransferAmount() > 0) { if ( _excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false ) { require( amount <= maxTransferAmount(), "antiWhale: Transfer amount exceeds the maxTransferAmount" ); } } _; } modifier transferTaxFree { uint16 _transferTaxRate = transferTaxRate; transferTaxRate = 0; _; transferTaxRate = _transferTaxRate; } /** * @notice Constructs a WorldSwap Token contract. */ constructor() public BEP20("Kuala Lumpur Token", "KUL") { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); _excludedFromAntiWhale[msg.sender] = true; _excludedFromAntiWhale[address(0)] = true; _excludedFromAntiWhale[address(this)] = true; _excludedFromAntiWhale[BURN_ADDRESS] = true; _excludedFromTax[BURN_ADDRESS] = true; } /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); } /// @dev overrides transfer function to meet tokenomics of a WS token function _transfer( address sender, address recipient, uint256 amount ) internal virtual override antiWhale(sender, recipient, amount) { if (transferTaxRate == 0 || _excludedFromTax[sender] || _excludedFromTax[recipient]) { super._transfer(sender, recipient, amount); } else { // tax is 3% of every transfer uint256 burnAmount = amount.mul(transferTaxRate).div(10000); // 97% of transfer sent to recipient uint256 sendAmount = amount.sub(burnAmount); require( amount == sendAmount + burnAmount, "transfer: Tax value invalid" ); super._transfer(sender, BURN_ADDRESS, burnAmount); super._transfer(sender, recipient, sendAmount); amount = sendAmount; } } /** * @dev Returns the max transfer amount. */ function maxTransferAmount() public view returns (uint256) { return totalSupply().mul(maxTransferAmountRate).div(10000); } /** * @dev Returns the address is excluded from antiWhale or not. */ function isExcludedFromAntiWhale(address _account) public view returns (bool) { return _excludedFromAntiWhale[_account]; } /** * @dev Returns the address is excluded from tax or not. */ function isExcludedFromTax(address _account) public view returns (bool) { return _excludedFromTax[_account]; } // To receive BNB from swapRouter when swapping receive() external payable {} /** * @dev Exclude or include an address from antiWhale. * Can only be called by the current operator. */ function setExcludedFromAntiWhale(address _account, bool _excluded) public onlyOperator { _excludedFromAntiWhale[_account] = _excluded; } /** * @dev Exclude or include an address from tax. * Can only be called by the current operator. */ function setExcludedFromTax(address _account, bool _excluded) public onlyOperator { _excludedFromTax[_account] = _excluded; } /** * @dev Returns the address of the current operator. */ function operator() public view returns (address) { return _operator; } /** * @dev Transfers operator of the contract to a new account (`newOperator`). * Can only be called by the current operator. */ function transferOperator(address newOperator) public onlyOperator { require( newOperator != address(0), "transferOperator: new operator is the zero address" ); emit OperatorTransferred(_operator, newOperator); _operator = newOperator; } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @dev A record of each accounts delegate mapping(address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping(address => mapping(uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping(address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256( "EIP712Domain(string name,uint256 chainId,address verifyingContract)" ); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping(address => uint256) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged( address indexed delegator, address indexed fromDelegate, address indexed toDelegate ); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged( address indexed delegate, uint256 previousBalance, uint256 newBalance ); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry) ); bytes32 digest = keccak256( abi.encodePacked("\x19\x01", domainSeparator, structHash) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "delegateBySig: invalid nonce"); require(now <= expiry, "delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) external view returns (uint256) { require( blockNumber < block.number, "getPriorVotes: not yet determined" ); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying WS tokens (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates( address srcRep, address dstRep, uint256 amount ) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32( block.number, "_writeCheckpoint: block number exceeds 32 bits" ); if ( nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber ) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint( blockNumber, newVotes ); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.0; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/GSN/Context.sol'; import './IBEP20.sol'; import '@openzeppelin/contracts/math/SafeMath.sol'; /** * @dev Implementation of the {IBEP20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {BEP20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-BEP20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of BEP20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IBEP20-approve}. */ contract BEP20 is Context, IBEP20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return owner(); } /** * @dev Returns the name of the token. */ function name() public override view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public override view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. */ function decimals() public override view returns (uint8) { return _decimals; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom (address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, 'BEP20: transfer amount exceeds allowance') ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'BEP20: decreased allowance below zero')); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer (address sender, address recipient, uint256 amount) virtual internal { require(sender != address(0), 'BEP20: transfer from the zero address'); require(recipient != address(0), 'BEP20: transfer to the zero address'); _balances[sender] = _balances[sender].sub(amount, 'BEP20: transfer amount exceeds balance'); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), 'BEP20: mint to the zero address'); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), 'BEP20: burn from the zero address'); _balances[account] = _balances[account].sub(amount, 'BEP20: burn amount exceeds balance'); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve (address owner, address spender, uint256 amount) internal { require(owner != address(0), 'BEP20: approve from the zero address'); require(spender != address(0), 'BEP20: approve to the zero address'); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, 'BEP20: burn amount exceeds allowance')); } }
pragma solidity >=0.6.4; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IPresale { /** * @dev Amount of tokens bought by each wallet on the presale */ function tokensBought(address wallet) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IReferral { /** * @dev Record referral. */ function recordReferral(address user, address referrer) external; /** * @dev Get the referrer address that referred the user. */ function getReferrer(address user) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./IUniswapV2Router01.sol"; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IBEP20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** * @title SafeBEP20 * @dev Wrappers around BEP20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeBEP20 for IBEP20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeBEP20 { using SafeMath for uint256; using Address for address; function safeTransfer(IBEP20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IBEP20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IBEP20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IBEP20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeBEP20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IBEP20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IBEP20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeBEP20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IBEP20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeBEP20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeBEP20: BEP20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract KulToken","name":"_ws","type":"address"},{"internalType":"address","name":"_devaddr","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"uint256[]","name":"_wsPerBlockPhases","type":"uint256[]"},{"internalType":"uint256[]","name":"_wsPerBlockBreakpoints","type":"uint256[]"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":false,"internalType":"uint256","name":"commissionAmount","type":"uint256"}],"name":"ReferralCommissionPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"StartBlockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IBEP20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_exclusive","type":"bool"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_referrer","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingWs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IBEP20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accWsPerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"},{"internalType":"uint256","name":"tokensPerBlock","type":"uint256"},{"internalType":"bool","name":"exclusive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"contract IPresale","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referral","outputs":[{"internalType":"contract IReferral","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCommissionRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPresale","name":"_presale","type":"address"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReferral","name":"_referral","type":"address"}],"name":"setReferral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"}],"name":"tokensBetweenBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ws","outputs":[{"internalType":"contract KulToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wsPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wsPerBlockBreakpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wsPerBlockPhases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600955600b805461ffff60a01b1916601960a21b1790553480156200002a57600080fd5b50604051620027b7380380620027b7833981810160405260c08110156200005057600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200008457600080fd5b9083019060208201858111156200009a57600080fd5b8251866020820283011164010000000082111715620000b857600080fd5b82525081516020918201928201910280838360005b83811015620000e7578181015183820152602001620000cd565b50505050905001604052602001805160405193929190846401000000008211156200011157600080fd5b9083019060208201858111156200012757600080fd5b82518660208202830111640100000000821117156200014557600080fd5b82525081516020918201928201910280838360005b83811015620001745781810151838201526020016200015a565b50505050919091016040525060200151915060009050620001946200025a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600280546001600160a01b038089166001600160a01b0319928316179092556003805488841690831617905560068054928716929091169190911790558251620002349060049060208601906200025e565b5081516200024a9060059060208501906200025e565b50600a5550620002c59350505050565b3390565b8280548282559060005260206000209081019282156200029c579160200282015b828111156200029c5782518255916020019190600101906200027f565b50620002aa929150620002ae565b5090565b5b80821115620002aa5760008155600101620002af565b6124e280620002d56000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80638705fcd41161010f578063d49e77cd116100a2578063f2fde38b11610071578063f2fde38b1461054d578063f35e4a6e14610573578063fccc281314610590578063fdea8e0b14610598576101e5565b8063d49e77cd146104bc578063d5fcc7b6146104c4578063dc9464b9146104ea578063dcbf1b9514610530576101e5565b80639e5914da116100de5780639e5914da1461042d578063b21098ee14610453578063cc07b1ed1461045b578063d30ef61b1461049d576101e5565b80638705fcd4146103885780638da5cb5b146103ae5780638dbdbe6d146103b657806393f1a40b146103e8576101e5565b8063441a3e7011610187578063630b5ba111610156578063630b5ba11461034d578063715018a61461035557806383b9010d1461035d57806385efc8e914610365576101e5565b8063441a3e70146102e657806348cd4cb11461030b57806351eb05a6146103135780635312ea8e14610330576101e5565b806316a0fa00116101c357806316a0fa001461028d57806317caf6f1146102aa57806341275358146102b2578063428740c3146102ba576101e5565b8063081e3eda146101ea5780631441a5a9146102045780631526fe2714610228575b600080fd5b6101f26105a0565b60408051918252519081900360200190f35b61020c6105a7565b604080516001600160a01b039092168252519081900360200190f35b6102456004803603602081101561023e57600080fd5b50356105b6565b604080516001600160a01b039098168852602088019690965286860194909452606086019290925261ffff16608085015260a0840152151560c0830152519081900360e00190f35b6101f2600480360360208110156102a357600080fd5b5035610613565b6101f2610631565b61020c610637565b6101f2600480360360408110156102d057600080fd5b50803590602001356001600160a01b0316610646565b610309600480360360408110156102fc57600080fd5b508035906020013561079e565b005b6101f261095f565b6103096004803603602081101561032957600080fd5b5035610965565b6103096004803603602081101561034657600080fd5b5035610b80565b610309610c80565b610309610ca3565b61020c610d45565b6101f26004803603604081101561037b57600080fd5b5080359060200135610d54565b6103096004803603602081101561039e57600080fd5b50356001600160a01b0316610e6d565b61020c610f18565b610309600480360360608110156103cc57600080fd5b50803590602081013590604001356001600160a01b0316610f27565b610414600480360360408110156103fe57600080fd5b50803590602001356001600160a01b03166113a6565b6040805192835260208301919091528051918290030190f35b6103096004803603602081101561044357600080fd5b50356001600160a01b03166113ca565b6101f2611444565b6104896004803603604081101561047157600080fd5b506001600160a01b03813516906020013515156114bc565b604080519115158252519081900360200190f35b6104a56114dc565b6040805161ffff9092168252519081900360200190f35b61020c6114ed565b610309600480360360208110156104da57600080fd5b50356001600160a01b03166114fc565b610309600480360360a081101561050057600080fd5b508035906001600160a01b036020820135169061ffff604082013516906060810135151590608001351515611576565b6101f26004803603602081101561054657600080fd5b50356117d4565b6103096004803603602081101561056357600080fd5b50356001600160a01b03166117e1565b6103096004803603602081101561058957600080fd5b50356118d9565b61020c611a3c565b61020c611a42565b6007545b90565b600b546001600160a01b031681565b600781815481106105c357fe5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b03909516965092949193909261ffff16919060ff1687565b6004818154811061062057fe5b600091825260209091200154905081565b60095481565b6006546001600160a01b031681565b6000806007848154811061065657fe5b600091825260208083208784526008825260408085206001600160a01b0389811687529084528186206007959095029092016003810154815483516370a0823160e01b815230600482015293519298509596909590949316926370a082319260248082019391829003018186803b1580156106d057600080fd5b505afa1580156106e4573d6000803e3d6000fd5b505050506040513d60208110156106fa57600080fd5b505160028501549091504311801561071157508015155b1561076357600061074060095461073a8760010154610734896002015443610d54565b90611a51565b90611ab1565b905061075f6107588361073a8464e8d4a51000611a51565b8490611af3565b9250505b610791836001015461078b64e8d4a5100061073a868860000154611a5190919063ffffffff16565b90611b4d565b9450505050505b92915050565b600260015414156107f6576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260018190555060006007838154811061080d57fe5b600091825260208083208684526008825260408085203386529092529220805460079092029092019250831115610880576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61088984610965565b60006108b7826001015461078b64e8d4a5100061073a87600301548760000154611a5190919063ffffffff16565b905080156108d3576108c93382611b8f565b6108d33382611d78565b83156108fd5781546108e59085611b4d565b825582546108fd906001600160a01b03163386611f1b565b600383015482546109189164e8d4a510009161073a91611a51565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505060018055505050565b600a5481565b60006007828154811061097457fe5b90600052602060002090600702019050806002015443116109955750610b7d565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156109df57600080fd5b505afa1580156109f3573d6000803e3d6000fd5b505050506040513d6020811015610a0957600080fd5b50519050801580610a1c57506001820154155b15610a2e575043600290910155610b7d565b6000610a4c60095461073a8560010154610734876002015443610d54565b6002549091506001600160a01b03166340c10f1961dead610a6e84600a611ab1565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610ab457600080fd5b505af1158015610ac8573d6000803e3d6000fd5b5050600254604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b158015610b1f57600080fd5b505af1158015610b33573d6000803e3d6000fd5b50505050610b61610b568361073a64e8d4a5100085611a5190919063ffffffff16565b600385015490611af3565b6003840155610b6e611444565b60058401555050436002909101555b50565b60026001541415610bd8576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060078281548110610bef57fe5b600091825260208083208584526008825260408085203380875293528420805485825560018201959095556007909302018054909450919291610c3f916001600160a01b03919091169083611f1b565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b60075460005b81811015610c9f57610c9781610965565b600101610c86565b5050565b610cab611f72565b6000546001600160a01b03908116911614610cfb576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6002546001600160a01b031681565b60008083815b600554811015610e2c578160058281548110610d7257fe5b90600052602060002001541115610e2457600060058281548110610d9257fe5b90600052602060002001548611610da95785610dc2565b60058281548110610db657fe5b90600052602060002001545b9050610df4610ded60048481548110610dd757fe5b6000918252602090912001546107348487611b4d565b8590611af3565b93508560058381548110610e0457fe5b90600052602060002001541115610e215783945050505050610798565b91505b600101610d5a565b5060048054610e6491610e5d916000198101908110610e4757fe5b6000918252602090912001546107348785611b4d565b8390611af3565b95945050505050565b6006546001600160a01b03163314610ecc576040805162461bcd60e51b815260206004820152601860248201527f736574466565416464726573733a20464f5242494444454e0000000000000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03831690811790915560405133907fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f790600090a350565b6000546001600160a01b031690565b60026001541415610f7f576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060078481548110610f9657fe5b60009182526020808320878452600882526040808520338652909252922060079091029091019150610fc785610965565b83156110e4578154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561101757600080fd5b505afa15801561102b573d6000803e3d6000fd5b505050506040513d602081101561104157600080fd5b5051835490915061105d906001600160a01b0316333088611f76565b8254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156110a757600080fd5b505afa1580156110bb573d6000803e3d6000fd5b505050506040513d60208110156110d157600080fd5b505190506110df8183611b4d565b955050505b600682015460ff1680156111025750600c546001600160a01b031615155b156111c1578054600c546040805163264d779760e01b81523360048201529051928701926001600160a01b039092169163264d779791602480820192602092909190829003018186803b15801561115857600080fd5b505afa15801561116c573d6000803e3d6000fd5b505050506040513d602081101561118257600080fd5b505110156111c15760405162461bcd60e51b815260040180806020018281038252602281526020018061245c6022913960400191505060405180910390fd5b6000841180156111db5750600b546001600160a01b031615155b80156111ef57506001600160a01b03831615155b801561120457506001600160a01b0383163314155b1561127657600b5460408051630c7f7b6b60e01b81523360048201526001600160a01b03868116602483015291519190921691630c7f7b6b91604480830192600092919082900301818387803b15801561125d57600080fd5b505af1158015611271573d6000803e3d6000fd5b505050505b8054156112c95760006112ab826001015461078b64e8d4a5100061073a87600301548760000154611a5190919063ffffffff16565b905080156112c7576112bd3382611b8f565b6112c73382611d78565b505b831561134457600482015461ffff16156113355760048201546000906112fc906127109061073a90889061ffff16611a51565b600654845491925061131b916001600160a01b03908116911683611f1b565b815461132d90829061078b9088611af3565b825550611344565b80546113419085611af3565b81555b6003820154815461135f9164e8d4a510009161073a91611a51565b6001820155604080518581529051869133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505060018055505050565b60086020908152600092835260408084209091529082529020805460019091015482565b6113d2611f72565b6000546001600160a01b03908116911614611422576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000805b60055481101561149957436005828154811061146057fe5b90600052602060002001541115611491576004818154811061147e57fe5b90600052602060002001549150506105a4565b600101611448565b506004805460001981019081106114ac57fe5b9060005260206000200154905090565b600d60209081526000928352604080842090915290825290205460ff1681565b600b54600160a01b900461ffff1681565b6003546001600160a01b031681565b611504611f72565b6000546001600160a01b03908116911614611554576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b61157e611f72565b6000546001600160a01b039081169116146115ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600d6020908152604080832085151584529091529020548490839060ff161561164d576040805162461bcd60e51b815260206004820152601960248201527f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000604482015290519081900360640190fd5b60c78561ffff1611156116915760405162461bcd60e51b815260040180806020018281038252602581526020018061235d6025913960400191505060405180910390fd5b821561169f5761169f610c80565b6000600a5443116116b257600a546116b4565b435b6009549091506116c49089611af3565b6009556001600160a01b0387166000818152600d6020908152604080832089151584528252808320805460ff19166001179055805160e0810182529384529083018b90528201839052606082015261ffff8716608082015260079060a0810161172b611444565b8152961515602097880152815460018082018455600093845292889020825160079092020180546001600160a01b0319166001600160a01b0390921691909117815596810151918701919091556040810151600287015560608101516003870155608081015160048701805461ffff191661ffff90921691909117905560a0810151600587015560c001516006909501805460ff19169515159590951790945550505050505050565b6005818154811061062057fe5b6117e9611f72565b6000546001600160a01b03908116911614611839576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b6001600160a01b03811661187e5760405162461bcd60e51b81526004018080602001828103825260268152602001806123ac6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6003546001600160a01b03163314611938576040805162461bcd60e51b815260206004820152601a60248201527f7365745374617274426c6f636b3a206e6f7420616c6c6f776564000000000000604482015290519081900360640190fd5b43600a54116119785760405162461bcd60e51b81526004018080602001828103825260238152602001806124396023913960400191505060405180910390fd5b4381116119b65760405162461bcd60e51b815260040180806020018281038252602f81526020018061247e602f913960400191505060405180910390fd5b600a80549082905560075460005b818110156119fb576000600782815481106119db57fe5b60009182526020909120600a5460079092020160020155506001016119c4565b50604080518381526020810185905281517f8774aa9221f02a7971c04902013456be92b6a521a2347a44ec6610e4b9a5d8fc929181900390910190a1505050565b61dead81565b600c546001600160a01b031681565b600082611a6057506000610798565b82820282848281611a6d57fe5b0414611aaa5760405162461bcd60e51b81526004018080602001828103825260218152602001806123f86021913960400191505060405180910390fd5b9392505050565b6000611aaa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fd0565b600082820183811015611aaa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000611aaa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612072565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611bda57600080fd5b505afa158015611bee573d6000803e3d6000fd5b505050506040513d6020811015611c0457600080fd5b50519050600081831115611c9b576002546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611c6857600080fd5b505af1158015611c7c573d6000803e3d6000fd5b505050506040513d6020811015611c9257600080fd5b50519050611d20565b6002546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611cf157600080fd5b505af1158015611d05573d6000803e3d6000fd5b505050506040513d6020811015611d1b57600080fd5b505190505b80611d72576040805162461bcd60e51b815260206004820152601f60248201527f7361666557735472616e736665723a207472616e73666572206661696c656400604482015290519081900360640190fd5b50505050565b600b546001600160a01b031615801590611d9e5750600b54600160a01b900461ffff1615155b15610c9f57600b5460408051634a9fefc760e01b81526001600160a01b03858116600483015291516000939290921691634a9fefc791602480820192602092909190829003018186803b158015611df457600080fd5b505afa158015611e08573d6000803e3d6000fd5b505050506040513d6020811015611e1e57600080fd5b5051600b54909150600090611e47906127109061073a908690600160a01b900461ffff16611a51565b90506001600160a01b03821615801590611e615750600081115b15611d7257600254604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b158015611ebb57600080fd5b505af1158015611ecf573d6000803e3d6000fd5b50506040805184815290516001600160a01b038087169450881692507f86ddab457291316e0f5496737e5ca67c4037234c32c3be04c48ae96186893a7b9181900360200190a350505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611f6d9084906120cc565b505050565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611d729085906120cc565b6000818361205c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612021578181015183820152602001612009565b50505050905090810190601f16801561204e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161206857fe5b0495945050505050565b600081848411156120c45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612021578181015183820152602001612009565b505050900390565b6060612121826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661217d9092919063ffffffff16565b805190915015611f6d5780806020019051602081101561214057600080fd5b5051611f6d5760405162461bcd60e51b815260040180806020018281038252602a815260200180612382602a913960400191505060405180910390fd5b606061218c8484600085612194565b949350505050565b6060824710156121d55760405162461bcd60e51b81526004018080602001828103825260268152602001806123d26026913960400191505060405180910390fd5b6121de856122f0565b61222f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061226e5780518252601f19909201916020918201910161224f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146122d0576040519150601f19603f3d011682016040523d82523d6000602084013e6122d5565b606091505b50915091506122e58282866122f6565b979650505050505050565b3b151590565b60608315612305575081611aaa565b8251156123155782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561202157818101518382015260200161200956fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65727365745374617274426c6f636b3a206661726d20616c726561647920737461727465646465706f7369743a20657863656564732070726573616c6520616c6c6f77616e63657365745374617274426c6f636b3a206e6577207374617274206d75737420626520612066757475726520626c6f636ba2646970667358221220d23a5fdbbec4b59eefc4d8b45bb524d4fb3b9653611dff503e06ac175e8e72b764736f6c634300060c0033000000000000000000000000bf91b32c6974d0397b2d4a35d9f79443230b3135000000000000000000000000e13f209e7959fce757c0da26982a3f0b76dfdc5a000000000000000000000000e13f209e7959fce757c0da26982a3f0b76dfdc5a00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000114a45000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000058d15e17628000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000114b0f800000000000000000000000000000000000000000000000000000000011548d80000000000000000000000000000000000000000000000000000000001179bb0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80638705fcd41161010f578063d49e77cd116100a2578063f2fde38b11610071578063f2fde38b1461054d578063f35e4a6e14610573578063fccc281314610590578063fdea8e0b14610598576101e5565b8063d49e77cd146104bc578063d5fcc7b6146104c4578063dc9464b9146104ea578063dcbf1b9514610530576101e5565b80639e5914da116100de5780639e5914da1461042d578063b21098ee14610453578063cc07b1ed1461045b578063d30ef61b1461049d576101e5565b80638705fcd4146103885780638da5cb5b146103ae5780638dbdbe6d146103b657806393f1a40b146103e8576101e5565b8063441a3e7011610187578063630b5ba111610156578063630b5ba11461034d578063715018a61461035557806383b9010d1461035d57806385efc8e914610365576101e5565b8063441a3e70146102e657806348cd4cb11461030b57806351eb05a6146103135780635312ea8e14610330576101e5565b806316a0fa00116101c357806316a0fa001461028d57806317caf6f1146102aa57806341275358146102b2578063428740c3146102ba576101e5565b8063081e3eda146101ea5780631441a5a9146102045780631526fe2714610228575b600080fd5b6101f26105a0565b60408051918252519081900360200190f35b61020c6105a7565b604080516001600160a01b039092168252519081900360200190f35b6102456004803603602081101561023e57600080fd5b50356105b6565b604080516001600160a01b039098168852602088019690965286860194909452606086019290925261ffff16608085015260a0840152151560c0830152519081900360e00190f35b6101f2600480360360208110156102a357600080fd5b5035610613565b6101f2610631565b61020c610637565b6101f2600480360360408110156102d057600080fd5b50803590602001356001600160a01b0316610646565b610309600480360360408110156102fc57600080fd5b508035906020013561079e565b005b6101f261095f565b6103096004803603602081101561032957600080fd5b5035610965565b6103096004803603602081101561034657600080fd5b5035610b80565b610309610c80565b610309610ca3565b61020c610d45565b6101f26004803603604081101561037b57600080fd5b5080359060200135610d54565b6103096004803603602081101561039e57600080fd5b50356001600160a01b0316610e6d565b61020c610f18565b610309600480360360608110156103cc57600080fd5b50803590602081013590604001356001600160a01b0316610f27565b610414600480360360408110156103fe57600080fd5b50803590602001356001600160a01b03166113a6565b6040805192835260208301919091528051918290030190f35b6103096004803603602081101561044357600080fd5b50356001600160a01b03166113ca565b6101f2611444565b6104896004803603604081101561047157600080fd5b506001600160a01b03813516906020013515156114bc565b604080519115158252519081900360200190f35b6104a56114dc565b6040805161ffff9092168252519081900360200190f35b61020c6114ed565b610309600480360360208110156104da57600080fd5b50356001600160a01b03166114fc565b610309600480360360a081101561050057600080fd5b508035906001600160a01b036020820135169061ffff604082013516906060810135151590608001351515611576565b6101f26004803603602081101561054657600080fd5b50356117d4565b6103096004803603602081101561056357600080fd5b50356001600160a01b03166117e1565b6103096004803603602081101561058957600080fd5b50356118d9565b61020c611a3c565b61020c611a42565b6007545b90565b600b546001600160a01b031681565b600781815481106105c357fe5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b03909516965092949193909261ffff16919060ff1687565b6004818154811061062057fe5b600091825260209091200154905081565b60095481565b6006546001600160a01b031681565b6000806007848154811061065657fe5b600091825260208083208784526008825260408085206001600160a01b0389811687529084528186206007959095029092016003810154815483516370a0823160e01b815230600482015293519298509596909590949316926370a082319260248082019391829003018186803b1580156106d057600080fd5b505afa1580156106e4573d6000803e3d6000fd5b505050506040513d60208110156106fa57600080fd5b505160028501549091504311801561071157508015155b1561076357600061074060095461073a8760010154610734896002015443610d54565b90611a51565b90611ab1565b905061075f6107588361073a8464e8d4a51000611a51565b8490611af3565b9250505b610791836001015461078b64e8d4a5100061073a868860000154611a5190919063ffffffff16565b90611b4d565b9450505050505b92915050565b600260015414156107f6576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260018190555060006007838154811061080d57fe5b600091825260208083208684526008825260408085203386529092529220805460079092029092019250831115610880576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61088984610965565b60006108b7826001015461078b64e8d4a5100061073a87600301548760000154611a5190919063ffffffff16565b905080156108d3576108c93382611b8f565b6108d33382611d78565b83156108fd5781546108e59085611b4d565b825582546108fd906001600160a01b03163386611f1b565b600383015482546109189164e8d4a510009161073a91611a51565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505060018055505050565b600a5481565b60006007828154811061097457fe5b90600052602060002090600702019050806002015443116109955750610b7d565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156109df57600080fd5b505afa1580156109f3573d6000803e3d6000fd5b505050506040513d6020811015610a0957600080fd5b50519050801580610a1c57506001820154155b15610a2e575043600290910155610b7d565b6000610a4c60095461073a8560010154610734876002015443610d54565b6002549091506001600160a01b03166340c10f1961dead610a6e84600a611ab1565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610ab457600080fd5b505af1158015610ac8573d6000803e3d6000fd5b5050600254604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b158015610b1f57600080fd5b505af1158015610b33573d6000803e3d6000fd5b50505050610b61610b568361073a64e8d4a5100085611a5190919063ffffffff16565b600385015490611af3565b6003840155610b6e611444565b60058401555050436002909101555b50565b60026001541415610bd8576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060078281548110610bef57fe5b600091825260208083208584526008825260408085203380875293528420805485825560018201959095556007909302018054909450919291610c3f916001600160a01b03919091169083611f1b565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b60075460005b81811015610c9f57610c9781610965565b600101610c86565b5050565b610cab611f72565b6000546001600160a01b03908116911614610cfb576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6002546001600160a01b031681565b60008083815b600554811015610e2c578160058281548110610d7257fe5b90600052602060002001541115610e2457600060058281548110610d9257fe5b90600052602060002001548611610da95785610dc2565b60058281548110610db657fe5b90600052602060002001545b9050610df4610ded60048481548110610dd757fe5b6000918252602090912001546107348487611b4d565b8590611af3565b93508560058381548110610e0457fe5b90600052602060002001541115610e215783945050505050610798565b91505b600101610d5a565b5060048054610e6491610e5d916000198101908110610e4757fe5b6000918252602090912001546107348785611b4d565b8390611af3565b95945050505050565b6006546001600160a01b03163314610ecc576040805162461bcd60e51b815260206004820152601860248201527f736574466565416464726573733a20464f5242494444454e0000000000000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03831690811790915560405133907fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f790600090a350565b6000546001600160a01b031690565b60026001541415610f7f576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060078481548110610f9657fe5b60009182526020808320878452600882526040808520338652909252922060079091029091019150610fc785610965565b83156110e4578154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561101757600080fd5b505afa15801561102b573d6000803e3d6000fd5b505050506040513d602081101561104157600080fd5b5051835490915061105d906001600160a01b0316333088611f76565b8254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156110a757600080fd5b505afa1580156110bb573d6000803e3d6000fd5b505050506040513d60208110156110d157600080fd5b505190506110df8183611b4d565b955050505b600682015460ff1680156111025750600c546001600160a01b031615155b156111c1578054600c546040805163264d779760e01b81523360048201529051928701926001600160a01b039092169163264d779791602480820192602092909190829003018186803b15801561115857600080fd5b505afa15801561116c573d6000803e3d6000fd5b505050506040513d602081101561118257600080fd5b505110156111c15760405162461bcd60e51b815260040180806020018281038252602281526020018061245c6022913960400191505060405180910390fd5b6000841180156111db5750600b546001600160a01b031615155b80156111ef57506001600160a01b03831615155b801561120457506001600160a01b0383163314155b1561127657600b5460408051630c7f7b6b60e01b81523360048201526001600160a01b03868116602483015291519190921691630c7f7b6b91604480830192600092919082900301818387803b15801561125d57600080fd5b505af1158015611271573d6000803e3d6000fd5b505050505b8054156112c95760006112ab826001015461078b64e8d4a5100061073a87600301548760000154611a5190919063ffffffff16565b905080156112c7576112bd3382611b8f565b6112c73382611d78565b505b831561134457600482015461ffff16156113355760048201546000906112fc906127109061073a90889061ffff16611a51565b600654845491925061131b916001600160a01b03908116911683611f1b565b815461132d90829061078b9088611af3565b825550611344565b80546113419085611af3565b81555b6003820154815461135f9164e8d4a510009161073a91611a51565b6001820155604080518581529051869133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505060018055505050565b60086020908152600092835260408084209091529082529020805460019091015482565b6113d2611f72565b6000546001600160a01b03908116911614611422576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000805b60055481101561149957436005828154811061146057fe5b90600052602060002001541115611491576004818154811061147e57fe5b90600052602060002001549150506105a4565b600101611448565b506004805460001981019081106114ac57fe5b9060005260206000200154905090565b600d60209081526000928352604080842090915290825290205460ff1681565b600b54600160a01b900461ffff1681565b6003546001600160a01b031681565b611504611f72565b6000546001600160a01b03908116911614611554576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b61157e611f72565b6000546001600160a01b039081169116146115ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600d6020908152604080832085151584529091529020548490839060ff161561164d576040805162461bcd60e51b815260206004820152601960248201527f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000604482015290519081900360640190fd5b60c78561ffff1611156116915760405162461bcd60e51b815260040180806020018281038252602581526020018061235d6025913960400191505060405180910390fd5b821561169f5761169f610c80565b6000600a5443116116b257600a546116b4565b435b6009549091506116c49089611af3565b6009556001600160a01b0387166000818152600d6020908152604080832089151584528252808320805460ff19166001179055805160e0810182529384529083018b90528201839052606082015261ffff8716608082015260079060a0810161172b611444565b8152961515602097880152815460018082018455600093845292889020825160079092020180546001600160a01b0319166001600160a01b0390921691909117815596810151918701919091556040810151600287015560608101516003870155608081015160048701805461ffff191661ffff90921691909117905560a0810151600587015560c001516006909501805460ff19169515159590951790945550505050505050565b6005818154811061062057fe5b6117e9611f72565b6000546001600160a01b03908116911614611839576040805162461bcd60e51b81526020600482018190526024820152600080516020612419833981519152604482015290519081900360640190fd5b6001600160a01b03811661187e5760405162461bcd60e51b81526004018080602001828103825260268152602001806123ac6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6003546001600160a01b03163314611938576040805162461bcd60e51b815260206004820152601a60248201527f7365745374617274426c6f636b3a206e6f7420616c6c6f776564000000000000604482015290519081900360640190fd5b43600a54116119785760405162461bcd60e51b81526004018080602001828103825260238152602001806124396023913960400191505060405180910390fd5b4381116119b65760405162461bcd60e51b815260040180806020018281038252602f81526020018061247e602f913960400191505060405180910390fd5b600a80549082905560075460005b818110156119fb576000600782815481106119db57fe5b60009182526020909120600a5460079092020160020155506001016119c4565b50604080518381526020810185905281517f8774aa9221f02a7971c04902013456be92b6a521a2347a44ec6610e4b9a5d8fc929181900390910190a1505050565b61dead81565b600c546001600160a01b031681565b600082611a6057506000610798565b82820282848281611a6d57fe5b0414611aaa5760405162461bcd60e51b81526004018080602001828103825260218152602001806123f86021913960400191505060405180910390fd5b9392505050565b6000611aaa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fd0565b600082820183811015611aaa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000611aaa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612072565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611bda57600080fd5b505afa158015611bee573d6000803e3d6000fd5b505050506040513d6020811015611c0457600080fd5b50519050600081831115611c9b576002546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611c6857600080fd5b505af1158015611c7c573d6000803e3d6000fd5b505050506040513d6020811015611c9257600080fd5b50519050611d20565b6002546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611cf157600080fd5b505af1158015611d05573d6000803e3d6000fd5b505050506040513d6020811015611d1b57600080fd5b505190505b80611d72576040805162461bcd60e51b815260206004820152601f60248201527f7361666557735472616e736665723a207472616e73666572206661696c656400604482015290519081900360640190fd5b50505050565b600b546001600160a01b031615801590611d9e5750600b54600160a01b900461ffff1615155b15610c9f57600b5460408051634a9fefc760e01b81526001600160a01b03858116600483015291516000939290921691634a9fefc791602480820192602092909190829003018186803b158015611df457600080fd5b505afa158015611e08573d6000803e3d6000fd5b505050506040513d6020811015611e1e57600080fd5b5051600b54909150600090611e47906127109061073a908690600160a01b900461ffff16611a51565b90506001600160a01b03821615801590611e615750600081115b15611d7257600254604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b158015611ebb57600080fd5b505af1158015611ecf573d6000803e3d6000fd5b50506040805184815290516001600160a01b038087169450881692507f86ddab457291316e0f5496737e5ca67c4037234c32c3be04c48ae96186893a7b9181900360200190a350505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611f6d9084906120cc565b505050565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611d729085906120cc565b6000818361205c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612021578181015183820152602001612009565b50505050905090810190601f16801561204e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161206857fe5b0495945050505050565b600081848411156120c45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612021578181015183820152602001612009565b505050900390565b6060612121826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661217d9092919063ffffffff16565b805190915015611f6d5780806020019051602081101561214057600080fd5b5051611f6d5760405162461bcd60e51b815260040180806020018281038252602a815260200180612382602a913960400191505060405180910390fd5b606061218c8484600085612194565b949350505050565b6060824710156121d55760405162461bcd60e51b81526004018080602001828103825260268152602001806123d26026913960400191505060405180910390fd5b6121de856122f0565b61222f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061226e5780518252601f19909201916020918201910161224f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146122d0576040519150601f19603f3d011682016040523d82523d6000602084013e6122d5565b606091505b50915091506122e58282866122f6565b979650505050505050565b3b151590565b60608315612305575081611aaa565b8251156123155782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561202157818101518382015260200161200956fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65727365745374617274426c6f636b3a206661726d20616c726561647920737461727465646465706f7369743a20657863656564732070726573616c6520616c6c6f77616e63657365745374617274426c6f636b3a206e6577207374617274206d75737420626520612066757475726520626c6f636ba2646970667358221220d23a5fdbbec4b59eefc4d8b45bb524d4fb3b9653611dff503e06ac175e8e72b764736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bf91b32c6974d0397b2d4a35d9f79443230b3135000000000000000000000000e13f209e7959fce757c0da26982a3f0b76dfdc5a000000000000000000000000e13f209e7959fce757c0da26982a3f0b76dfdc5a00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000114a45000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000058d15e17628000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000114b0f800000000000000000000000000000000000000000000000000000000011548d80000000000000000000000000000000000000000000000000000000001179bb0
-----Decoded View---------------
Arg [0] : _ws (address): 0xBF91B32C6974D0397b2D4a35d9f79443230B3135
Arg [1] : _devaddr (address): 0xe13F209E7959Fce757C0DA26982A3F0B76DFdc5A
Arg [2] : _feeAddress (address): 0xe13F209E7959Fce757C0DA26982A3F0B76DFdc5A
Arg [3] : _wsPerBlockPhases (uint256[]): 4000000000000000000,1000000000000000000,400000000000000000,0
Arg [4] : _wsPerBlockBreakpoints (uint256[]): 18133240,18172120,18324400
Arg [5] : _startBlock (uint256): 18130000
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 000000000000000000000000bf91b32c6974d0397b2d4a35d9f79443230b3135
Arg [1] : 000000000000000000000000e13f209e7959fce757c0da26982a3f0b76dfdc5a
Arg [2] : 000000000000000000000000e13f209e7959fce757c0da26982a3f0b76dfdc5a
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 000000000000000000000000000000000000000000000000000000000114a450
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 0000000000000000000000000000000000000000000000003782dace9d900000
Arg [8] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [9] : 000000000000000000000000000000000000000000000000058d15e176280000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 000000000000000000000000000000000000000000000000000000000114b0f8
Arg [13] : 00000000000000000000000000000000000000000000000000000000011548d8
Arg [14] : 0000000000000000000000000000000000000000000000000000000001179bb0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.