ETH Price: $2,713.10 (+3.37%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim211447832024-11-08 18:41:5987 days ago1731091319IN
0x076c54b8...94D34890a
0 ETH0.0021229755.16093738
Claim182038512023-09-24 6:24:23499 days ago1695536663IN
0x076c54b8...94D34890a
0 ETH0.000256136
Claim160750992022-11-29 10:37:59797 days ago1669718279IN
0x076c54b8...94D34890a
0 ETH0.0004692410.42901834
Claim160750972022-11-29 10:37:35797 days ago1669718255IN
0x076c54b8...94D34890a
0 ETH0.001215499.75360942
Claim160750702022-11-29 10:32:11797 days ago1669717931IN
0x076c54b8...94D34890a
0 ETH0.001219579.78541257
Claim160750622022-11-29 10:30:35797 days ago1669717835IN
0x076c54b8...94D34890a
0 ETH0.0012698410.18974142
Claim160750552022-11-29 10:29:11797 days ago1669717751IN
0x076c54b8...94D34890a
0 ETH0.001213169.73303276
Claim160748692022-11-29 9:51:47797 days ago1669715507IN
0x076c54b8...94D34890a
0 ETH0.0012857410.31834362
Claim160741812022-11-29 7:33:35797 days ago1669707215IN
0x076c54b8...94D34890a
0 ETH0.001216049.7580242
Claim160741222022-11-29 7:21:47798 days ago1669706507IN
0x076c54b8...94D34890a
0 ETH0.0012910610.36
Claim160740512022-11-29 7:07:23798 days ago1669705643IN
0x076c54b8...94D34890a
0 ETH0.0012778510.25403014
Claim160740502022-11-29 7:07:11798 days ago1669705631IN
0x076c54b8...94D34890a
0 ETH0.0013147810.55136969
Claim160740482022-11-29 7:06:47798 days ago1669705607IN
0x076c54b8...94D34890a
0 ETH0.001210099.71029698
Claim160740482022-11-29 7:06:47798 days ago1669705607IN
0x076c54b8...94D34890a
0 ETH0.001221329.80037353
Claim160740482022-11-29 7:06:47798 days ago1669705607IN
0x076c54b8...94D34890a
0 ETH0.001281610.28512429
Claim160740482022-11-29 7:06:47798 days ago1669705607IN
0x076c54b8...94D34890a
0 ETH0.0014030511.25864962
Claim160740382022-11-29 7:04:47798 days ago1669705487IN
0x076c54b8...94D34890a
0 ETH0.001072978.60999472
Claim160740092022-11-29 6:58:47798 days ago1669705127IN
0x076c54b8...94D34890a
0 ETH0.0013369410.73022979
Claim160740002022-11-29 6:56:59798 days ago1669705019IN
0x076c54b8...94D34890a
0 ETH0.001160579.31468574
Claim160740002022-11-29 6:56:59798 days ago1669705019IN
0x076c54b8...94D34890a
0 ETH0.001210489.71343639
Claim160739952022-11-29 6:55:59798 days ago1669704959IN
0x076c54b8...94D34890a
0 ETH0.0012547310.06847819
Claim160739942022-11-29 6:55:47798 days ago1669704947IN
0x076c54b8...94D34890a
0 ETH0.001195989.59794903
Claim160739932022-11-29 6:55:35798 days ago1669704935IN
0x076c54b8...94D34890a
0 ETH0.00128110.28029184
Claim160739872022-11-29 6:54:23798 days ago1669704863IN
0x076c54b8...94D34890a
0 ETH0.001215559.75405745
Claim160739842022-11-29 6:53:47798 days ago1669704827IN
0x076c54b8...94D34890a
0 ETH0.0013428910.7769308
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SingularityAirdrop

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : SingularityAirdrop.sol
pragma solidity ^0.6.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "./IExternalStake.sol";

contract SingularityAirdrop is Ownable, ReentrancyGuard {

    using SafeMath for uint256;

    ERC20 public airDropToken; // Address of token contract

    address public authorizer; // Authorizer Address for the airdrop

    // address public stakingContractAddress; // Staking Contract address for direct staking from AirDrop
    mapping(address => bool) public stakingContractAddressList; // Enhacements to support Multiple Contracts

    //To store the current air drop window claim period - There is no point storing all the airDrop window details in the structure
    uint256 public currentAirDropWindowId;
    uint256 public currentClaimStartTime;
    uint256 public currentClaimEndTime;

    //To store claimed signature from authorizer in order to prevent replay attack
    mapping (bytes32 => bool) public usedSignatures; 

    //To store the claimed amount so far for a wallet
    mapping(address => uint256) public claimAmountList;

    // Events
    event NewAuthorizer(address conversionAuthorizer);
    event UpdatedStakingContract(address stakingContract, bool status);
    event WithdrawToken(address indexed owner, uint256 amount);
    event Claim(address indexed authorizer, address indexed claimer, uint256 totalEligibleAmount, uint256 airDropAmount, uint256 airDropId, uint256 airDropWindowId);
    event ConfigsUpdated(uint256 airDropWindowId, uint256 claimStartTime, uint256 claimEndTime);

    constructor(address _token)
    public
    {
        airDropToken = ERC20(_token);
    }
    
    function updateAuthorizer(address newAuthorizer) external onlyOwner {

        require(newAuthorizer != address(0), "Invalid operator address");
        authorizer = newAuthorizer;

        emit NewAuthorizer(newAuthorizer);
    }

    function updateStakingContract(address newStakingContract, bool enable) external onlyOwner {

        // Update the contract address, to remove the integration update the contract with 0x0
        // stakingContractAddress = newStakingContract;

        stakingContractAddressList[newStakingContract] = enable;

        emit UpdatedStakingContract(newStakingContract, enable);
    }


    function withdrawToken(uint256 value) external onlyOwner {

        // Check if contract is having required balance 
        require(airDropToken.balanceOf(address(this)) >= value, "Not enough balance in the contract");
        require(airDropToken.transfer(msg.sender, value), "Unable to transfer token to the operator account");

        emit WithdrawToken(msg.sender, value);
        
    }

    function configureAirDropClaim(uint256 airDropWindowId, uint256 claimStartTime, uint256 claimEndTime) external onlyOwner {

        // Check for the valid parameters
        require(airDropWindowId >= currentAirDropWindowId && claimStartTime > 0, "Invalid parameters");
        // Enabling a provision to update the Claim Period as it is going to done by owner only
        require(claimStartTime < claimEndTime && now < claimEndTime , "Invalid configurations");

        currentAirDropWindowId = airDropWindowId;
        currentClaimStartTime = claimStartTime;
        currentClaimEndTime = claimEndTime;

        emit ConfigsUpdated(airDropWindowId, claimStartTime, claimEndTime);
    }


    function _validateClaim(address token, uint256 totalEligibleAmount, uint256 airDropAmount, uint256 airDropId, uint256 airDropWindowId, uint8 v, bytes32 r, bytes32 s) internal {

        // Check if contract is having required balance 
        require(airDropToken.balanceOf(address(this)) >= airDropAmount, "Not enough balance in the contract");

        // Restrict the claim time frame as per the claim period configured
        require(airDropWindowId == currentAirDropWindowId && now >= currentClaimStartTime && now <= currentClaimEndTime, "Invalid claim request");

        // Check current claim is within total claimable amount
        require(claimAmountList[msg.sender].add(airDropAmount) <= totalEligibleAmount, "Invalid Claim - Exceeds claim limit");

        //compose the message which was signed
        bytes32 message = prefixed(keccak256(abi.encodePacked("__airdropclaim", totalEligibleAmount, airDropAmount, msg.sender, airDropId, airDropWindowId, this, token)));
        // check that the signature is from the authorizer
        address signAddress = ecrecover(message, v, r, s);
        require(signAddress == authorizer, "Invalid request or signature for claim");

        //check for replay attack (message signature can be used only once)
        require( ! usedSignatures[message], "Signature has already been used");
        usedSignatures[message] = true;

    }


    function claim(address token, uint256 totalEligibleAmount, uint256 airDropAmount, uint256 airDropId, uint256 airDropWindowId, uint8 v, bytes32 r, bytes32 s) external nonReentrant {

        _validateClaim(token, totalEligibleAmount, airDropAmount, airDropId, airDropWindowId, v, r, s);

        // Update the claim amount
        claimAmountList[msg.sender] = claimAmountList[msg.sender].add(airDropAmount);

        // Transfer to User Wallet
        require(airDropToken.transfer(msg.sender, airDropAmount), "Unable to transfer token to the account");

        emit Claim(authorizer, msg.sender, totalEligibleAmount, airDropAmount, airDropId, airDropWindowId);

    }

    function claimAndStake(address stakingContractAddress, address token, uint256 totalEligibleAmount,uint256 airDropAmount, uint256 stakeAmount, uint256 airDropId, uint256 airDropWindowId, uint8 v, bytes32 r, bytes32 s) external nonReentrant {
    
        // Check for amount and staking contract address
        require(stakeAmount > 0 && stakeAmount <= airDropAmount, "Invalid amount");
        require(stakingContractAddressList[stakingContractAddress], "Automatic staking is not allowed");

        _validateClaim(token, totalEligibleAmount, airDropAmount, airDropId, airDropWindowId, v, r, s);

        // Update the claim amount
        claimAmountList[msg.sender] = claimAmountList[msg.sender].add(airDropAmount);

        // Approve the Spender - Staking Contract
        airDropToken.approve(stakingContractAddress, stakeAmount);

        // Call the submet stake on behalf of the user - air drop msg.sender will be staker
        require(IExternalStake(stakingContractAddress).submitStakeFor(msg.sender, stakeAmount), "Unable to stake");

        if(airDropAmount > stakeAmount) {
            // Transfer remaining amount to User Wallet
            require(airDropToken.transfer(msg.sender, airDropAmount.sub(stakeAmount)), "Unable to transfer token to the account");
        }

        emit Claim(authorizer, msg.sender, totalEligibleAmount, airDropAmount, airDropId, airDropWindowId);

    }


    /// builds a prefixed hash to mimic the behavior of ethSign.
    function prefixed(bytes32 hash) internal pure returns (bytes32) 
    {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }



}

File 2 of 9 : IExternalStake.sol
pragma solidity ^0.6.0;

interface IExternalStake {
    function submitStakeFor(address staker, uint256 stakeAmount)external returns(bool);
}

File 3 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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].
 */
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;
    }
}

