Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60c06040 | 17315199 | 555 days ago | IN | 0 ETH | 0.17835437 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ConvexStakingWrapperFrax
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; pragma experimental ABIEncoderV2; import "./ConvexStakingWrapper.sol"; import "../interfaces/IProxyFactory.sol"; import "../interfaces/IOwner.sol"; interface IFraxFarmDistributor { function initialize(address _farm, address _wrapper) external; } interface IFraxFarm { function lockedLiquidityOf(address account) external view returns (uint256 amount); } //Staking wrapper for Frax Finance platform //use convex LP positions as collateral while still receiving rewards // //This version directs all rewards from the vault(fxs gauge) to a distributor contract //which will feed the rewards back into the vault contract ConvexStakingWrapperFrax is ConvexStakingWrapper { using SafeERC20 for IERC20; using SafeMath for uint256; address public immutable distroImplementation; address public immutable factory; address public constant proxyFactory = address(0x66807B5598A848602734B82E432dD88DBE13fC8f); address public distroContract; bool public distroSealed; constructor(address _distributor, address _factory) public{ distroImplementation = _distributor; factory = _factory; } modifier onlyOwner() override{ require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } function owner() public view override returns(address) { return IOwner(factory).owner(); } function initialize(uint256 _poolId) override external { require(!isInit,"already init"); // _owner = msg.sender; // emit OwnershipTransferred(address(0), _owner); (address _lptoken, address _token, , address _rewards, , ) = IBooster(convexBooster).poolInfo(_poolId); curveToken = _lptoken; convexToken = _token; convexPool = _rewards; convexPoolId = _poolId; _tokenname = string(abi.encodePacked("Staked ", ERC20(_token).name(), " Frax" )); _tokensymbol = string(abi.encodePacked("stk", ERC20(_token).symbol(), "-frax")); isShutdown = false; isInit = true; //add rewards addRewards(); setApprovals(); } function _getDepositedBalance(address _account) internal override view returns(uint256) { if (_account == address(0) || _account == collateralVault) { return 0; } uint256 collateral; if(collateralVault != address(0)){ collateral = IFraxFarm(collateralVault).lockedLiquidityOf(_account); } return balanceOf(_account).add(collateral); } //add extra check if farm is the caller of claim then pull tokens function _claimExtras(bool _isClaim) internal override{ super._claimExtras(_isClaim); //if the frax farm is the caller, send all crv/cvx to the distribution contract if(_isClaim && msg.sender == distroContract){ uint256 b = IERC20(crv).balanceOf(address(this)); if(b > 0){ _transferReward(crv,distroContract,b); } b = IERC20(cvx).balanceOf(address(this)); if(b > 0){ _transferReward(cvx,distroContract,b); } } } function addTokenReward(address _token) public override onlyOwner { require(_token != crv && _token != cvx,"!revive"); super.addTokenReward(_token); } function setVault(address _vault) external onlyOwner{ //set distro contract to take care of rewards require(distroContract == address(0), "already set"); //create a distro contract distroContract = IProxyFactory(proxyFactory).clone(distroImplementation); IFraxFarmDistributor(distroContract).initialize(_vault, address(this)); //forward rewards from vault to distro rewardRedirect[_vault] = distroContract; collateralVault = _vault; //invalidate crv and cvx so that they are not distributed directly //but rather picked up by the frax farm distributor via _claimExtras invalidateReward(crv); invalidateReward(cvx); } //Also resetting of distributor while this feature is new //Seal once battle tested //Future versions should remove this function setDistributor(address _distro) external onlyOwner{ address _farm = collateralVault; require(_farm != address(0),"!farm"); require(!distroSealed,"sealed"); distroContract = _distro; IFraxFarmDistributor(_distro).initialize(_farm, address(this)); rewardRedirect[_farm] = _distro; } function sealDistributor() external onlyOwner{ distroSealed = true; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "../interfaces/IRewardStaking.sol"; import "../interfaces/IConvexDeposits.sol"; import "../interfaces/CvxMining.sol"; import "../interfaces/IBooster.sol"; import "../interfaces/IRewardHook.sol"; import "../interfaces/ITokenWrapper.sol"; import '@openzeppelin/contracts/math/SafeMath.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; //Example of a tokenize a convex staked position. //if used as collateral some modifications will be needed to fit the specific platform //Based on Curve.fi's gauge wrapper implementations at https://github.com/curvefi/curve-dao-contracts/tree/master/contracts/gauges/wrappers contract ConvexStakingWrapper is ERC20, ReentrancyGuard { using SafeERC20 for IERC20; using SafeMath for uint256; struct EarnedData { address token; uint256 amount; } struct RewardType { address reward_token; address reward_pool; uint256 reward_integral; uint256 reward_remaining; mapping(address => uint256) reward_integral_for; mapping(address => uint256) claimable_reward; } //constants/immutables address public constant convexBooster = address(0xF403C135812408BFbE8713b5A23a04b3D48AAE31); address public constant crv = address(0xD533a949740bb3306d119CC777fa900bA034cd52); address public constant cvx = address(0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B); address public curveToken; address public convexToken; address public convexPool; uint256 public convexPoolId; address public collateralVault; uint256 private constant CRV_INDEX = 0; uint256 private constant CVX_INDEX = 1; //rewards RewardType[] public rewards; mapping(address => uint256) public registeredRewards; address public rewardHook; mapping(address => address) public rewardRedirect; //management bool public isShutdown; bool public isInit; address internal _owner; string internal _tokenname; string internal _tokensymbol; event Deposited(address indexed _user, address indexed _account, uint256 _amount, bool _wrapped); event Withdrawn(address indexed _user, uint256 _amount, bool _unwrapped); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event RewardInvalidated(address _rewardToken); event RewardRedirected(address indexed _account, address _forward); event RewardAdded(address _token); event Shutdown(); event HookSet(address _hook); event UserCheckpoint(address _userA, address _userB); constructor() public ERC20( "StakedConvexToken", "stkCvx" ){ } function initialize(uint256 _poolId) virtual external { require(!isInit,"already init"); _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); (address _lptoken, address _token, , address _rewards, , ) = IBooster(convexBooster).poolInfo(_poolId); curveToken = _lptoken; convexToken = _token; convexPool = _rewards; convexPoolId = _poolId; _tokenname = string(abi.encodePacked("Staked ", ERC20(_token).name() )); _tokensymbol = string(abi.encodePacked("stk", ERC20(_token).symbol())); isShutdown = false; isInit = true; // collateralVault = _vault; //add rewards addRewards(); setApprovals(); } function owner() public view virtual returns(address) { return _owner; } function name() public view override returns (string memory) { return _tokenname; } function symbol() public view override returns (string memory) { return _tokensymbol; } function decimals() public view override returns (uint8) { return 18; } modifier onlyOwner() virtual{ require(_owner == msg.sender, "Ownable: caller is not the 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; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function shutdown() external onlyOwner { isShutdown = true; emit Shutdown(); } function setApprovals() public { IERC20(curveToken).safeApprove(convexBooster, 0); IERC20(curveToken).safeApprove(convexBooster, uint256(-1)); IERC20(convexToken).safeApprove(convexPool, 0); IERC20(convexToken).safeApprove(convexPool, uint256(-1)); } function addRewards() public { address mainPool = convexPool; if (rewards.length == 0) { rewards.push( RewardType({ reward_token: crv, reward_pool: mainPool, reward_integral: 0, reward_remaining: 0 }) ); rewards.push( RewardType({ reward_token: cvx, reward_pool: address(0), reward_integral: 0, reward_remaining: 0 }) ); registeredRewards[crv] = CRV_INDEX+1; //mark registered at index+1 registeredRewards[cvx] = CVX_INDEX+1; //mark registered at index+1 //send to self to warmup state IERC20(crv).transfer(address(this),0); //send to self to warmup state IERC20(cvx).transfer(address(this),0); emit RewardAdded(crv); emit RewardAdded(cvx); } uint256 extraCount = IRewardStaking(mainPool).extraRewardsLength(); for (uint256 i = 0; i < extraCount; i++) { address extraPool = IRewardStaking(mainPool).extraRewards(i); address extraToken = IRewardStaking(extraPool).rewardToken(); //from pool 151, extra reward tokens are wrapped if(convexPoolId >= 151){ extraToken = ITokenWrapper(extraToken).token(); } if(extraToken == cvx){ //update cvx reward pool address rewards[CVX_INDEX].reward_pool = extraPool; }else if(registeredRewards[extraToken] == 0){ //add new token to list rewards.push( RewardType({ reward_token: extraToken, reward_pool: extraPool, reward_integral: 0, reward_remaining: 0 }) ); registeredRewards[extraToken] = rewards.length; //mark registered at index+1 emit RewardAdded(extraToken); } } } function addTokenReward(address _token) public virtual onlyOwner { //check if not registered yet if(registeredRewards[_token] == 0){ //add new token to list rewards.push( RewardType({ reward_token: _token, reward_pool: address(0), reward_integral: 0, reward_remaining: 0 }) ); //add to registered map registeredRewards[_token] = rewards.length; //mark registered at index+1 //send to self to warmup state IERC20(_token).transfer(address(this),0); emit RewardAdded(_token); }else{ //get previous used index of given token //this ensures that reviving can only be done on the previous used slot uint256 index = registeredRewards[_token]; if(index > 0){ //index is registeredRewards minus one RewardType storage reward = rewards[index-1]; //check if it was invalidated if(reward.reward_token == address(0)){ //revive reward.reward_token = _token; emit RewardAdded(_token); } } } } //allow invalidating a reward if the token causes trouble in calcRewardIntegral function invalidateReward(address _token) public onlyOwner { uint256 index = registeredRewards[_token]; if(index > 0){ //index is registered rewards minus one RewardType storage reward = rewards[index-1]; require(reward.reward_token == _token, "!mismatch"); //set reward token address to 0, integral calc will now skip reward.reward_token = address(0); emit RewardInvalidated(_token); } } function setHook(address _hook) external onlyOwner{ rewardHook = _hook; emit HookSet(_hook); } function rewardLength() external view returns(uint256) { return rewards.length; } function _getDepositedBalance(address _account) internal virtual view returns(uint256) { if (_account == address(0) || _account == collateralVault) { return 0; } //get balance from collateralVault return balanceOf(_account); } function _getTotalSupply() internal virtual view returns(uint256){ //override and add any supply needed (interest based growth) return totalSupply(); } //internal transfer function to transfer rewards out on claim function _transferReward(address _token, address _to, uint256 _amount) internal virtual{ IERC20(_token).safeTransfer(_to, _amount); } function _calcRewardIntegral(uint256 _index, address[2] memory _accounts, uint256[2] memory _balances, uint256 _supply, bool _isClaim) internal{ RewardType storage reward = rewards[_index]; if(reward.reward_token == address(0)){ return; } //get difference in balance and remaining rewards //getReward is unguarded so we use reward_remaining to keep track of how much was actually claimed uint256 bal = IERC20(reward.reward_token).balanceOf(address(this)); //check that balance increased and update integral if (_supply > 0 && bal > reward.reward_remaining) { reward.reward_integral = reward.reward_integral + (bal.sub(reward.reward_remaining).mul(1e20).div(_supply)); } //update user integrals for (uint256 u = 0; u < _accounts.length; u++) { //do not give rewards to address 0 if (_accounts[u] == address(0)) continue; if (_accounts[u] == collateralVault) continue; if(_isClaim && u != 0) continue; //only update/claim for first address and use second as forwarding uint userI = reward.reward_integral_for[_accounts[u]]; if(_isClaim || userI < reward.reward_integral){ if(_isClaim){ uint256 receiveable = reward.claimable_reward[_accounts[u]].add(_balances[u].mul( reward.reward_integral.sub(userI)).div(1e20)); if(receiveable > 0){ reward.claimable_reward[_accounts[u]] = 0; //cheat for gas savings by transfering to the second index in accounts list //if claiming only the 0 index will update so 1 index can hold forwarding info //guaranteed to have an address in u+1 so no need to check _transferReward(reward.reward_token, _accounts[u+1], receiveable); bal = bal.sub(receiveable); } }else{ reward.claimable_reward[_accounts[u]] = reward.claimable_reward[_accounts[u]].add(_balances[u].mul( reward.reward_integral.sub(userI)).div(1e20)); } reward.reward_integral_for[_accounts[u]] = reward.reward_integral; } } //update remaining reward here since balance could have changed if claiming if(bal != reward.reward_remaining){ reward.reward_remaining = bal; } } function _checkpoint(address[2] memory _accounts) internal nonReentrant{ uint256 supply = _getTotalSupply(); uint256[2] memory depositedBalance; depositedBalance[0] = _getDepositedBalance(_accounts[0]); depositedBalance[1] = _getDepositedBalance(_accounts[1]); //just in case, dont claim rewards directly if shutdown //can still technically claim via unguarded calls but skipping here //protects against outside calls reverting if(!isShutdown){ IRewardStaking(convexPool).getReward(address(this), true); } _claimExtras(false); uint256 rewardCount = rewards.length; for (uint256 i = 0; i < rewardCount; i++) { _calcRewardIntegral(i,_accounts,depositedBalance,supply,false); } emit UserCheckpoint(_accounts[0],_accounts[1]); } function _checkpointAndClaim(address[2] memory _accounts) internal nonReentrant{ uint256 supply = _getTotalSupply(); uint256[2] memory depositedBalance; depositedBalance[0] = _getDepositedBalance(_accounts[0]); //only do first slot //just in case, dont claim rewards directly if shutdown //can still technically claim via unguarded calls but skipping here //protects against outside calls reverting if(!isShutdown){ IRewardStaking(convexPool).getReward(address(this), true); } _claimExtras(true); uint256 rewardCount = rewards.length; for (uint256 i = 0; i < rewardCount; i++) { _calcRewardIntegral(i,_accounts,depositedBalance,supply,true); } emit UserCheckpoint(_accounts[0],_accounts[1]); } //claim any rewards not part of the convex pool function _claimExtras(bool _isClaim) internal virtual{ //override and add any external reward claiming if(rewardHook != address(0)){ try IRewardHook(rewardHook).onRewardClaim(){ }catch{} } } function user_checkpoint(address _account) external returns(bool) { _checkpoint([_account, address(0)]); return true; } function totalBalanceOf(address _account) external view returns(uint256){ return _getDepositedBalance(_account); } //run earned as a mutable function to claim everything before calculating earned rewards function earned(address _account) external returns(EarnedData[] memory claimable) { //checkpoint to pull in and tally new rewards _checkpoint([_account, address(0)]); return _earned(_account); } function _earned(address _account) internal view returns(EarnedData[] memory claimable) { uint256 rewardCount = rewards.length; claimable = new EarnedData[](rewardCount); for (uint256 i = 0; i < rewardCount; i++) { RewardType storage reward = rewards[i]; if(reward.reward_token == address(0)){ continue; } claimable[i].amount = reward.claimable_reward[_account]; claimable[i].token = reward.reward_token; } return claimable; } //set any claimed rewards to automatically go to a different address //set address to zero to disable function setRewardRedirect(address _to) external nonReentrant{ rewardRedirect[msg.sender] = _to; emit RewardRedirected(msg.sender, _to); } function getReward(address _account) external { //check if there is a redirect address if(rewardRedirect[_account] != address(0)){ _checkpointAndClaim([_account, rewardRedirect[_account]]); }else{ //claim directly in checkpoint logic to save a bit of gas _checkpointAndClaim([_account, _account]); } } function getReward(address _account, address _forwardTo) external { require(msg.sender == _account, "!self"); //claim directly in checkpoint logic to save a bit of gas //pack forwardTo into account array to save gas so that a proxy etc doesnt have to double transfer _checkpointAndClaim([_account,_forwardTo]); } //deposit a curve token function deposit(uint256 _amount, address _to) external { require(!isShutdown, "shutdown"); //dont need to call checkpoint since _mint() will if (_amount > 0) { _mint(_to, _amount); IERC20(curveToken).safeTransferFrom(msg.sender, address(this), _amount); IConvexDeposits(convexBooster).deposit(convexPoolId, _amount, true); } emit Deposited(msg.sender, _to, _amount, true); } //stake a convex token function stake(uint256 _amount, address _to) external { require(!isShutdown, "shutdown"); //dont need to call checkpoint since _mint() will if (_amount > 0) { _mint(_to, _amount); IERC20(convexToken).safeTransferFrom(msg.sender, address(this), _amount); IRewardStaking(convexPool).stake(_amount); } emit Deposited(msg.sender, _to, _amount, false); } //withdraw to convex deposit token function withdraw(uint256 _amount) external { //dont need to call checkpoint since _burn() will if (_amount > 0) { _burn(msg.sender, _amount); IRewardStaking(convexPool).withdraw(_amount, false); IERC20(convexToken).safeTransfer(msg.sender, _amount); } emit Withdrawn(msg.sender, _amount, false); } //withdraw to underlying curve lp token function withdrawAndUnwrap(uint256 _amount) external { //dont need to call checkpoint since _burn() will if (_amount > 0) { _burn(msg.sender, _amount); IRewardStaking(convexPool).withdrawAndUnwrap(_amount, false); IERC20(curveToken).safeTransfer(msg.sender, _amount); } //events emit Withdrawn(msg.sender, _amount, true); } function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override { _checkpoint([_from, _to]); } //helper function function earmarkRewards() external returns(bool){ return IBooster(convexBooster).earmarkRewards(convexPoolId); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface ITokenWrapper { function token() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IRewardStaking { function stakeFor(address, uint256) external; function stake( uint256) external; function withdraw(uint256 amount, bool claim) external; function withdrawAndUnwrap(uint256 amount, bool claim) external; function earned(address account) external view returns (uint256); function getReward() external; function getReward(address _account, bool _claimExtras) external; function extraRewardsLength() external view returns (uint256); function extraRewards(uint256 _pid) external view returns (address); function rewardToken() external view returns (address); function balanceOf(address _account) external view returns (uint256); function rewardRate() external view returns(uint256); function totalSupply() external view returns(uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IRewardHook { function onRewardClaim() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IProxyFactory { function clone(address _target) external returns(address); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IOwner { function setPendingOwner(address _powner) external; function acceptPendingOwner() external; function owner() external view returns(address); function pendingOwner() external view returns(address); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface ICvx { function reductionPerCliff() external view returns(uint256); function totalSupply() external view returns(uint256); function totalCliffs() external view returns(uint256); function maxSupply() external view returns(uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IConvexDeposits { function deposit(uint256 _pid, uint256 _amount, bool _stake) external returns(bool); function deposit(uint256 _amount, bool _lock, address _stakeAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IBooster { function owner() external view returns(address); function feeToken() external view returns(address); function feeDistro() external view returns(address); function lockFees() external view returns(address); function stakerRewards() external view returns(address); function lockRewards() external view returns(address); function setVoteDelegate(address _voteDelegate) external; function vote(uint256 _voteId, address _votingAddress, bool _support) external returns(bool); function voteGaugeWeight(address[] calldata _gauge, uint256[] calldata _weight ) external returns(bool); function poolInfo(uint256 _pid) external view returns(address _lptoken, address _token, address _gauge, address _crvRewards, address _stash, bool _shutdown); function earmarkRewards(uint256 _pid) external returns(bool); function earmarkFees() external returns(bool); function isShutdown() external view returns(bool); function poolLength() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "../interfaces/ICvx.sol"; library CvxMining{ ICvx public constant cvx = ICvx(0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B); function ConvertCrvToCvx(uint256 _amount) external view returns(uint256){ uint256 supply = cvx.totalSupply(); uint256 reductionPerCliff = cvx.reductionPerCliff(); uint256 totalCliffs = cvx.totalCliffs(); uint256 maxSupply = cvx.maxSupply(); uint256 cliff = supply / reductionPerCliff; //mint if below total cliffs if(cliff < totalCliffs){ //for reduction% take inverse of current cliff uint256 reduction = totalCliffs - cliff; //reduce _amount = _amount * reduction / totalCliffs; //supply cap check uint256 amtTillMax = maxSupply - supply; if(_amount > amtTillMax){ _amount = amtTillMax; } //mint return _amount; } return 0; } }
// 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; } }
// 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.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); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(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; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 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 SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 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 * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 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), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 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(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: 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(IERC20 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, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @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.0 <0.8.0; import "../../utils/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} 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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-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 ERC20 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 {IERC20-approve}. */ contract ERC20 is Context, IERC20 { 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 name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: 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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual 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 {IERC20-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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: 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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: 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 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 virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// 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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_distributor","type":"address"},{"internalType":"address","name":"_factory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_wrapped","type":"bool"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_hook","type":"address"}],"name":"HookSet","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":false,"internalType":"address","name":"_token","type":"address"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_rewardToken","type":"address"}],"name":"RewardInvalidated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"address","name":"_forward","type":"address"}],"name":"RewardRedirected","type":"event"},{"anonymous":false,"inputs":[],"name":"Shutdown","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_userA","type":"address"},{"indexed":false,"internalType":"address","name":"_userB","type":"address"}],"name":"UserCheckpoint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_unwrapped","type":"bool"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"addRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"addTokenReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexBooster","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexPoolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curveToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvx","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distroContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distroImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distroSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earmarkRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"earned","outputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ConvexStakingWrapper.EarnedData[]","name":"claimable","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_forwardTo","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"invalidateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isShutdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"registeredRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardHook","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardRedirect","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"address","name":"reward_token","type":"address"},{"internalType":"address","name":"reward_pool","type":"address"},{"internalType":"uint256","name":"reward_integral","type":"uint256"},{"internalType":"uint256","name":"reward_remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sealDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distro","type":"address"}],"name":"setDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hook","type":"address"}],"name":"setHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"setRewardRedirect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shutdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"totalBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"user_checkpoint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAndUnwrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040516200456338038062004563833981016040819052620000349162000171565b604080518082018252601181527029ba30b5b2b221b7b73b32bc2a37b5b2b760791b6020808301918252835180850190945260068452650e6e8d686ecf60d31b9084015281519192916200008b91600391620000d5565b508051620000a1906004906020840190620000d5565b50506005805460ff191660121790555060016006556001600160601b0319606092831b8116608052911b1660a052620001c8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011857805160ff191683800117855562000148565b8280016001018555821562000148579182015b82811115620001485782518255916020019190600101906200012b565b50620001569291506200015a565b5090565b5b808211156200015657600081556001016200015b565b6000806040838503121562000184578182fd5b82516200019181620001af565b6020840151909250620001a481620001af565b809150509250929050565b6001600160a01b0381168114620001c557600080fd5b50565b60805160601c60a05160601c614367620001fc60003980611b645280611e425250806107aa528061139a52506143676000f3fe608060405234801561001057600080fd5b506004361061035c5760003560e01c806375a41014116101d3578063c00007b011610104578063e89133b2116100a2578063f8112eed1161007c578063f8112eed1461066a578063fc0e74d11461067d578063fe4b84df14610685578063ff833485146106985761035c565b8063e89133b21461062c578063f2fde38b14610634578063f301af42146106475761035c565b8063cc7d510e116100de578063cc7d510e146105f6578063dd62ed3e146105fe578063e509b9d914610611578063e529ee95146106245761035c565b8063c00007b0146105d3578063c10f1a75146105e6578063c45a0155146105ee5761035c565b806395d89b4111610171578063a9059cbb1161014b578063a9059cbb146105a8578063b145a5b8146105bb578063b95c5746146105c3578063bf86d690146105cb5761035c565b806395d89b4114610585578063a1206d3d1461058d578063a457c2d7146105955761035c565b80638757b15b116101ad5780638757b15b146105655780638da5cb5b1461056d5780638fd281dd14610575578063923c1d611461057d5761035c565b806375a410141461052c5780637acb77571461053f57806386c52694146105525761035c565b80633dfd3873116102ad578063685a9afb1161024b5780636e553f65116102255780636e553f65146104eb57806370a08231146104fe578063715018a61461051157806375619ab5146105195761035c565b8063685a9afb146104c85780636a4874a1146104d05780636b091695146104d85761035c565b80634b0ee02a116102875780634b0ee02a146104875780634b8200931461049a5780634f39059c146104ad5780636817031b146104b55761035c565b80633dfd38731461046457806344214ecf146104775780634697439d1461047f5761035c565b806318160ddd1161031a5780632e1a7d4d116102f45780632e1a7d4d14610416578063313ce56714610429578063395093511461043e5780633969dfb4146104515761035c565b806318160ddd146103e657806323b872dd146103fb5780632cdacb501461040e5761035c565b80628cc2621461036157806306fdde031461038a578063095ea7b31461039f5780630bece79c146103bf5780630f86f839146103d457806314d6aed0146103dc575b600080fd5b61037461036f366004613865565b6106ab565b6040516103819190613c1c565b60405180910390f35b6103926106e5565b6040516103819190613c7f565b6103b26103ad36600461399f565b61077b565b6040516103819190613c74565b6103c7610799565b6040516103819190613b6d565b6103c76107a8565b6103e46107cc565b005b6103ee610f85565b60405161038191906141fc565b6103b261040936600461395f565b610f8b565b6103c7611013565b6103e4610424366004613a85565b61102b565b6104316110ff565b604051610381919061422d565b6103b261044c36600461399f565b611104565b6103e461045f366004613a85565b611152565b6103e4610472366004613865565b61121b565b6103c76112a9565b6103b26112b8565b6103ee610495366004613865565b6112c8565b6103b26104a8366004613865565b6112d3565b6103c7611304565b6103e46104c3366004613865565b611313565b6103e4611506565b6103c761154a565b6103e46104e636600461389d565b611562565b6103e46104f9366004613ab5565b6115b5565b6103ee61050c366004613865565b6116e4565b6103e46116ff565b6103e4610527366004613865565b611780565b6103e461053a366004613865565b6118a6565b6103e461054d366004613ab5565b611936565b6103e4610560366004613865565b611a2a565b6103e4611ac8565b6103c7611b60565b6103b2611bf8565b6103c7611c85565b610392611c9d565b6103c7611cfe565b6103b26105a336600461399f565b611d0d565b6103b26105b636600461399f565b611d75565b6103b2611d89565b6103ee611d97565b6103b2611d9d565b6103e46105e1366004613865565b611da6565b6103c7611e28565b6103c7611e40565b6103c7611e64565b6103ee61060c36600461389d565b611e73565b6103c761061f366004613865565b611e9e565b6103ee611eb9565b6103c7611ebf565b6103e4610642366004613865565b611ece565b61065a610655366004613a85565b611f8d565b6040516103819493929190613bbf565b6103e4610678366004613865565b611fd0565b6103e46120ba565b6103e4610693366004613a85565b612121565b6103ee6106a6366004613865565b61239c565b604080518082019091526001600160a01b0382168152600060208201526060906106d4906123ae565b6106dd826124f6565b90505b919050565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600061078f61078861260e565b8484612612565b5060015b92915050565b600b546001600160a01b031681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600954600c546001600160a01b0390911690610bc457600c604051806080016040528073d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03168152602001836001600160a01b03168152602001600081526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020155606082015181600301555050600c6040518060800160405280734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6001600160a01b0316815260200160006001600160a01b03168152602001600081526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550604082015181600201556060820151816003015550506000600101600d600073d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03166001600160a01b031681526020019081526020016000208190555060018001600d6000734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6001600160a01b03166001600160a01b031681526020019081526020016000208190555073d533a949740bb3306d119cc777fa900ba034cd526001600160a01b031663a9059cbb3060006040518363ffffffff1660e01b8152600401610a71929190613c03565b602060405180830381600087803b158015610a8b57600080fd5b505af1158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac391906139ca565b5060405163a9059cbb60e01b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b9063a9059cbb90610afe903090600090600401613c03565b602060405180830381600087803b158015610b1857600080fd5b505af1158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5091906139ca565b5060008051602061429f83398151915273d533a949740bb3306d119cc777fa900ba034cd52604051610b829190613b6d565b60405180910390a160008051602061429f833981519152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b604051610bbb9190613b6d565b60405180910390a15b6000816001600160a01b031663d55a23f46040518163ffffffff1660e01b815260040160206040518083038186803b158015610bff57600080fd5b505afa158015610c13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c379190613a9d565b905060005b81811015610f8057604051632061aa2360e11b81526000906001600160a01b038516906340c3544690610c739085906004016141fc565b60206040518083038186803b158015610c8b57600080fd5b505afa158015610c9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc39190613881565b90506000816001600160a01b031663f7c618c16040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0057600080fd5b505afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190613881565b90506097600a5410610db857806001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d7d57600080fd5b505afa158015610d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db59190613881565b90505b6001600160a01b038116734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b1415610e265781600c600181548110610dec57fe5b906000526020600020906006020160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610f76565b6001600160a01b0381166000908152600d6020526040902054610f7657604080516080810182526001600160a01b038084168083528582166020808501918252600085870181815260608701828152600c8054600181018255818552985160069099027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7810180549a8a166001600160a01b03199b8c1617905595517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c88701805491909916991698909817909655517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c984015593517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8ca909201919091559254908252600d909252829020555160008051602061429f83398151915290610f6d908390613b6d565b60405180910390a15b5050600101610c3c565b505050565b60025490565b6000610f988484846126c6565b61100884610fa461260e565b611003856040518060600160405280602881526020016142e5602891396001600160a01b038a16600090815260016020526040812090610fe261260e565b6001600160a01b0316815260208101919091526040016000205491906127db565b612612565b5060015b9392505050565b73f403c135812408bfbe8713b5a23a04b3d48aae3181565b80156110b85761103b3382612807565b600954604051631c683a1b60e11b81526001600160a01b03909116906338d074369061106e908490600090600401614205565b600060405180830381600087803b15801561108857600080fd5b505af115801561109c573d6000803e3d6000fd5b50506008546110b892506001600160a01b0316905033836128dd565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a58260006040516110f4929190614205565b60405180910390a250565b601290565b600061078f61111161260e565b84611003856001600061112261260e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612933565b80156111df576111623382612807565b600954604051636197390160e11b81526001600160a01b039091169063c32e720290611195908490600090600401614205565b600060405180830381600087803b1580156111af57600080fd5b505af11580156111c3573d6000803e3d6000fd5b50506007546111df92506001600160a01b0316905033836128dd565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a58260016040516110f4929190614205565b33611224611b60565b6001600160a01b0316146112535760405162461bcd60e51b815260040161124a90613eef565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0383161790556040517f4eab7b127c764308788622363ad3e9532de3dfba7845bd4f84c125a22544255a9061129e908390613b6d565b60405180910390a150565b600e546001600160a01b031681565b601354600160a01b900460ff1681565b60006106dd82612958565b604080518082019091526001600160a01b0382168152600060208201819052906112fc906123ae565b506001919050565b6007546001600160a01b031681565b3361131c611b60565b6001600160a01b0316146113425760405162461bcd60e51b815260040161124a90613eef565b6013546001600160a01b03161561136b5760405162461bcd60e51b815260040161124a906141a0565b6040516340925bc760e11b81527366807b5598a848602734b82e432dd88dbe13fc8f90638124b78e906113c2907f000000000000000000000000000000000000000000000000000000000000000090600401613b6d565b602060405180830381600087803b1580156113dc57600080fd5b505af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114149190613881565b601380546001600160a01b0319166001600160a01b03928316179081905560405163485cc95560e01b815291169063485cc955906114589084903090600401613b81565b600060405180830381600087803b15801561147257600080fd5b505af1158015611486573d6000803e3d6000fd5b50506013546001600160a01b038481166000818152600f602052604090208054929093166001600160a01b031992831617909255600b80549091169091179055506114e6905073d533a949740bb3306d119cc777fa900ba034cd52611fd0565b611503734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b611fd0565b50565b3361150f611b60565b6001600160a01b0316146115355760405162461bcd60e51b815260040161124a90613eef565b6013805460ff60a01b1916600160a01b179055565b73d533a949740bb3306d119cc777fa900ba034cd5281565b336001600160a01b0383161461158a5760405162461bcd60e51b815260040161124a90613f24565b604080518082019091526001600160a01b038084168252821660208201526115b190612a34565b5050565b60105460ff16156115d85760405162461bcd60e51b815260040161124a90613fc9565b8115611692576115e88183612b1b565b600754611600906001600160a01b0316333085612bcf565b600a546040516321d0683360e11b815273f403c135812408bfbe8713b5a23a04b3d48aae31916343a0d0669161163e91908690600190600401614215565b602060405180830381600087803b15801561165857600080fd5b505af115801561166c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169091906139ca565b505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460016040516116d8929190614205565b60405180910390a35050565b6001600160a01b031660009081526020819052604090205490565b33611708611b60565b6001600160a01b03161461172e5760405162461bcd60e51b815260040161124a90613eef565b6010546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36010805462010000600160b01b0319169055565b33611789611b60565b6001600160a01b0316146117af5760405162461bcd60e51b815260040161124a90613eef565b600b546001600160a01b0316806117d85760405162461bcd60e51b815260040161124a90614089565b601354600160a01b900460ff16156118025760405162461bcd60e51b815260040161124a90613d7d565b601380546001600160a01b0319166001600160a01b03841690811790915560405163485cc95560e01b815263485cc955906118439084903090600401613b81565b600060405180830381600087803b15801561185d57600080fd5b505af1158015611871573d6000803e3d6000fd5b505050506001600160a01b039081166000908152600f6020526040902080546001600160a01b03191692909116919091179055565b600260065414156118c95760405162461bcd60e51b815260040161124a90614113565b6002600655336000818152600f60205260409081902080546001600160a01b0319166001600160a01b038516179055517ff4239ad0860f93469699dd4be8040b8838c5e25bb6cf24a1dfb381b937ff078c90611926908490613b6d565b60405180910390a2506001600655565b60105460ff16156119595760405162461bcd60e51b815260040161124a90613fc9565b81156119e4576119698183612b1b565b600854611981906001600160a01b0316333085612bcf565b60095460405163534a7e1d60e11b81526001600160a01b039091169063a694fc3a906119b19085906004016141fc565b600060405180830381600087803b1580156119cb57600080fd5b505af11580156119df573d6000803e3d6000fd5b505050505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460006040516116d8929190614205565b33611a33611b60565b6001600160a01b031614611a595760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b03811673d533a949740bb3306d119cc777fa900ba034cd5214801590611aa357506001600160a01b038116734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b14155b611abf5760405162461bcd60e51b815260040161124a906140f2565b61150381612bf0565b600754611af4906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae316000612e72565b600754611b21906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae31600019612e72565b600954600854611b3f916001600160a01b0391821691166000612e72565b600954600854611b5e916001600160a01b039182169116600019612e72565b565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611bbb57600080fd5b505afa158015611bcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf39190613881565b905090565b600a5460405163cc956f3f60e01b815260009173f403c135812408bfbe8713b5a23a04b3d48aae319163cc956f3f91611c33916004016141fc565b602060405180830381600087803b158015611c4d57600080fd5b505af1158015611c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf391906139ca565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b81565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b6013546001600160a01b031681565b600061078f611d1a61260e565b846110038560405180606001604052806025815260200161430d6025913960016000611d4461260e565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906127db565b600061078f611d8261260e565b84846126c6565b601054610100900460ff1681565b600c5490565b60105460ff1681565b6001600160a01b038181166000908152600f60205260409020541615611e03576040805180820182526001600160a01b038084168083526000908152600f6020908152939020541691810191909152611dfe90612a34565b611503565b604080518082019091526001600160a01b038216808252602082015261150390612a34565b7366807b5598a848602734b82e432dd88dbe13fc8f81565b7f000000000000000000000000000000000000000000000000000000000000000081565b6009546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600f602052600090815260409020546001600160a01b031681565b600a5481565b6008546001600160a01b031681565b33611ed7611b60565b6001600160a01b031614611efd5760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b038116611f235760405162461bcd60e51b815260040161124a90613cf5565b6010546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3601080546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600c8181548110611f9a57fe5b600091825260209091206006909102018054600182015460028301546003909301546001600160a01b0392831694509116919084565b33611fd9611b60565b6001600160a01b031614611fff5760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b0381166000908152600d602052604090205480156115b1576000600c600183038154811061203057fe5b6000918252602090912060069091020180549091506001600160a01b0384811691161461206f5760405162461bcd60e51b815260040161124a90614066565b80546001600160a01b03191681556040517f646cfe9445aed85f4853d501d1924d2bdabb1bbf12531df29f929f07ba4169e0906120ad908590613b6d565b60405180910390a1505050565b336120c3611b60565b6001600160a01b0316146120e95760405162461bcd60e51b815260040161124a90613eef565b6010805460ff191660011790556040517f4426aa1fb73e391071491fcfe21a88b5c38a0a0333a1f6e77161470439704cf890600090a1565b601054610100900460ff16156121495760405162461bcd60e51b815260040161124a90613e88565b604051631526fe2760e01b81526000908190819073f403c135812408bfbe8713b5a23a04b3d48aae3190631526fe27906121879087906004016141fc565b60c06040518083038186803b15801561219f57600080fd5b505afa1580156121b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d791906138d5565b5050600780546001600160a01b038087166001600160a01b0319928316179092556008805483871690831681179091556009805493851693909216929092179055600a899055604080516306fdde0360e01b81529051959850939650909450926306fdde03926004808201935060009291829003018186803b15801561225c57600080fd5b505afa158015612270573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261229891908101906139ea565b6040516020016122a89190613af5565b604051602081830303815290604052601190805190602001906122cc92919061379d565b50816001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561230657600080fd5b505afa15801561231a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261234291908101906139ea565b6040516020016123529190613b33565b6040516020818303038152906040526012908051906020019061237692919061379d565b506010805461ffff191661010017905561238e6107cc565b612396611ac8565b50505050565b600d6020526000908152604090205481565b600260065414156123d15760405162461bcd60e51b815260040161124a90614113565b600260065560006123e0612f35565b90506123ea61381b565b6123fb8360005b6020020151612958565b81526124088360016123f1565b602082015260105460ff1661247d57600954604051637050ccd960e01b81526001600160a01b0390911690637050ccd99061244a903090600190600401613be8565b600060405180830381600087803b15801561246457600080fd5b505af1158015612478573d6000803e3d6000fd5b505050505b6124876000612f3f565b600c5460005b818110156124ab576124a38186858760006130dd565b60010161248d565b50835160208501516040517ffbb924eaf6a0dae4d734ad9fd5399b11487e7da53ec2871839b24fa30381b5ff926124e3929091613b81565b60405180910390a1505060016006555050565b600c546060908067ffffffffffffffff8111801561251357600080fd5b5060405190808252806020026020018201604052801561254d57816020015b61253a613839565b8152602001906001900390816125325790505b50915060005b81811015612607576000600c828154811061256a57fe5b6000918252602090912060069091020180549091506001600160a01b031661259257506125ff565b6001600160a01b038516600090815260058201602052604090205484518590849081106125bb57fe5b6020908102919091018101510152805484516001600160a01b03909116908590849081106125e557fe5b60209081029190910101516001600160a01b039091169052505b600101612553565b5050919050565b3390565b6001600160a01b0383166126385760405162461bcd60e51b815260040161124a90613feb565b6001600160a01b03821661265e5760405162461bcd60e51b815260040161124a90613d3b565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906126b99085906141fc565b60405180910390a3505050565b6001600160a01b0383166126ec5760405162461bcd60e51b815260040161124a90613f84565b6001600160a01b0382166127125760405162461bcd60e51b815260040161124a90613cb2565b61271d8383836134ad565b61275a816040518060600160405280602681526020016142bf602691396001600160a01b03861660009081526020819052604090205491906127db565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546127899082612933565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906126b99085906141fc565b600081848411156127ff5760405162461bcd60e51b815260040161124a9190613c7f565b505050900390565b6001600160a01b03821661282d5760405162461bcd60e51b815260040161124a90613f43565b612839826000836134ad565b6128768160405180606001604052806022815260200161427d602291396001600160a01b03851660009081526020819052604090205491906127db565b6001600160a01b03831660009081526020819052604090205560025461289c90826134d4565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116d89085906141fc565b610f808363a9059cbb60e01b84846040516024016128fc929190613c03565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526134fc565b60008282018381101561100c5760405162461bcd60e51b815260040161124a90613d9d565b60006001600160a01b038216158061297d5750600b546001600160a01b038381169116145b1561298a575060006106e0565b600b546000906001600160a01b031615612a2157600b5460405163d9f96e8d60e01b81526001600160a01b039091169063d9f96e8d906129ce908690600401613b6d565b60206040518083038186803b1580156129e657600080fd5b505afa1580156129fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1e9190613a9d565b90505b61100c81612a2e856116e4565b90612933565b60026006541415612a575760405162461bcd60e51b815260040161124a90614113565b60026006556000612a66612f35565b9050612a7061381b565b612a7b8360006123f1565b815260105460ff16612aed57600954604051637050ccd960e01b81526001600160a01b0390911690637050ccd990612aba903090600190600401613be8565b600060405180830381600087803b158015612ad457600080fd5b505af1158015612ae8573d6000803e3d6000fd5b505050505b612af76001612f3f565b600c5460005b818110156124ab57612b138186858760016130dd565b600101612afd565b6001600160a01b038216612b415760405162461bcd60e51b815260040161124a906141c5565b612b4d600083836134ad565b600254612b5a9082612933565b6002556001600160a01b038216600090815260208190526040902054612b809082612933565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116d89085906141fc565b612396846323b872dd60e01b8585856040516024016128fc93929190613b9b565b33612bf9611b60565b6001600160a01b031614612c1f5760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b0381166000908152600d6020526040902054612de857604080516080810182526001600160a01b038084168083526000602080850182815285870183815260608701848152600c8054600181018255818752985160069099027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7810180549a8a166001600160a01b03199b8c1617905593517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c88501805491909916991698909817909655517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c982015593517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8ca909401939093559254818452600d90925283832091909155915163a9059cbb60e01b815263a9059cbb91612d6b91309190600401613c03565b602060405180830381600087803b158015612d8557600080fd5b505af1158015612d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dbd91906139ca565b5060008051602061429f83398151915281604051612ddb9190613b6d565b60405180910390a1611503565b6001600160a01b0381166000908152600d602052604090205480156115b1576000600c6001830381548110612e1957fe5b6000918252602090912060069091020180549091506001600160a01b0316610f805780546001600160a01b0319166001600160a01b03841617815560405160008051602061429f833981519152906120ad908590613b6d565b801580612efa5750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e90612ea89030908690600401613b81565b60206040518083038186803b158015612ec057600080fd5b505afa158015612ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ef89190613a9d565b155b612f165760405162461bcd60e51b815260040161124a9061414a565b610f808363095ea7b360e01b84846040516024016128fc929190613c03565b6000611bf3610f85565b612f488161358b565b808015612f5f57506013546001600160a01b031633145b15611503576040516370a0823160e01b815260009073d533a949740bb3306d119cc777fa900ba034cd52906370a0823190612f9e903090600401613b6d565b60206040518083038186803b158015612fb657600080fd5b505afa158015612fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fee9190613a9d565b90508015613022576013546130229073d533a949740bb3306d119cc777fa900ba034cd52906001600160a01b031683613606565b6040516370a0823160e01b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906370a0823190613059903090600401613b6d565b60206040518083038186803b15801561307157600080fd5b505afa158015613085573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a99190613a9d565b905080156115b1576013546115b190734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906001600160a01b031683613606565b6000600c86815481106130ec57fe5b6000918252602090912060069091020180549091506001600160a01b031661311457506134a6565b80546040516370a0823160e01b81526000916001600160a01b0316906370a0823190613144903090600401613b6d565b60206040518083038186803b15801561315c57600080fd5b505afa158015613170573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131949190613a9d565b90506000841180156131a95750816003015481115b156131ef576131e2846131dc68056bc75e2d631000006131d68660030154866134d490919063ffffffff16565b9061361a565b90613654565b6002830180549190910190555b60005b600281101561348f57600087826002811061320957fe5b60200201516001600160a01b0316141561322257613487565b600b546001600160a01b031687826002811061323a57fe5b60200201516001600160a01b0316141561325357613487565b83801561325f57508015155b1561326957613487565b600083600401600089846002811061327d57fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002054905084806132b45750836002015481105b156134855784156133c057600061334861330268056bc75e2d631000006131dc6132eb868a600201546134d490919063ffffffff16565b8c88600281106132f757fe5b60200201519061361a565b8660050160008c876002811061331457fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000205461293390919063ffffffff16565b905080156133ba5760008560050160008b866002811061336457fe5b602090810291909101516001600160a01b039081168352908201929092526040016000209190915585546133ad91168a60018601600281106133a257fe5b602002015183613606565b6133b784826134d4565b93505b50613444565b6134086133f668056bc75e2d631000006131dc6133ea8589600201546134d490919063ffffffff16565b8b87600281106132f757fe5b8560050160008b866002811061331457fe5b8460050160008a856002811061341a57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b83600201548460040160008a856002811061345b57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b505b6001016131f2565b50816003015481146134a357600382018190555b50505b5050505050565b604080518082019091526001600160a01b03808516825283166020820152610f80906123ae565b6000828211156134f65760405162461bcd60e51b815260040161124a90613dd4565b50900390565b6060613551826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166136869092919063ffffffff16565b805190915015610f80578080602001905181019061356f91906139ca565b610f805760405162461bcd60e51b815260040161124a906140a8565b600e546001600160a01b03161561150357600e60009054906101000a90046001600160a01b03166001600160a01b0316632663fcfc6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156135ec57600080fd5b505af19250505080156135fd575060015b61150357611503565b610f806001600160a01b03841683836128dd565b60008261362957506000610793565b8282028284828161363657fe5b041461100c5760405162461bcd60e51b815260040161124a90613eae565b60008082116136755760405162461bcd60e51b815260040161124a90613e51565b81838161367e57fe5b049392505050565b6060613695848460008561369d565b949350505050565b6060824710156136bf5760405162461bcd60e51b815260040161124a90613e0b565b6136c88561375e565b6136e45760405162461bcd60e51b815260040161124a9061402f565b60006060866001600160a01b031685876040516137019190613ad9565b60006040518083038185875af1925050503d806000811461373e576040519150601f19603f3d011682016040523d82523d6000602084013e613743565b606091505b5091509150613753828286613764565b979650505050505050565b3b151590565b6060831561377357508161100c565b8251156137835782518084602001fd5b8160405162461bcd60e51b815260040161124a9190613c7f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106137de57805160ff191683800117855561380b565b8280016001018555821561380b579182015b8281111561380b5782518255916020019190600101906137f0565b50613817929150613850565b5090565b60405180604001604052806002906020820280368337509192915050565b604080518082019091526000808252602082015290565b5b808211156138175760008155600101613851565b600060208284031215613876578081fd5b813561100c81614267565b600060208284031215613892578081fd5b815161100c81614267565b600080604083850312156138af578081fd5b82356138ba81614267565b915060208301356138ca81614267565b809150509250929050565b60008060008060008060c087890312156138ed578182fd5b86516138f881614267565b602088015190965061390981614267565b604088015190955061391a81614267565b606088015190945061392b81614267565b608088015190935061393c81614267565b60a08801519092508015158114613951578182fd5b809150509295509295509295565b600080600060608486031215613973578283fd5b833561397e81614267565b9250602084013561398e81614267565b929592945050506040919091013590565b600080604083850312156139b1578182fd5b82356139bc81614267565b946020939093013593505050565b6000602082840312156139db578081fd5b8151801515811461100c578182fd5b6000602082840312156139fb578081fd5b815167ffffffffffffffff80821115613a12578283fd5b818401915084601f830112613a25578283fd5b815181811115613a33578384fd5b604051601f8201601f191681016020018381118282101715613a53578586fd5b604052818152838201602001871015613a6a578485fd5b613a7b82602083016020870161423b565b9695505050505050565b600060208284031215613a96578081fd5b5035919050565b600060208284031215613aae578081fd5b5051919050565b60008060408385031215613ac7578182fd5b8235915060208301356138ca81614267565b60008251613aeb81846020870161423b565b9190910192915050565b600066029ba30b5b2b2160cd1b82528251613b1781600785016020870161423b565b640408ce4c2f60db1b6007939091019283015250600c01919050565b60006273746b60e81b82528251613b5181600385016020870161423b565b6405acce4c2f60db1b6003939091019283015250600801919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6001600160a01b039290921682521515602082015260400190565b6001600160a01b03929092168252602082015260400190565b602080825282518282018190526000919060409081850190868401855b82811015613c6757815180516001600160a01b03168552860151868501529284019290850190600101613c39565b5091979650505050505050565b901515815260200190565b6000602082528251806020840152613c9e81604085016020870161423b565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600690820152651cd9585b195960d21b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b6020808252600c908201526b185b1c9958591e481a5b9a5d60a21b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526005908201526410b9b2b63360d91b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526739b43aba3237bbb760c11b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b602080825260099082015268042dad2e6dac2e8c6d60bb1b604082015260600190565b602080825260059082015264216661726d60d81b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252600790820152662172657669766560c81b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606082015260800190565b6020808252600b908201526a185b1c9958591e481cd95d60aa1b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b9182521515602082015260400190565b92835260208301919091521515604082015260600190565b60ff91909116815260200190565b60005b8381101561425657818101518382015260200161423e565b838111156123965750506000910152565b6001600160a01b038116811461150357600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365b13fd610fe4e1b384966826794a9b2f6100ad031f352cc5ec6f22667f607498045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122087aaa4586fded00c6561dddd0e6f55b01fb23fe25ce9f2468c613036062df78964736f6c634300060c00330000000000000000000000004c586e8b191d67aa79eb55e89f9a5cbd9bcbdc570000000000000000000000008952bfd1ba716cb7bdc553d503b068f4681c5808
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061035c5760003560e01c806375a41014116101d3578063c00007b011610104578063e89133b2116100a2578063f8112eed1161007c578063f8112eed1461066a578063fc0e74d11461067d578063fe4b84df14610685578063ff833485146106985761035c565b8063e89133b21461062c578063f2fde38b14610634578063f301af42146106475761035c565b8063cc7d510e116100de578063cc7d510e146105f6578063dd62ed3e146105fe578063e509b9d914610611578063e529ee95146106245761035c565b8063c00007b0146105d3578063c10f1a75146105e6578063c45a0155146105ee5761035c565b806395d89b4111610171578063a9059cbb1161014b578063a9059cbb146105a8578063b145a5b8146105bb578063b95c5746146105c3578063bf86d690146105cb5761035c565b806395d89b4114610585578063a1206d3d1461058d578063a457c2d7146105955761035c565b80638757b15b116101ad5780638757b15b146105655780638da5cb5b1461056d5780638fd281dd14610575578063923c1d611461057d5761035c565b806375a410141461052c5780637acb77571461053f57806386c52694146105525761035c565b80633dfd3873116102ad578063685a9afb1161024b5780636e553f65116102255780636e553f65146104eb57806370a08231146104fe578063715018a61461051157806375619ab5146105195761035c565b8063685a9afb146104c85780636a4874a1146104d05780636b091695146104d85761035c565b80634b0ee02a116102875780634b0ee02a146104875780634b8200931461049a5780634f39059c146104ad5780636817031b146104b55761035c565b80633dfd38731461046457806344214ecf146104775780634697439d1461047f5761035c565b806318160ddd1161031a5780632e1a7d4d116102f45780632e1a7d4d14610416578063313ce56714610429578063395093511461043e5780633969dfb4146104515761035c565b806318160ddd146103e657806323b872dd146103fb5780632cdacb501461040e5761035c565b80628cc2621461036157806306fdde031461038a578063095ea7b31461039f5780630bece79c146103bf5780630f86f839146103d457806314d6aed0146103dc575b600080fd5b61037461036f366004613865565b6106ab565b6040516103819190613c1c565b60405180910390f35b6103926106e5565b6040516103819190613c7f565b6103b26103ad36600461399f565b61077b565b6040516103819190613c74565b6103c7610799565b6040516103819190613b6d565b6103c76107a8565b6103e46107cc565b005b6103ee610f85565b60405161038191906141fc565b6103b261040936600461395f565b610f8b565b6103c7611013565b6103e4610424366004613a85565b61102b565b6104316110ff565b604051610381919061422d565b6103b261044c36600461399f565b611104565b6103e461045f366004613a85565b611152565b6103e4610472366004613865565b61121b565b6103c76112a9565b6103b26112b8565b6103ee610495366004613865565b6112c8565b6103b26104a8366004613865565b6112d3565b6103c7611304565b6103e46104c3366004613865565b611313565b6103e4611506565b6103c761154a565b6103e46104e636600461389d565b611562565b6103e46104f9366004613ab5565b6115b5565b6103ee61050c366004613865565b6116e4565b6103e46116ff565b6103e4610527366004613865565b611780565b6103e461053a366004613865565b6118a6565b6103e461054d366004613ab5565b611936565b6103e4610560366004613865565b611a2a565b6103e4611ac8565b6103c7611b60565b6103b2611bf8565b6103c7611c85565b610392611c9d565b6103c7611cfe565b6103b26105a336600461399f565b611d0d565b6103b26105b636600461399f565b611d75565b6103b2611d89565b6103ee611d97565b6103b2611d9d565b6103e46105e1366004613865565b611da6565b6103c7611e28565b6103c7611e40565b6103c7611e64565b6103ee61060c36600461389d565b611e73565b6103c761061f366004613865565b611e9e565b6103ee611eb9565b6103c7611ebf565b6103e4610642366004613865565b611ece565b61065a610655366004613a85565b611f8d565b6040516103819493929190613bbf565b6103e4610678366004613865565b611fd0565b6103e46120ba565b6103e4610693366004613a85565b612121565b6103ee6106a6366004613865565b61239c565b604080518082019091526001600160a01b0382168152600060208201526060906106d4906123ae565b6106dd826124f6565b90505b919050565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600061078f61078861260e565b8484612612565b5060015b92915050565b600b546001600160a01b031681565b7f0000000000000000000000004c586e8b191d67aa79eb55e89f9a5cbd9bcbdc5781565b600954600c546001600160a01b0390911690610bc457600c604051806080016040528073d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03168152602001836001600160a01b03168152602001600081526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020155606082015181600301555050600c6040518060800160405280734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6001600160a01b0316815260200160006001600160a01b03168152602001600081526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550604082015181600201556060820151816003015550506000600101600d600073d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03166001600160a01b031681526020019081526020016000208190555060018001600d6000734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6001600160a01b03166001600160a01b031681526020019081526020016000208190555073d533a949740bb3306d119cc777fa900ba034cd526001600160a01b031663a9059cbb3060006040518363ffffffff1660e01b8152600401610a71929190613c03565b602060405180830381600087803b158015610a8b57600080fd5b505af1158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac391906139ca565b5060405163a9059cbb60e01b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b9063a9059cbb90610afe903090600090600401613c03565b602060405180830381600087803b158015610b1857600080fd5b505af1158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5091906139ca565b5060008051602061429f83398151915273d533a949740bb3306d119cc777fa900ba034cd52604051610b829190613b6d565b60405180910390a160008051602061429f833981519152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b604051610bbb9190613b6d565b60405180910390a15b6000816001600160a01b031663d55a23f46040518163ffffffff1660e01b815260040160206040518083038186803b158015610bff57600080fd5b505afa158015610c13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c379190613a9d565b905060005b81811015610f8057604051632061aa2360e11b81526000906001600160a01b038516906340c3544690610c739085906004016141fc565b60206040518083038186803b158015610c8b57600080fd5b505afa158015610c9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc39190613881565b90506000816001600160a01b031663f7c618c16040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0057600080fd5b505afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190613881565b90506097600a5410610db857806001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d7d57600080fd5b505afa158015610d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db59190613881565b90505b6001600160a01b038116734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b1415610e265781600c600181548110610dec57fe5b906000526020600020906006020160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610f76565b6001600160a01b0381166000908152600d6020526040902054610f7657604080516080810182526001600160a01b038084168083528582166020808501918252600085870181815260608701828152600c8054600181018255818552985160069099027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7810180549a8a166001600160a01b03199b8c1617905595517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c88701805491909916991698909817909655517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c984015593517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8ca909201919091559254908252600d909252829020555160008051602061429f83398151915290610f6d908390613b6d565b60405180910390a15b5050600101610c3c565b505050565b60025490565b6000610f988484846126c6565b61100884610fa461260e565b611003856040518060600160405280602881526020016142e5602891396001600160a01b038a16600090815260016020526040812090610fe261260e565b6001600160a01b0316815260208101919091526040016000205491906127db565b612612565b5060015b9392505050565b73f403c135812408bfbe8713b5a23a04b3d48aae3181565b80156110b85761103b3382612807565b600954604051631c683a1b60e11b81526001600160a01b03909116906338d074369061106e908490600090600401614205565b600060405180830381600087803b15801561108857600080fd5b505af115801561109c573d6000803e3d6000fd5b50506008546110b892506001600160a01b0316905033836128dd565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a58260006040516110f4929190614205565b60405180910390a250565b601290565b600061078f61111161260e565b84611003856001600061112261260e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612933565b80156111df576111623382612807565b600954604051636197390160e11b81526001600160a01b039091169063c32e720290611195908490600090600401614205565b600060405180830381600087803b1580156111af57600080fd5b505af11580156111c3573d6000803e3d6000fd5b50506007546111df92506001600160a01b0316905033836128dd565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a58260016040516110f4929190614205565b33611224611b60565b6001600160a01b0316146112535760405162461bcd60e51b815260040161124a90613eef565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0383161790556040517f4eab7b127c764308788622363ad3e9532de3dfba7845bd4f84c125a22544255a9061129e908390613b6d565b60405180910390a150565b600e546001600160a01b031681565b601354600160a01b900460ff1681565b60006106dd82612958565b604080518082019091526001600160a01b0382168152600060208201819052906112fc906123ae565b506001919050565b6007546001600160a01b031681565b3361131c611b60565b6001600160a01b0316146113425760405162461bcd60e51b815260040161124a90613eef565b6013546001600160a01b03161561136b5760405162461bcd60e51b815260040161124a906141a0565b6040516340925bc760e11b81527366807b5598a848602734b82e432dd88dbe13fc8f90638124b78e906113c2907f0000000000000000000000004c586e8b191d67aa79eb55e89f9a5cbd9bcbdc5790600401613b6d565b602060405180830381600087803b1580156113dc57600080fd5b505af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114149190613881565b601380546001600160a01b0319166001600160a01b03928316179081905560405163485cc95560e01b815291169063485cc955906114589084903090600401613b81565b600060405180830381600087803b15801561147257600080fd5b505af1158015611486573d6000803e3d6000fd5b50506013546001600160a01b038481166000818152600f602052604090208054929093166001600160a01b031992831617909255600b80549091169091179055506114e6905073d533a949740bb3306d119cc777fa900ba034cd52611fd0565b611503734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b611fd0565b50565b3361150f611b60565b6001600160a01b0316146115355760405162461bcd60e51b815260040161124a90613eef565b6013805460ff60a01b1916600160a01b179055565b73d533a949740bb3306d119cc777fa900ba034cd5281565b336001600160a01b0383161461158a5760405162461bcd60e51b815260040161124a90613f24565b604080518082019091526001600160a01b038084168252821660208201526115b190612a34565b5050565b60105460ff16156115d85760405162461bcd60e51b815260040161124a90613fc9565b8115611692576115e88183612b1b565b600754611600906001600160a01b0316333085612bcf565b600a546040516321d0683360e11b815273f403c135812408bfbe8713b5a23a04b3d48aae31916343a0d0669161163e91908690600190600401614215565b602060405180830381600087803b15801561165857600080fd5b505af115801561166c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169091906139ca565b505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460016040516116d8929190614205565b60405180910390a35050565b6001600160a01b031660009081526020819052604090205490565b33611708611b60565b6001600160a01b03161461172e5760405162461bcd60e51b815260040161124a90613eef565b6010546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36010805462010000600160b01b0319169055565b33611789611b60565b6001600160a01b0316146117af5760405162461bcd60e51b815260040161124a90613eef565b600b546001600160a01b0316806117d85760405162461bcd60e51b815260040161124a90614089565b601354600160a01b900460ff16156118025760405162461bcd60e51b815260040161124a90613d7d565b601380546001600160a01b0319166001600160a01b03841690811790915560405163485cc95560e01b815263485cc955906118439084903090600401613b81565b600060405180830381600087803b15801561185d57600080fd5b505af1158015611871573d6000803e3d6000fd5b505050506001600160a01b039081166000908152600f6020526040902080546001600160a01b03191692909116919091179055565b600260065414156118c95760405162461bcd60e51b815260040161124a90614113565b6002600655336000818152600f60205260409081902080546001600160a01b0319166001600160a01b038516179055517ff4239ad0860f93469699dd4be8040b8838c5e25bb6cf24a1dfb381b937ff078c90611926908490613b6d565b60405180910390a2506001600655565b60105460ff16156119595760405162461bcd60e51b815260040161124a90613fc9565b81156119e4576119698183612b1b565b600854611981906001600160a01b0316333085612bcf565b60095460405163534a7e1d60e11b81526001600160a01b039091169063a694fc3a906119b19085906004016141fc565b600060405180830381600087803b1580156119cb57600080fd5b505af11580156119df573d6000803e3d6000fd5b505050505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460006040516116d8929190614205565b33611a33611b60565b6001600160a01b031614611a595760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b03811673d533a949740bb3306d119cc777fa900ba034cd5214801590611aa357506001600160a01b038116734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b14155b611abf5760405162461bcd60e51b815260040161124a906140f2565b61150381612bf0565b600754611af4906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae316000612e72565b600754611b21906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae31600019612e72565b600954600854611b3f916001600160a01b0391821691166000612e72565b600954600854611b5e916001600160a01b039182169116600019612e72565b565b60007f0000000000000000000000008952bfd1ba716cb7bdc553d503b068f4681c58086001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611bbb57600080fd5b505afa158015611bcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf39190613881565b905090565b600a5460405163cc956f3f60e01b815260009173f403c135812408bfbe8713b5a23a04b3d48aae319163cc956f3f91611c33916004016141fc565b602060405180830381600087803b158015611c4d57600080fd5b505af1158015611c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf391906139ca565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b81565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b6013546001600160a01b031681565b600061078f611d1a61260e565b846110038560405180606001604052806025815260200161430d6025913960016000611d4461260e565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906127db565b600061078f611d8261260e565b84846126c6565b601054610100900460ff1681565b600c5490565b60105460ff1681565b6001600160a01b038181166000908152600f60205260409020541615611e03576040805180820182526001600160a01b038084168083526000908152600f6020908152939020541691810191909152611dfe90612a34565b611503565b604080518082019091526001600160a01b038216808252602082015261150390612a34565b7366807b5598a848602734b82e432dd88dbe13fc8f81565b7f0000000000000000000000008952bfd1ba716cb7bdc553d503b068f4681c580881565b6009546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600f602052600090815260409020546001600160a01b031681565b600a5481565b6008546001600160a01b031681565b33611ed7611b60565b6001600160a01b031614611efd5760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b038116611f235760405162461bcd60e51b815260040161124a90613cf5565b6010546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3601080546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600c8181548110611f9a57fe5b600091825260209091206006909102018054600182015460028301546003909301546001600160a01b0392831694509116919084565b33611fd9611b60565b6001600160a01b031614611fff5760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b0381166000908152600d602052604090205480156115b1576000600c600183038154811061203057fe5b6000918252602090912060069091020180549091506001600160a01b0384811691161461206f5760405162461bcd60e51b815260040161124a90614066565b80546001600160a01b03191681556040517f646cfe9445aed85f4853d501d1924d2bdabb1bbf12531df29f929f07ba4169e0906120ad908590613b6d565b60405180910390a1505050565b336120c3611b60565b6001600160a01b0316146120e95760405162461bcd60e51b815260040161124a90613eef565b6010805460ff191660011790556040517f4426aa1fb73e391071491fcfe21a88b5c38a0a0333a1f6e77161470439704cf890600090a1565b601054610100900460ff16156121495760405162461bcd60e51b815260040161124a90613e88565b604051631526fe2760e01b81526000908190819073f403c135812408bfbe8713b5a23a04b3d48aae3190631526fe27906121879087906004016141fc565b60c06040518083038186803b15801561219f57600080fd5b505afa1580156121b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d791906138d5565b5050600780546001600160a01b038087166001600160a01b0319928316179092556008805483871690831681179091556009805493851693909216929092179055600a899055604080516306fdde0360e01b81529051959850939650909450926306fdde03926004808201935060009291829003018186803b15801561225c57600080fd5b505afa158015612270573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261229891908101906139ea565b6040516020016122a89190613af5565b604051602081830303815290604052601190805190602001906122cc92919061379d565b50816001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561230657600080fd5b505afa15801561231a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261234291908101906139ea565b6040516020016123529190613b33565b6040516020818303038152906040526012908051906020019061237692919061379d565b506010805461ffff191661010017905561238e6107cc565b612396611ac8565b50505050565b600d6020526000908152604090205481565b600260065414156123d15760405162461bcd60e51b815260040161124a90614113565b600260065560006123e0612f35565b90506123ea61381b565b6123fb8360005b6020020151612958565b81526124088360016123f1565b602082015260105460ff1661247d57600954604051637050ccd960e01b81526001600160a01b0390911690637050ccd99061244a903090600190600401613be8565b600060405180830381600087803b15801561246457600080fd5b505af1158015612478573d6000803e3d6000fd5b505050505b6124876000612f3f565b600c5460005b818110156124ab576124a38186858760006130dd565b60010161248d565b50835160208501516040517ffbb924eaf6a0dae4d734ad9fd5399b11487e7da53ec2871839b24fa30381b5ff926124e3929091613b81565b60405180910390a1505060016006555050565b600c546060908067ffffffffffffffff8111801561251357600080fd5b5060405190808252806020026020018201604052801561254d57816020015b61253a613839565b8152602001906001900390816125325790505b50915060005b81811015612607576000600c828154811061256a57fe5b6000918252602090912060069091020180549091506001600160a01b031661259257506125ff565b6001600160a01b038516600090815260058201602052604090205484518590849081106125bb57fe5b6020908102919091018101510152805484516001600160a01b03909116908590849081106125e557fe5b60209081029190910101516001600160a01b039091169052505b600101612553565b5050919050565b3390565b6001600160a01b0383166126385760405162461bcd60e51b815260040161124a90613feb565b6001600160a01b03821661265e5760405162461bcd60e51b815260040161124a90613d3b565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906126b99085906141fc565b60405180910390a3505050565b6001600160a01b0383166126ec5760405162461bcd60e51b815260040161124a90613f84565b6001600160a01b0382166127125760405162461bcd60e51b815260040161124a90613cb2565b61271d8383836134ad565b61275a816040518060600160405280602681526020016142bf602691396001600160a01b03861660009081526020819052604090205491906127db565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546127899082612933565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906126b99085906141fc565b600081848411156127ff5760405162461bcd60e51b815260040161124a9190613c7f565b505050900390565b6001600160a01b03821661282d5760405162461bcd60e51b815260040161124a90613f43565b612839826000836134ad565b6128768160405180606001604052806022815260200161427d602291396001600160a01b03851660009081526020819052604090205491906127db565b6001600160a01b03831660009081526020819052604090205560025461289c90826134d4565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116d89085906141fc565b610f808363a9059cbb60e01b84846040516024016128fc929190613c03565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526134fc565b60008282018381101561100c5760405162461bcd60e51b815260040161124a90613d9d565b60006001600160a01b038216158061297d5750600b546001600160a01b038381169116145b1561298a575060006106e0565b600b546000906001600160a01b031615612a2157600b5460405163d9f96e8d60e01b81526001600160a01b039091169063d9f96e8d906129ce908690600401613b6d565b60206040518083038186803b1580156129e657600080fd5b505afa1580156129fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1e9190613a9d565b90505b61100c81612a2e856116e4565b90612933565b60026006541415612a575760405162461bcd60e51b815260040161124a90614113565b60026006556000612a66612f35565b9050612a7061381b565b612a7b8360006123f1565b815260105460ff16612aed57600954604051637050ccd960e01b81526001600160a01b0390911690637050ccd990612aba903090600190600401613be8565b600060405180830381600087803b158015612ad457600080fd5b505af1158015612ae8573d6000803e3d6000fd5b505050505b612af76001612f3f565b600c5460005b818110156124ab57612b138186858760016130dd565b600101612afd565b6001600160a01b038216612b415760405162461bcd60e51b815260040161124a906141c5565b612b4d600083836134ad565b600254612b5a9082612933565b6002556001600160a01b038216600090815260208190526040902054612b809082612933565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116d89085906141fc565b612396846323b872dd60e01b8585856040516024016128fc93929190613b9b565b33612bf9611b60565b6001600160a01b031614612c1f5760405162461bcd60e51b815260040161124a90613eef565b6001600160a01b0381166000908152600d6020526040902054612de857604080516080810182526001600160a01b038084168083526000602080850182815285870183815260608701848152600c8054600181018255818752985160069099027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7810180549a8a166001600160a01b03199b8c1617905593517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c88501805491909916991698909817909655517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c982015593517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8ca909401939093559254818452600d90925283832091909155915163a9059cbb60e01b815263a9059cbb91612d6b91309190600401613c03565b602060405180830381600087803b158015612d8557600080fd5b505af1158015612d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dbd91906139ca565b5060008051602061429f83398151915281604051612ddb9190613b6d565b60405180910390a1611503565b6001600160a01b0381166000908152600d602052604090205480156115b1576000600c6001830381548110612e1957fe5b6000918252602090912060069091020180549091506001600160a01b0316610f805780546001600160a01b0319166001600160a01b03841617815560405160008051602061429f833981519152906120ad908590613b6d565b801580612efa5750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e90612ea89030908690600401613b81565b60206040518083038186803b158015612ec057600080fd5b505afa158015612ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ef89190613a9d565b155b612f165760405162461bcd60e51b815260040161124a9061414a565b610f808363095ea7b360e01b84846040516024016128fc929190613c03565b6000611bf3610f85565b612f488161358b565b808015612f5f57506013546001600160a01b031633145b15611503576040516370a0823160e01b815260009073d533a949740bb3306d119cc777fa900ba034cd52906370a0823190612f9e903090600401613b6d565b60206040518083038186803b158015612fb657600080fd5b505afa158015612fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fee9190613a9d565b90508015613022576013546130229073d533a949740bb3306d119cc777fa900ba034cd52906001600160a01b031683613606565b6040516370a0823160e01b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906370a0823190613059903090600401613b6d565b60206040518083038186803b15801561307157600080fd5b505afa158015613085573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a99190613a9d565b905080156115b1576013546115b190734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906001600160a01b031683613606565b6000600c86815481106130ec57fe5b6000918252602090912060069091020180549091506001600160a01b031661311457506134a6565b80546040516370a0823160e01b81526000916001600160a01b0316906370a0823190613144903090600401613b6d565b60206040518083038186803b15801561315c57600080fd5b505afa158015613170573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131949190613a9d565b90506000841180156131a95750816003015481115b156131ef576131e2846131dc68056bc75e2d631000006131d68660030154866134d490919063ffffffff16565b9061361a565b90613654565b6002830180549190910190555b60005b600281101561348f57600087826002811061320957fe5b60200201516001600160a01b0316141561322257613487565b600b546001600160a01b031687826002811061323a57fe5b60200201516001600160a01b0316141561325357613487565b83801561325f57508015155b1561326957613487565b600083600401600089846002811061327d57fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002054905084806132b45750836002015481105b156134855784156133c057600061334861330268056bc75e2d631000006131dc6132eb868a600201546134d490919063ffffffff16565b8c88600281106132f757fe5b60200201519061361a565b8660050160008c876002811061331457fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000205461293390919063ffffffff16565b905080156133ba5760008560050160008b866002811061336457fe5b602090810291909101516001600160a01b039081168352908201929092526040016000209190915585546133ad91168a60018601600281106133a257fe5b602002015183613606565b6133b784826134d4565b93505b50613444565b6134086133f668056bc75e2d631000006131dc6133ea8589600201546134d490919063ffffffff16565b8b87600281106132f757fe5b8560050160008b866002811061331457fe5b8460050160008a856002811061341a57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b83600201548460040160008a856002811061345b57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b505b6001016131f2565b50816003015481146134a357600382018190555b50505b5050505050565b604080518082019091526001600160a01b03808516825283166020820152610f80906123ae565b6000828211156134f65760405162461bcd60e51b815260040161124a90613dd4565b50900390565b6060613551826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166136869092919063ffffffff16565b805190915015610f80578080602001905181019061356f91906139ca565b610f805760405162461bcd60e51b815260040161124a906140a8565b600e546001600160a01b03161561150357600e60009054906101000a90046001600160a01b03166001600160a01b0316632663fcfc6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156135ec57600080fd5b505af19250505080156135fd575060015b61150357611503565b610f806001600160a01b03841683836128dd565b60008261362957506000610793565b8282028284828161363657fe5b041461100c5760405162461bcd60e51b815260040161124a90613eae565b60008082116136755760405162461bcd60e51b815260040161124a90613e51565b81838161367e57fe5b049392505050565b6060613695848460008561369d565b949350505050565b6060824710156136bf5760405162461bcd60e51b815260040161124a90613e0b565b6136c88561375e565b6136e45760405162461bcd60e51b815260040161124a9061402f565b60006060866001600160a01b031685876040516137019190613ad9565b60006040518083038185875af1925050503d806000811461373e576040519150601f19603f3d011682016040523d82523d6000602084013e613743565b606091505b5091509150613753828286613764565b979650505050505050565b3b151590565b6060831561377357508161100c565b8251156137835782518084602001fd5b8160405162461bcd60e51b815260040161124a9190613c7f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106137de57805160ff191683800117855561380b565b8280016001018555821561380b579182015b8281111561380b5782518255916020019190600101906137f0565b50613817929150613850565b5090565b60405180604001604052806002906020820280368337509192915050565b604080518082019091526000808252602082015290565b5b808211156138175760008155600101613851565b600060208284031215613876578081fd5b813561100c81614267565b600060208284031215613892578081fd5b815161100c81614267565b600080604083850312156138af578081fd5b82356138ba81614267565b915060208301356138ca81614267565b809150509250929050565b60008060008060008060c087890312156138ed578182fd5b86516138f881614267565b602088015190965061390981614267565b604088015190955061391a81614267565b606088015190945061392b81614267565b608088015190935061393c81614267565b60a08801519092508015158114613951578182fd5b809150509295509295509295565b600080600060608486031215613973578283fd5b833561397e81614267565b9250602084013561398e81614267565b929592945050506040919091013590565b600080604083850312156139b1578182fd5b82356139bc81614267565b946020939093013593505050565b6000602082840312156139db578081fd5b8151801515811461100c578182fd5b6000602082840312156139fb578081fd5b815167ffffffffffffffff80821115613a12578283fd5b818401915084601f830112613a25578283fd5b815181811115613a33578384fd5b604051601f8201601f191681016020018381118282101715613a53578586fd5b604052818152838201602001871015613a6a578485fd5b613a7b82602083016020870161423b565b9695505050505050565b600060208284031215613a96578081fd5b5035919050565b600060208284031215613aae578081fd5b5051919050565b60008060408385031215613ac7578182fd5b8235915060208301356138ca81614267565b60008251613aeb81846020870161423b565b9190910192915050565b600066029ba30b5b2b2160cd1b82528251613b1781600785016020870161423b565b640408ce4c2f60db1b6007939091019283015250600c01919050565b60006273746b60e81b82528251613b5181600385016020870161423b565b6405acce4c2f60db1b6003939091019283015250600801919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6001600160a01b039290921682521515602082015260400190565b6001600160a01b03929092168252602082015260400190565b602080825282518282018190526000919060409081850190868401855b82811015613c6757815180516001600160a01b03168552860151868501529284019290850190600101613c39565b5091979650505050505050565b901515815260200190565b6000602082528251806020840152613c9e81604085016020870161423b565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600690820152651cd9585b195960d21b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b6020808252600c908201526b185b1c9958591e481a5b9a5d60a21b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526005908201526410b9b2b63360d91b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526739b43aba3237bbb760c11b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b602080825260099082015268042dad2e6dac2e8c6d60bb1b604082015260600190565b602080825260059082015264216661726d60d81b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252600790820152662172657669766560c81b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606082015260800190565b6020808252600b908201526a185b1c9958591e481cd95d60aa1b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b9182521515602082015260400190565b92835260208301919091521515604082015260600190565b60ff91909116815260200190565b60005b8381101561425657818101518382015260200161423e565b838111156123965750506000910152565b6001600160a01b038116811461150357600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365b13fd610fe4e1b384966826794a9b2f6100ad031f352cc5ec6f22667f607498045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122087aaa4586fded00c6561dddd0e6f55b01fb23fe25ce9f2468c613036062df78964736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004c586e8b191d67aa79eb55e89f9a5cbd9bcbdc570000000000000000000000008952bfd1ba716cb7bdc553d503b068f4681c5808
-----Decoded View---------------
Arg [0] : _distributor (address): 0x4C586e8B191d67AA79EB55e89F9a5cbD9BcbDc57
Arg [1] : _factory (address): 0x8952bFd1ba716cB7bdc553d503b068f4681C5808
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000004c586e8b191d67aa79eb55e89f9a5cbd9bcbdc57
Arg [1] : 0000000000000000000000008952bfd1ba716cb7bdc553d503b068f4681c5808
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.