File 4 of 9 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @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 in 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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

File 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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);
}

File 6 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.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;
    using Address for address;

    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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 {
        _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 { }
}

File 7 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 8 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "../GSN/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalEligibleAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"airDropAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"airDropId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"airDropWindowId","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimEndTime","type":"uint256"}],"name":"ConfigsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"conversionAuthorizer","type":"address"}],"name":"NewAuthorizer","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":"stakingContract","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdatedStakingContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawToken","type":"event"},{"inputs":[],"name":"airDropToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"totalEligibleAmount","type":"uint256"},{"internalType":"uint256","name":"airDropAmount","type":"uint256"},{"internalType":"uint256","name":"airDropId","type":"uint256"},{"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimAmountList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContractAddress","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"totalEligibleAmount","type":"uint256"},{"internalType":"uint256","name":"airDropAmount","type":"uint256"},{"internalType":"uint256","name":"stakeAmount","type":"uint256"},{"internalType":"uint256","name":"airDropId","type":"uint256"},{"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claimAndStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"internalType":"uint256","name":"claimStartTime","type":"uint256"},{"internalType":"uint256","name":"claimEndTime","type":"uint256"}],"name":"configureAirDropClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentAirDropWindowId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentClaimEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentClaimStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingContractAddressList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAuthorizer","type":"address"}],"name":"updateAuthorizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newStakingContract","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"updateStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedSignatures","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506040516117253803806117258339818101604052602081101561003357600080fd5b505160006100486001600160e01b036100bb16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600280546001600160a01b0319166001600160a01b03929092169190911790556100bf565b3390565b611657806100ce6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063cd80d03a116100a2578063e201be9811610071578063e201be98146102d0578063ea55b9b6146102d8578063efd33765146102fe578063f2fde38b1461032c578063f978fd61146103525761010b565b8063cd80d03a14610292578063d09edf311461029a578063d5817327146102a2578063e0a66578146102aa5761010b565b80638da5cb5b116100de5780638da5cb5b146101a5578063908ab6f3146101c957806391a02cec146101f2578063b581daf61461022c5761010b565b80630d7bf2fe146101105780634b813ba61461012a57806350baa62214610180578063715018a61461019d575b600080fd5b61011861036f565b60408051918252519081900360200190f35b61017e600480360361010081101561014157600080fd5b506001600160a01b038135169060208101359060408101359060608101359060808101359060ff60a0820135169060c08101359060e00135610375565b005b61017e6004803603602081101561019657600080fd5b5035610533565b61017e610732565b6101ad6107d4565b604080516001600160a01b039092168252519081900360200190f35b61017e600480360360608110156101df57600080fd5b50803590602081013590604001356107e3565b6102186004803603602081101561020857600080fd5b50356001600160a01b031661093f565b604080519115158252519081900360200190f35b61017e600480360361014081101561024357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060c08101359060ff60e08201351690610100810135906101200135610954565b610118610d36565b6101ad610d3c565b610118610d4b565b61017e600480360360208110156102c057600080fd5b50356001600160a01b0316610d51565b6101ad610e58565b610118600480360360208110156102ee57600080fd5b50356001600160a01b0316610e67565b61017e6004803603604081101561031457600080fd5b506001600160a01b0381351690602001351515610e79565b61017e6004803603602081101561034257600080fd5b50356001600160a01b0316610f35565b6102186004803603602081101561036857600080fd5b503561102d565b60065481565b600260015414156103cd576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001556103e28888888888888888611042565b33600090815260096020526040902054610402908763ffffffff61138a16565b33600081815260096020908152604080832094909455600254845163a9059cbb60e01b81526004810194909452602484018b905293516001600160a01b039094169363a9059cbb93604480820194918390030190829087803b15801561046757600080fd5b505af115801561047b573d6000803e3d6000fd5b505050506040513d602081101561049157600080fd5b50516104ce5760405162461bcd60e51b81526004018080602001828103825260278152602001806115406027913960400191505060405180910390fd5b600354604080518981526020810189905280820188905260608101879052905133926001600160a01b0316917fe59ff71ac92a9cdaad8faaee0aeac469c4e887ad48391d6bc2512e644d33efa1919081900360800190a3505060018055505050505050565b61053b6113eb565b6000546001600160a01b0390811691161461058b576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b8152306004820152905183926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156105d557600080fd5b505afa1580156105e9573d6000803e3d6000fd5b505050506040513d60208110156105ff57600080fd5b5051101561063e5760405162461bcd60e51b81526004018080602001828103825260228152602001806115876022913960400191505060405180910390fd5b6002546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561069257600080fd5b505af11580156106a6573d6000803e3d6000fd5b505050506040513d60208110156106bc57600080fd5b50516106f95760405162461bcd60e51b81526004018080602001828103825260308152602001806115f26030913960400191505060405180910390fd5b60408051828152905133917f992ee874049a42cae0757a765cd7f641b6028cc35c3478bde8330bf417c3a7a9919081900360200190a250565b61073a6113eb565b6000546001600160a01b0390811691161461078a576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6107eb6113eb565b6000546001600160a01b0390811691161461083b576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b600554831015801561084d5750600082115b610893576040805162461bcd60e51b8152602060048201526012602482015271496e76616c696420706172616d657465727360701b604482015290519081900360640190fd5b80821080156108a157508042105b6108eb576040805162461bcd60e51b8152602060048201526016602482015275496e76616c696420636f6e66696775726174696f6e7360501b604482015290519081900360640190fd5b600583905560068290556007819055604080518481526020810184905280820183905290517f8cd456cc1e0ca506bafca3eaa6445f61b950e0d04c25aa3377c7996cf66b4d499181900360600190a1505050565b60046020526000908152604090205460ff1681565b600260015414156109ac576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015585158015906109c05750868611155b610a02576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015290519081900360640190fd5b6001600160a01b038a1660009081526004602052604090205460ff16610a6f576040805162461bcd60e51b815260206004820181905260248201527f4175746f6d61746963207374616b696e67206973206e6f7420616c6c6f776564604482015290519081900360640190fd5b610a7f8989898888888888611042565b33600090815260096020526040902054610a9f908863ffffffff61138a16565b33600090815260096020908152604080832093909355600254835163095ea7b360e01b81526001600160a01b038f81166004830152602482018c90529451949091169363095ea7b393604480840194938390030190829087803b158015610b0557600080fd5b505af1158015610b19573d6000803e3d6000fd5b505050506040513d6020811015610b2f57600080fd5b505060408051630680896f60e31b81523360048201526024810188905290516001600160a01b038c16916334044b789160448083019260209291908290030181600087803b158015610b8057600080fd5b505af1158015610b94573d6000803e3d6000fd5b505050506040513d6020811015610baa57600080fd5b5051610bef576040805162461bcd60e51b815260206004820152600f60248201526e556e61626c6520746f207374616b6560881b604482015290519081900360640190fd5b85871115610ccf576002546001600160a01b031663a9059cbb33610c198a8a63ffffffff6113ef16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610c6857600080fd5b505af1158015610c7c573d6000803e3d6000fd5b505050506040513d6020811015610c9257600080fd5b5051610ccf5760405162461bcd60e51b81526004018080602001828103825260278152602001806115406027913960400191505060405180910390fd5b600354604080518a8152602081018a905280820188905260608101879052905133926001600160a01b0316917fe59ff71ac92a9cdaad8faaee0aeac469c4e887ad48391d6bc2512e644d33efa1919081900360800190a35050600180555050505050505050565b60055481565b6003546001600160a01b031681565b60075481565b610d596113eb565b6000546001600160a01b03908116911614610da9576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b6001600160a01b038116610e04576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f7220616464726573730000000000000000604482015290519081900360640190fd5b600380546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f08f53e6a9fbc3949bc0b9266bbe1927f0b282a34d92876ccbe188c24d17c6cbb9181900360200190a150565b6002546001600160a01b031681565b60096020526000908152604090205481565b610e816113eb565b6000546001600160a01b03908116911614610ed1576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517fa454575fc60ef70e6f8f4559491e8d75a4ee9486f5d49b593c4074e60d224d2b9281900390910190a15050565b610f3d6113eb565b6000546001600160a01b03908116911614610f8d576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b6001600160a01b038116610fd25760405162461bcd60e51b815260040180806020018281038252602681526020018061151a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205460ff1681565b600254604080516370a0823160e01b8152306004820152905188926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561108c57600080fd5b505afa1580156110a0573d6000803e3d6000fd5b505050506040513d60208110156110b657600080fd5b505110156110f55760405162461bcd60e51b81526004018080602001828103825260228152602001806115876022913960400191505060405180910390fd5b6005548414801561110857506006544210155b801561111657506007544211155b61115f576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590818db185a5b481c995c5d595cdd605a1b604482015290519081900360640190fd5b336000908152600960205260409020548790611181908863ffffffff61138a16565b11156111be5760405162461bcd60e51b81526004018080602001828103825260238152602001806115a96023913960400191505060405180910390fd5b604080516d5f5f61697264726f70636c61696d60901b602080830191909152602e82018a9052604e820189905233606090811b606e8401526082830189905260a2830188905230811b60c28401528b901b6bffffffffffffffffffffffff191660d6830152825180830360ca01815260ea909201909252805191012060009061124690611431565b9050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156112a7573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b0380841691161490506113025760405162461bcd60e51b81526004018080602001828103825260268152602001806115cc6026913960400191505060405180910390fd5b60008281526008602052604090205460ff1615611366576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b506000908152600860205260409020805460ff191660011790555050505050505050565b6000828201838110156113e4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b60006113e483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611482565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b600081848411156115115760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114d65781810151838201526020016114be565b50505050905090810190601f1680156115035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206163636f756e744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e6f7420656e6f7567682062616c616e636520696e2074686520636f6e7472616374496e76616c696420436c61696d202d204578636565647320636c61696d206c696d6974496e76616c69642072657175657374206f72207369676e617475726520666f7220636c61696d556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206f70657261746f72206163636f756e74a2646970667358221220da726ea5c3400980d4e4ba4850cfcd56dc1ec993f489fd816ac534059286f98164736f6c63430006020033000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063cd80d03a116100a2578063e201be9811610071578063e201be98146102d0578063ea55b9b6146102d8578063efd33765146102fe578063f2fde38b1461032c578063f978fd61146103525761010b565b8063cd80d03a14610292578063d09edf311461029a578063d5817327146102a2578063e0a66578146102aa5761010b565b80638da5cb5b116100de5780638da5cb5b146101a5578063908ab6f3146101c957806391a02cec146101f2578063b581daf61461022c5761010b565b80630d7bf2fe146101105780634b813ba61461012a57806350baa62214610180578063715018a61461019d575b600080fd5b61011861036f565b60408051918252519081900360200190f35b61017e600480360361010081101561014157600080fd5b506001600160a01b038135169060208101359060408101359060608101359060808101359060ff60a0820135169060c08101359060e00135610375565b005b61017e6004803603602081101561019657600080fd5b5035610533565b61017e610732565b6101ad6107d4565b604080516001600160a01b039092168252519081900360200190f35b61017e600480360360608110156101df57600080fd5b50803590602081013590604001356107e3565b6102186004803603602081101561020857600080fd5b50356001600160a01b031661093f565b604080519115158252519081900360200190f35b61017e600480360361014081101561024357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060c08101359060ff60e08201351690610100810135906101200135610954565b610118610d36565b6101ad610d3c565b610118610d4b565b61017e600480360360208110156102c057600080fd5b50356001600160a01b0316610d51565b6101ad610e58565b610118600480360360208110156102ee57600080fd5b50356001600160a01b0316610e67565b61017e6004803603604081101561031457600080fd5b506001600160a01b0381351690602001351515610e79565b61017e6004803603602081101561034257600080fd5b50356001600160a01b0316610f35565b6102186004803603602081101561036857600080fd5b503561102d565b60065481565b600260015414156103cd576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001556103e28888888888888888611042565b33600090815260096020526040902054610402908763ffffffff61138a16565b33600081815260096020908152604080832094909455600254845163a9059cbb60e01b81526004810194909452602484018b905293516001600160a01b039094169363a9059cbb93604480820194918390030190829087803b15801561046757600080fd5b505af115801561047b573d6000803e3d6000fd5b505050506040513d602081101561049157600080fd5b50516104ce5760405162461bcd60e51b81526004018080602001828103825260278152602001806115406027913960400191505060405180910390fd5b600354604080518981526020810189905280820188905260608101879052905133926001600160a01b0316917fe59ff71ac92a9cdaad8faaee0aeac469c4e887ad48391d6bc2512e644d33efa1919081900360800190a3505060018055505050505050565b61053b6113eb565b6000546001600160a01b0390811691161461058b576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b8152306004820152905183926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156105d557600080fd5b505afa1580156105e9573d6000803e3d6000fd5b505050506040513d60208110156105ff57600080fd5b5051101561063e5760405162461bcd60e51b81526004018080602001828103825260228152602001806115876022913960400191505060405180910390fd5b6002546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561069257600080fd5b505af11580156106a6573d6000803e3d6000fd5b505050506040513d60208110156106bc57600080fd5b50516106f95760405162461bcd60e51b81526004018080602001828103825260308152602001806115f26030913960400191505060405180910390fd5b60408051828152905133917f992ee874049a42cae0757a765cd7f641b6028cc35c3478bde8330bf417c3a7a9919081900360200190a250565b61073a6113eb565b6000546001600160a01b0390811691161461078a576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6107eb6113eb565b6000546001600160a01b0390811691161461083b576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b600554831015801561084d5750600082115b610893576040805162461bcd60e51b8152602060048201526012602482015271496e76616c696420706172616d657465727360701b604482015290519081900360640190fd5b80821080156108a157508042105b6108eb576040805162461bcd60e51b8152602060048201526016602482015275496e76616c696420636f6e66696775726174696f6e7360501b604482015290519081900360640190fd5b600583905560068290556007819055604080518481526020810184905280820183905290517f8cd456cc1e0ca506bafca3eaa6445f61b950e0d04c25aa3377c7996cf66b4d499181900360600190a1505050565b60046020526000908152604090205460ff1681565b600260015414156109ac576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015585158015906109c05750868611155b610a02576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015290519081900360640190fd5b6001600160a01b038a1660009081526004602052604090205460ff16610a6f576040805162461bcd60e51b815260206004820181905260248201527f4175746f6d61746963207374616b696e67206973206e6f7420616c6c6f776564604482015290519081900360640190fd5b610a7f8989898888888888611042565b33600090815260096020526040902054610a9f908863ffffffff61138a16565b33600090815260096020908152604080832093909355600254835163095ea7b360e01b81526001600160a01b038f81166004830152602482018c90529451949091169363095ea7b393604480840194938390030190829087803b158015610b0557600080fd5b505af1158015610b19573d6000803e3d6000fd5b505050506040513d6020811015610b2f57600080fd5b505060408051630680896f60e31b81523360048201526024810188905290516001600160a01b038c16916334044b789160448083019260209291908290030181600087803b158015610b8057600080fd5b505af1158015610b94573d6000803e3d6000fd5b505050506040513d6020811015610baa57600080fd5b5051610bef576040805162461bcd60e51b815260206004820152600f60248201526e556e61626c6520746f207374616b6560881b604482015290519081900360640190fd5b85871115610ccf576002546001600160a01b031663a9059cbb33610c198a8a63ffffffff6113ef16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610c6857600080fd5b505af1158015610c7c573d6000803e3d6000fd5b505050506040513d6020811015610c9257600080fd5b5051610ccf5760405162461bcd60e51b81526004018080602001828103825260278152602001806115406027913960400191505060405180910390fd5b600354604080518a8152602081018a905280820188905260608101879052905133926001600160a01b0316917fe59ff71ac92a9cdaad8faaee0aeac469c4e887ad48391d6bc2512e644d33efa1919081900360800190a35050600180555050505050505050565b60055481565b6003546001600160a01b031681565b60075481565b610d596113eb565b6000546001600160a01b03908116911614610da9576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b6001600160a01b038116610e04576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f7220616464726573730000000000000000604482015290519081900360640190fd5b600380546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f08f53e6a9fbc3949bc0b9266bbe1927f0b282a34d92876ccbe188c24d17c6cbb9181900360200190a150565b6002546001600160a01b031681565b60096020526000908152604090205481565b610e816113eb565b6000546001600160a01b03908116911614610ed1576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517fa454575fc60ef70e6f8f4559491e8d75a4ee9486f5d49b593c4074e60d224d2b9281900390910190a15050565b610f3d6113eb565b6000546001600160a01b03908116911614610f8d576040805162461bcd60e51b81526020600482018190526024820152600080516020611567833981519152604482015290519081900360640190fd5b6001600160a01b038116610fd25760405162461bcd60e51b815260040180806020018281038252602681526020018061151a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205460ff1681565b600254604080516370a0823160e01b8152306004820152905188926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561108c57600080fd5b505afa1580156110a0573d6000803e3d6000fd5b505050506040513d60208110156110b657600080fd5b505110156110f55760405162461bcd60e51b81526004018080602001828103825260228152602001806115876022913960400191505060405180910390fd5b6005548414801561110857506006544210155b801561111657506007544211155b61115f576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590818db185a5b481c995c5d595cdd605a1b604482015290519081900360640190fd5b336000908152600960205260409020548790611181908863ffffffff61138a16565b11156111be5760405162461bcd60e51b81526004018080602001828103825260238152602001806115a96023913960400191505060405180910390fd5b604080516d5f5f61697264726f70636c61696d60901b602080830191909152602e82018a9052604e820189905233606090811b606e8401526082830189905260a2830188905230811b60c28401528b901b6bffffffffffffffffffffffff191660d6830152825180830360ca01815260ea909201909252805191012060009061124690611431565b9050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156112a7573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b0380841691161490506113025760405162461bcd60e51b81526004018080602001828103825260268152602001806115cc6026913960400191505060405180910390fd5b60008281526008602052604090205460ff1615611366576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b506000908152600860205260409020805460ff191660011790555050505050505050565b6000828201838110156113e4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b60006113e483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611482565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b600081848411156115115760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114d65781810151838201526020016114be565b50505050905090810190601f1680156115035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206163636f756e744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e6f7420656e6f7567682062616c616e636520696e2074686520636f6e7472616374496e76616c696420436c61696d202d204578636565647320636c61696d206c696d6974496e76616c69642072657175657374206f72207369676e617475726520666f7220636c61696d556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206f70657261746f72206163636f756e74a2646970667358221220da726ea5c3400980d4e4ba4850cfcd56dc1ec993f489fd816ac534059286f98164736f6c63430006020033

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

000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935

-----Decoded View---------------
Arg [0] : _token (address): 0xF0d33BeDa4d734C72684b5f9abBEbf715D0a7935

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.