MATIC Price: $1.02 (-2.33%)
Gas: 195 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Value
Withdraw539069872024-02-24 16:06:3232 days ago1708790792IN
0x1948abC5...c643fb4E5
0 MATIC0.0016705663.55105594
Emergency Withdr...537550402024-02-20 18:28:5136 days ago1708453731IN
0x1948abC5...c643fb4E5
0 MATIC0.0038951962.57845613
Emergency Withdr...534409962024-02-12 17:55:5944 days ago1707760559IN
0x1948abC5...c643fb4E5
0 MATIC0.00566278130.04438083
Withdraw526546182024-01-23 10:22:4865 days ago1706005368IN
0x1948abC5...c643fb4E5
0 MATIC0.02371458189
Withdraw519205262024-01-04 7:02:5784 days ago1704351777IN
0x1948abC5...c643fb4E5
0 MATIC0.0073199871.14934214
Emergency Withdr...509707382023-12-10 13:46:59109 days ago1702216019IN
0x1948abC5...c643fb4E5
0 MATIC0.0059993396.14159809
Withdraw509705132023-12-10 13:38:29109 days ago1702215509IN
0x1948abC5...c643fb4E5
0 MATIC0.01773737161.78862611
Withdraw489954072023-10-21 21:25:04158 days ago1697923504IN
0x1948abC5...c643fb4E5
0 MATIC0.0087101167.74874376
Emergency Withdr...433677122023-05-31 12:31:23302 days ago1685536283IN
0x1948abC5...c643fb4E5
0 MATIC0.01532249350.62117619
Emergency Withdr...433677092023-05-31 12:31:11302 days ago1685536271IN
0x1948abC5...c643fb4E5
0 MATIC0.02573631588.91815941
Emergency Withdr...433677052023-05-31 12:30:54302 days ago1685536254IN
0x1948abC5...c643fb4E5
0 MATIC0.04322779989.1718528
Emergency Withdr...433677032023-05-31 12:30:50302 days ago1685536250IN
0x1948abC5...c643fb4E5
0 MATIC0.072607241,661.45488763
Emergency Withdr...433676952023-05-31 12:30:32302 days ago1685536232IN
0x1948abC5...c643fb4E5
0 MATIC0.01114105178.53974752
Emergency Withdr...422796032023-05-04 2:59:33329 days ago1683169173IN
0x1948abC5...c643fb4E5
0 MATIC0.05368709250.64002182
Withdraw403931212023-03-16 0:57:27378 days ago1678928247IN
0x1948abC5...c643fb4E5
0 MATIC0.003086130
Withdraw401776322023-03-10 8:57:47384 days ago1678438667IN
0x1948abC5...c643fb4E5
0 MATIC0.02227286204.90029632
Deposit398039692023-02-28 11:42:51394 days ago1677584571IN
0x1948abC5...c643fb4E5
0 MATIC0.02764233253.26715722
Withdraw396131792023-02-23 6:56:45399 days ago1677135405IN
0x1948abC5...c643fb4E5
0 MATIC0.03160998245.82182842
Deposit396126552023-02-23 6:34:27399 days ago1677134067IN
0x1948abC5...c643fb4E5
0 MATIC0.02138251201.51647621
Withdraw396122032023-02-23 6:16:01399 days ago1677132961IN
0x1948abC5...c643fb4E5
0 MATIC0.02048685199.1528533
Deposit395804922023-02-22 8:18:41400 days ago1677053921IN
0x1948abC5...c643fb4E5
0 MATIC0.03429287314.16680432
Withdraw392959982023-02-14 21:06:20407 days ago1676408780IN
0x1948abC5...c643fb4E5
0 MATIC0.05024886450.70697423
Withdraw391869132023-02-11 21:46:36410 days ago1676151996IN
0x1948abC5...c643fb4E5
0 MATIC0.03152123289.98110277
Withdraw389817412023-02-06 14:22:53416 days ago1675693373IN
0x1948abC5...c643fb4E5
0 MATIC0.00344846130.64860439
Withdraw389817412023-02-06 14:22:53416 days ago1675693373IN
0x1948abC5...c643fb4E5
0 MATIC0.01375003133.64860439
View all transactions

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FossilFarms

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-07-15
*/

// SPDX-License-Identifier: MIT


/******************************************/
/*       IERC20 starts here               */
/******************************************/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

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);
}


/******************************************/
/*       SafeMath starts here             */
/******************************************/

// File: @openzeppelin/contracts/math/SafeMath.sol

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;
    }
}


/******************************************/
/*       Address starts here              */
/******************************************/

// File: @openzeppelin/contracts/utils/Address.sol

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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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);
            }
        }
    }
}


/******************************************/
/*       SafeERC20 starts here            */
/******************************************/

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

pragma solidity ^0.6.0;

/**
 * @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");
        }
    }
}

/******************************************/
/*       Context starts here              */
/******************************************/

// File: @openzeppelin/contracts/GSN/Context.sol

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;
    }
}


/******************************************/
/*       Ownable starts here              */
/******************************************/

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.6.0;

/**
 * @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;
    }
}

/******************************************/
/*       FossilFarms starts here        */
/******************************************/

pragma solidity ^0.6.12;

contract FossilFarms is Ownable {

    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    struct UserInfo 
    {
        uint256 amount;                 // How many LP tokens the user has provided.
        uint256 rewardDebt;             // Reward debt. See explanation below.
    }

    struct PoolInfo 
    {
        IERC20 lpToken;                 // Address of LP token contract.
        uint256 allocPoint;             // How many allocation points assigned to this pool.
        uint256 lastRewardBlock;        // Last block number that DINO distribution occured.
        uint256 accDinoPerShare;        // Accumulated DINO per share, times 1e12. See below.
    }

    IERC20 public DINO;                 // DINO token
    PoolInfo[] public poolInfo;         // Info of each pool.
    uint256 public dinoPerBlock;        // DINO tokens created per block.
    uint256 public startBlock;          // The block number at which DINO distribution starts.
    uint256 public endBlock;            // The block number at which DINO distribution ends.
    uint256 public totalAllocPoint = 0; // Total allocation poitns. Must be the sum of all allocation points in all pools.

    mapping (uint256 => mapping (address => UserInfo)) public userInfo;     // Info of each user that stakes LP tokens.

    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);

    constructor(IERC20 _DINO, uint256 _dinoPerBlock, uint256 _startBlock, uint256 _endBlock) public {
        DINO = _DINO;
        dinoPerBlock = _dinoPerBlock;
        startBlock = _startBlock;
        endBlock = _endBlock;
    }

    /**
     * @dev Adds a new lp to the pool. Can only be called by the owner. DO NOT add the same LP token more than once.
     * @param _allocPoint How many allocation points to assign to this pool.
     * @param _lpToken Address of LP token contract.
     * @param _withUpdate Whether to update all LP token contracts. Should be true if DINO distribution has already begun.
     */
    function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
        totalAllocPoint = totalAllocPoint.add(_allocPoint);
        poolInfo.push(PoolInfo({
            lpToken: _lpToken,
            allocPoint: _allocPoint,
            lastRewardBlock: lastRewardBlock,
            accDinoPerShare: 0
        }));
    }

    /**
     * @dev Update the given pool's DINO allocation point. Can only be called by the owner.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _allocPoint How many allocation points to assign to this pool.
     * @param _withUpdate Whether to update all LP token contracts. Should be true if DINO distribution has already begun.
     */
    function set(uint256 _pid, uint256 _allocPoint, bool _withUpdate) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint);
        poolInfo[_pid].allocPoint = _allocPoint;
    }

    /**
     * @dev Return reward multiplier over the given _from to _to blocks based on block count.
     * @param _from First block.
     * @param _to Last block.
     * @return Number of blocks.
     */
    function getMultiplier(uint256 _from, uint256 _to) internal view returns (uint256) {
        if (_to < endBlock) {
            return _to.sub(_from);
        } else if (_from >= endBlock) {
            return 0;
        } else {
            return endBlock.sub(_from);
        }     
    }

    /**
     * @dev View function to see pending DINO on frontend.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _user Address of a specific user.
     * @return Pending DINO.
     */
    function pendingDino(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accDinoPerShare = pool.accDinoPerShare;
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (block.number > pool.lastRewardBlock && lpSupply != 0) {
            uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
            uint256 dinoReward = multiplier.mul(dinoPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
            accDinoPerShare = accDinoPerShare.add(dinoReward.mul(1e12).div(lpSupply));
        }
        return user.amount.mul(accDinoPerShare).div(1e12).sub(user.rewardDebt);
    }

    /**
     * @dev Update reward vairables for all pools. Be careful of gas spending!
     */
    function massUpdatePools() public {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            updatePool(pid);
        }
    }

    /**
     * @dev Update reward variables of the given pool to be up-to-date.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     */
    function updatePool(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        if (block.number <= pool.lastRewardBlock) {
            return;
        }
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (lpSupply == 0) {
            pool.lastRewardBlock = block.number;
            return;
        }
        uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
        uint256 dinoReward = multiplier.mul(dinoPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
        pool.accDinoPerShare = pool.accDinoPerShare.add(dinoReward.mul(1e12).div(lpSupply));
        pool.lastRewardBlock = block.number;
    }

    /**
     * @dev Deposit LP tokens to Faucet for DINO allocation.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _amount Amount of LP tokens to deposit.
     */
    function deposit(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        updatePool(_pid);
        if (user.amount > 0) {
            uint256 pending = user.amount.mul(pool.accDinoPerShare).div(1e12).sub(user.rewardDebt);
            safeDinoTransfer(msg.sender, pending);
        }
        pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
        user.amount = user.amount.add(_amount);
        user.rewardDebt = user.amount.mul(pool.accDinoPerShare).div(1e12);
        emit Deposit(msg.sender, _pid, _amount);
    }

    /**
     * @dev Withdraw LP tokens from Faucet.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _amount Amount of LP tokens to withdraw.
     */
    function withdraw(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        require(user.amount >= _amount, "Can't withdraw more token than previously deposited.");
        updatePool(_pid);
        uint256 pending = user.amount.mul(pool.accDinoPerShare).div(1e12).sub(user.rewardDebt);
        safeDinoTransfer(msg.sender, pending);
        user.amount = user.amount.sub(_amount);
        user.rewardDebt = user.amount.mul(pool.accDinoPerShare).div(1e12);
        pool.lpToken.safeTransfer(address(msg.sender), _amount);
        emit Withdraw(msg.sender, _pid, _amount);
    }

    /**
     * @dev Withdraw without caring about rewards. EMERGENCY ONLY.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     */
    function emergencyWithdraw(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        pool.lpToken.safeTransfer(address(msg.sender), user.amount);
        emit EmergencyWithdraw(msg.sender, _pid, user.amount);
        user.amount = 0;
        user.rewardDebt = 0;
    }

    /**
     * @dev Safe transfer function, just in case if rounding error causes faucet to not have enough DINO.
     * @param _to Target address.
     * @param _amount Amount of DINO to transfer.
     */
    function safeDinoTransfer(address _to, uint256 _amount) internal {
        uint256 dinoBalance = DINO.balanceOf(address(this));
        if (_amount > dinoBalance) {
            DINO.transfer(_to, dinoBalance);
        } else {
            DINO.transfer(_to, _amount);
        }
    }

    /**
     * @dev Views total number of LP token pools.
     * @return Size of poolInfo array.
     */
    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }
    
    /**
     * @dev Views total number of DINO tokens deposited for rewards.
     * @return DINO token balance of the faucet.
     */
    function balance() public view returns (uint256) {
        return DINO.balanceOf(address(this));
    }

    /**
     * @dev Transfer DINO tokens.
     * @return Success.
     */
    function transfer(address to, uint256 value) external onlyOwner returns (bool) {
        return DINO.transfer(to, value);
    }

    /**
     * @dev Define last block on which DINO reward distribution occurs.
     * @return Last block number.
     */
    function setEndBlock(uint256 _endBlock) external onlyOwner returns (uint256) {
        require(block.number < endBlock, "Reward distribution already ended.");
        require(_endBlock > block.number, "Block needs to be in the future.");
        endBlock = _endBlock;
        return endBlock;
    }

    /**
     * @dev Update DINO per block.
     * @return DINO per block.
     */
    function setDinoPerBlock(uint256 _dinoPerBlock) external onlyOwner returns (uint256) {
        require(_dinoPerBlock > 0, "Dino per Block must be greater than 0.");
        massUpdatePools();
        dinoPerBlock = _dinoPerBlock;
        return dinoPerBlock;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_DINO","type":"address"},{"internalType":"uint256","name":"_dinoPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_endBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DINO","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dinoPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingDino","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accDinoPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dinoPerBlock","type":"uint256"}],"name":"setDinoPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endBlock","type":"uint256"}],"name":"setEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060065534801561001557600080fd5b5060405162002a3538038062002a358339818101604052608081101561003a57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050600061007961017660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35083600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260038190555081600481905550806005819055505050505061017e565b600033905090565b6128a7806200018e6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635687c1ab116100c357806393f1a40b1161007c57806393f1a40b146104a7578063a9059cbb14610510578063b69ef8a814610574578063c713aa9414610592578063e2bbb158146105d4578063f2fde38b1461060c5761014d565b80635687c1ab1461039b578063630b5ba1146103b957806364482f79146103c3578063715018a61461040757806371812716146104115780638da5cb5b146104735761014d565b8063225410d411610115578063225410d41461027357806336e48f26146102a7578063441a3e70146102e957806348cd4cb11461032157806351eb05a61461033f5780635312ea8e1461036d5761014d565b8063081e3eda14610152578063083c6323146101705780631526fe271461018e57806317caf6f1146101fb5780631eaaa04514610219575b600080fd5b61015a610650565b6040518082815260200191505060405180910390f35b61017861065d565b6040518082815260200191505060405180910390f35b6101ba600480360360208110156101a457600080fd5b8101908080359060200190929190505050610663565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b6102036106c0565b6040518082815260200191505060405180910390f35b6102716004803603606081101561022f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506106c6565b005b61027b61089f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102d3600480360360208110156102bd57600080fd5b81019080803590602001909291905050506108c5565b6040518082815260200191505060405180910390f35b61031f600480360360408110156102ff57600080fd5b810190808035906020019092919080359060200190929190505050610a01565b005b610329610c2e565b6040518082815260200191505060405180910390f35b61036b6004803603602081101561035557600080fd5b8101908080359060200190929190505050610c34565b005b6103996004803603602081101561038357600080fd5b8101908080359060200190929190505050610df5565b005b6103a3610f27565b6040518082815260200191505060405180910390f35b6103c1610f2d565b005b610405600480360360608110156103d957600080fd5b810190808035906020019092919080359060200190929190803515159060200190929190505050610f5a565b005b61040f6110a4565b005b61045d6004803603604081101561042757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061122a565b6040518082815260200191505060405180910390f35b61047b611470565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f3600480360360408110156104bd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611499565b604051808381526020018281526020019250505060405180910390f35b61055c6004803603604081101561052657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ca565b60405180821515815260200191505060405180910390f35b61057c61166a565b6040518082815260200191505060405180910390f35b6105be600480360360208110156105a857600080fd5b8101908080359060200190929190505050611735565b6040518082815260200191505060405180910390f35b61060a600480360360408110156105ea57600080fd5b8101908080359060200190929190803590602001909291905050506118df565b005b61064e6004803603602081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611abf565b005b6000600280549050905090565b60055481565b6002818154811061067057fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b60065481565b6106ce611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461078e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561079d5761079c610f2d565b5b600060045443116107b0576004546107b2565b435b90506107c984600654611cd290919063ffffffff16565b600681905550600260405180608001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101556040820151816002015560608201518160030155505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108cf611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600082116109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128226026913960400191505060405180910390fd5b6109f0610f2d565b816003819055506003549050919050565b600060028381548110610a1057fe5b9060005260206000209060040201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806127856034913960400191505060405180910390fd5b610ada84610c34565b6000610b248260010154610b1664e8d4a51000610b0887600301548760000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b611e2a90919063ffffffff16565b9050610b303382611e74565b610b47848360000154611e2a90919063ffffffff16565b8260000181905550610b8164e8d4a51000610b7385600301548560000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b8260010181905550610bd833858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120ed9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b60045481565b600060028281548110610c4357fe5b9060005260206000209060040201905080600201544311610c645750610df2565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610cf157600080fd5b505afa158015610d05573d6000803e3d6000fd5b505050506040513d6020811015610d1b57600080fd5b810190808051906020019092919050505090506000811415610d47574382600201819055505050610df2565b6000610d5783600201544361218f565b90506000610d9a600654610d8c8660010154610d7e60035487611d5a90919063ffffffff16565b611d5a90919063ffffffff16565b611de090919063ffffffff16565b9050610ddc610dc984610dbb64e8d4a5100085611d5a90919063ffffffff16565b611de090919063ffffffff16565b8560030154611cd290919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060028281548110610e0457fe5b9060005260206000209060040201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610ebb3382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120ed9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b60035481565b6000600280549050905060005b81811015610f5657610f4b81610c34565b806001019050610f3a565b5050565b610f62611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561103157611030610f2d565b5b611076826110686002868154811061104557fe5b906000526020600020906004020160010154600654611e2a90919063ffffffff16565b611cd290919063ffffffff16565b600681905550816002848154811061108a57fe5b906000526020600020906004020160010181905550505050565b6110ac611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000806002848154811061123a57fe5b9060005260206000209060040201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561133457600080fd5b505afa158015611348573d6000803e3d6000fd5b505050506040513d602081101561135e57600080fd5b81019080805190602001909291905050509050836002015443118015611385575060008114155b1561142057600061139a85600201544361218f565b905060006113dd6006546113cf88600101546113c160035487611d5a90919063ffffffff16565b611d5a90919063ffffffff16565b611de090919063ffffffff16565b905061141b61140c846113fe64e8d4a5100085611d5a90919063ffffffff16565b611de090919063ffffffff16565b85611cd290919063ffffffff16565b935050505b611464836001015461145664e8d4a51000611448868860000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b611e2a90919063ffffffff16565b94505050505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b60006114d4611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561162757600080fd5b505af115801561163b573d6000803e3d6000fd5b505050506040513d602081101561165157600080fd5b8101908080519060200190929190505050905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156116f557600080fd5b505afa158015611709573d6000803e3d6000fd5b505050506040513d602081101561171f57600080fd5b8101908080519060200190929190505050905090565b600061173f611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005544310611859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127df6022913960400191505060405180910390fd5b4382116118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f426c6f636b206e6565647320746f20626520696e20746865206675747572652e81525060200191505060405180910390fd5b816005819055506005549050919050565b6000600283815481106118ee57fe5b9060005260206000209060040201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061195b84610c34565b6000816000015411156119c05760006119b282600101546119a464e8d4a5100061199687600301548760000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b611e2a90919063ffffffff16565b90506119be3382611e74565b505b611a113330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121e5909392919063ffffffff16565b611a28838260000154611cd290919063ffffffff16565b8160000181905550611a6264e8d4a51000611a5484600301548460000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b611ac7611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127b96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600080828401905083811015611d50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611d6d5760009050611dda565b6000828402905082848281611d7e57fe5b0414611dd5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128016021913960400191505060405180910390fd5b809150505b92915050565b6000611e2283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122a6565b905092915050565b6000611e6c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061236c565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611eff57600080fd5b505afa158015611f13573d6000803e3d6000fd5b505050506040513d6020811015611f2957600080fd5b810190808051906020019092919050505090508082111561201857600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611fd757600080fd5b505af1158015611feb573d6000803e3d6000fd5b505050506040513d602081101561200157600080fd5b8101908080519060200190929190505050506120e8565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156120ab57600080fd5b505af11580156120bf573d6000803e3d6000fd5b505050506040513d60208110156120d557600080fd5b8101908080519060200190929190505050505b505050565b61218a8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061242c565b505050565b60006005548210156121b5576121ae8383611e2a90919063ffffffff16565b90506121df565b60055483106121c757600090506121df565b6121dc83600554611e2a90919063ffffffff16565b90505b92915050565b6122a0846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061242c565b50505050565b60008083118290612352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123175780820151818401526020810190506122fc565b50505050905090810190601f1680156123445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161235e57fe5b049050809150509392505050565b6000838311158290612419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123de5780820151818401526020810190506123c3565b50505050905090810190601f16801561240b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b606061248e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661251b9092919063ffffffff16565b9050600081511115612516578080602001905160208110156124af57600080fd5b8101908080519060200190929190505050612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612848602a913960400191505060405180910390fd5b5b505050565b606061252a8484600085612533565b90509392505050565b606061253e85612739565b6125b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061260057805182526020820191506020810190506020830392506125dd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612662576040519150601f19603f3d011682016040523d82523d6000602084013e612667565b606091505b5091509150811561267c578092505050612731565b60008151111561268f5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126f65780820151818401526020810190506126db565b50505050905090810190601f1680156127235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561277b57506000801b8214155b9250505091905056fe43616e2774207769746864726177206d6f726520746f6b656e207468616e2070726576696f75736c79206465706f73697465642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737352657761726420646973747269627574696f6e20616c726561647920656e6465642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7744696e6f2070657220426c6f636b206d7573742062652067726561746572207468616e20302e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122008e225783f35bf19c9c2399c9da679d87b2bb677f55af0cd035df3a4d1ee9a5064736f6c634300060c0033000000000000000000000000aa9654becca45b5bdfa5ac646c939c62b527d39400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001028f680000000000000000000000000000000000000000000000000000000005f5e100

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635687c1ab116100c357806393f1a40b1161007c57806393f1a40b146104a7578063a9059cbb14610510578063b69ef8a814610574578063c713aa9414610592578063e2bbb158146105d4578063f2fde38b1461060c5761014d565b80635687c1ab1461039b578063630b5ba1146103b957806364482f79146103c3578063715018a61461040757806371812716146104115780638da5cb5b146104735761014d565b8063225410d411610115578063225410d41461027357806336e48f26146102a7578063441a3e70146102e957806348cd4cb11461032157806351eb05a61461033f5780635312ea8e1461036d5761014d565b8063081e3eda14610152578063083c6323146101705780631526fe271461018e57806317caf6f1146101fb5780631eaaa04514610219575b600080fd5b61015a610650565b6040518082815260200191505060405180910390f35b61017861065d565b6040518082815260200191505060405180910390f35b6101ba600480360360208110156101a457600080fd5b8101908080359060200190929190505050610663565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b6102036106c0565b6040518082815260200191505060405180910390f35b6102716004803603606081101561022f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506106c6565b005b61027b61089f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102d3600480360360208110156102bd57600080fd5b81019080803590602001909291905050506108c5565b6040518082815260200191505060405180910390f35b61031f600480360360408110156102ff57600080fd5b810190808035906020019092919080359060200190929190505050610a01565b005b610329610c2e565b6040518082815260200191505060405180910390f35b61036b6004803603602081101561035557600080fd5b8101908080359060200190929190505050610c34565b005b6103996004803603602081101561038357600080fd5b8101908080359060200190929190505050610df5565b005b6103a3610f27565b6040518082815260200191505060405180910390f35b6103c1610f2d565b005b610405600480360360608110156103d957600080fd5b810190808035906020019092919080359060200190929190803515159060200190929190505050610f5a565b005b61040f6110a4565b005b61045d6004803603604081101561042757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061122a565b6040518082815260200191505060405180910390f35b61047b611470565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f3600480360360408110156104bd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611499565b604051808381526020018281526020019250505060405180910390f35b61055c6004803603604081101561052657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ca565b60405180821515815260200191505060405180910390f35b61057c61166a565b6040518082815260200191505060405180910390f35b6105be600480360360208110156105a857600080fd5b8101908080359060200190929190505050611735565b6040518082815260200191505060405180910390f35b61060a600480360360408110156105ea57600080fd5b8101908080359060200190929190803590602001909291905050506118df565b005b61064e6004803603602081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611abf565b005b6000600280549050905090565b60055481565b6002818154811061067057fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b60065481565b6106ce611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461078e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561079d5761079c610f2d565b5b600060045443116107b0576004546107b2565b435b90506107c984600654611cd290919063ffffffff16565b600681905550600260405180608001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101556040820151816002015560608201518160030155505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108cf611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600082116109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128226026913960400191505060405180910390fd5b6109f0610f2d565b816003819055506003549050919050565b600060028381548110610a1057fe5b9060005260206000209060040201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806127856034913960400191505060405180910390fd5b610ada84610c34565b6000610b248260010154610b1664e8d4a51000610b0887600301548760000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b611e2a90919063ffffffff16565b9050610b303382611e74565b610b47848360000154611e2a90919063ffffffff16565b8260000181905550610b8164e8d4a51000610b7385600301548560000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b8260010181905550610bd833858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120ed9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b60045481565b600060028281548110610c4357fe5b9060005260206000209060040201905080600201544311610c645750610df2565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610cf157600080fd5b505afa158015610d05573d6000803e3d6000fd5b505050506040513d6020811015610d1b57600080fd5b810190808051906020019092919050505090506000811415610d47574382600201819055505050610df2565b6000610d5783600201544361218f565b90506000610d9a600654610d8c8660010154610d7e60035487611d5a90919063ffffffff16565b611d5a90919063ffffffff16565b611de090919063ffffffff16565b9050610ddc610dc984610dbb64e8d4a5100085611d5a90919063ffffffff16565b611de090919063ffffffff16565b8560030154611cd290919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060028281548110610e0457fe5b9060005260206000209060040201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610ebb3382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120ed9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b60035481565b6000600280549050905060005b81811015610f5657610f4b81610c34565b806001019050610f3a565b5050565b610f62611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561103157611030610f2d565b5b611076826110686002868154811061104557fe5b906000526020600020906004020160010154600654611e2a90919063ffffffff16565b611cd290919063ffffffff16565b600681905550816002848154811061108a57fe5b906000526020600020906004020160010181905550505050565b6110ac611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000806002848154811061123a57fe5b9060005260206000209060040201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561133457600080fd5b505afa158015611348573d6000803e3d6000fd5b505050506040513d602081101561135e57600080fd5b81019080805190602001909291905050509050836002015443118015611385575060008114155b1561142057600061139a85600201544361218f565b905060006113dd6006546113cf88600101546113c160035487611d5a90919063ffffffff16565b611d5a90919063ffffffff16565b611de090919063ffffffff16565b905061141b61140c846113fe64e8d4a5100085611d5a90919063ffffffff16565b611de090919063ffffffff16565b85611cd290919063ffffffff16565b935050505b611464836001015461145664e8d4a51000611448868860000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b611e2a90919063ffffffff16565b94505050505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b60006114d4611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561162757600080fd5b505af115801561163b573d6000803e3d6000fd5b505050506040513d602081101561165157600080fd5b8101908080519060200190929190505050905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156116f557600080fd5b505afa158015611709573d6000803e3d6000fd5b505050506040513d602081101561171f57600080fd5b8101908080519060200190929190505050905090565b600061173f611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005544310611859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127df6022913960400191505060405180910390fd5b4382116118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f426c6f636b206e6565647320746f20626520696e20746865206675747572652e81525060200191505060405180910390fd5b816005819055506005549050919050565b6000600283815481106118ee57fe5b9060005260206000209060040201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061195b84610c34565b6000816000015411156119c05760006119b282600101546119a464e8d4a5100061199687600301548760000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b611e2a90919063ffffffff16565b90506119be3382611e74565b505b611a113330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121e5909392919063ffffffff16565b611a28838260000154611cd290919063ffffffff16565b8160000181905550611a6264e8d4a51000611a5484600301548460000154611d5a90919063ffffffff16565b611de090919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b611ac7611cca565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127b96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600080828401905083811015611d50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611d6d5760009050611dda565b6000828402905082848281611d7e57fe5b0414611dd5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128016021913960400191505060405180910390fd5b809150505b92915050565b6000611e2283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122a6565b905092915050565b6000611e6c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061236c565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611eff57600080fd5b505afa158015611f13573d6000803e3d6000fd5b505050506040513d6020811015611f2957600080fd5b810190808051906020019092919050505090508082111561201857600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611fd757600080fd5b505af1158015611feb573d6000803e3d6000fd5b505050506040513d602081101561200157600080fd5b8101908080519060200190929190505050506120e8565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156120ab57600080fd5b505af11580156120bf573d6000803e3d6000fd5b505050506040513d60208110156120d557600080fd5b8101908080519060200190929190505050505b505050565b61218a8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061242c565b505050565b60006005548210156121b5576121ae8383611e2a90919063ffffffff16565b90506121df565b60055483106121c757600090506121df565b6121dc83600554611e2a90919063ffffffff16565b90505b92915050565b6122a0846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061242c565b50505050565b60008083118290612352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123175780820151818401526020810190506122fc565b50505050905090810190601f1680156123445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161235e57fe5b049050809150509392505050565b6000838311158290612419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123de5780820151818401526020810190506123c3565b50505050905090810190601f16801561240b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b606061248e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661251b9092919063ffffffff16565b9050600081511115612516578080602001905160208110156124af57600080fd5b8101908080519060200190929190505050612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612848602a913960400191505060405180910390fd5b5b505050565b606061252a8484600085612533565b90509392505050565b606061253e85612739565b6125b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061260057805182526020820191506020810190506020830392506125dd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612662576040519150601f19603f3d011682016040523d82523d6000602084013e612667565b606091505b5091509150811561267c578092505050612731565b60008151111561268f5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126f65780820151818401526020810190506126db565b50505050905090810190601f1680156127235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561277b57506000801b8214155b9250505091905056fe43616e2774207769746864726177206d6f726520746f6b656e207468616e2070726576696f75736c79206465706f73697465642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737352657761726420646973747269627574696f6e20616c726561647920656e6465642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7744696e6f2070657220426c6f636b206d7573742062652067726561746572207468616e20302e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122008e225783f35bf19c9c2399c9da679d87b2bb677f55af0cd035df3a4d1ee9a5064736f6c634300060c0033

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

000000000000000000000000aa9654becca45b5bdfa5ac646c939c62b527d39400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001028f680000000000000000000000000000000000000000000000000000000005f5e100

-----Decoded View---------------
Arg [0] : _DINO (address): 0xAa9654BECca45B5BDFA5ac646c939C62b527D394
Arg [1] : _dinoPerBlock (uint256): 0
Arg [2] : _startBlock (uint256): 16945000
Arg [3] : _endBlock (uint256): 100000000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000aa9654becca45b5bdfa5ac646c939c62b527d394
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000001028f68
Arg [3] : 0000000000000000000000000000000000000000000000000000000005f5e100


Deployed Bytecode Sourcemap

22454:10392:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31475:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23451:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23217:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23545:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24676:513;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23162:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32570:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29636:686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23355:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27871:685;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30493:356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23280:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27515:180;;;:::i;:::-;;25587:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21734:148;;;:::i;:::-;;26650:759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21092:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23671:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;31910:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31720:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32173:303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28776:656;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22037:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31475:95;31520:7;31547:8;:15;;;;31540:22;;31475:95;:::o;23451:23::-;;;;:::o;23217:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23545:34::-;;;;:::o;24676:513::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24777:11:::1;24773:61;;;24805:17;:15;:17::i;:::-;24773:61;24844:23;24885:10;;24870:12;:25;:53;;24913:10;;24870:53;;;24898:12;24870:53;24844:79;;24952:32;24972:11;24952:15;;:19;;:32;;;;:::i;:::-;24934:15;:50;;;;24995:8;25009:171;;;;;;;;25042:8;25009:171;;;;;;25077:11;25009:171;;;;25120:15;25009:171;;;;25167:1;25009:171;;::::0;24995:186:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21374:1;24676:513:::0;;;:::o;23162:18::-;;;;;;;;;;;;;:::o;32570:269::-;32646:7;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32690:1:::1;32674:13;:17;32666:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32745:17;:15;:17::i;:::-;32788:13;32773:12;:28;;;;32819:12;;32812:19;;32570:269:::0;;;:::o;29636:686::-;29703:21;29727:8;29736:4;29727:14;;;;;;;;;;;;;;;;;;29703:38;;29752:21;29776:8;:14;29785:4;29776:14;;;;;;;;;;;:26;29791:10;29776:26;;;;;;;;;;;;;;;29752:50;;29836:7;29821:4;:11;;;:22;;29813:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29911:16;29922:4;29911:10;:16::i;:::-;29938:15;29956:68;30008:4;:15;;;29956:47;29998:4;29956:37;29972:4;:20;;;29956:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;29938:86;;30035:37;30052:10;30064:7;30035:16;:37::i;:::-;30097:24;30113:7;30097:4;:11;;;:15;;:24;;;;:::i;:::-;30083:4;:11;;:38;;;;30150:47;30192:4;30150:37;30166:4;:20;;;30150:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;30132:4;:15;;:65;;;;30208:55;30242:10;30255:7;30208:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;30300:4;30288:10;30279:35;;;30306:7;30279:35;;;;;;;;;;;;;;;;;;29636:686;;;;;:::o;23355:25::-;;;;:::o;27871:685::-;27923:21;27947:8;27956:4;27947:14;;;;;;;;;;;;;;;;;;27923:38;;27992:4;:20;;;27976:12;:36;27972:75;;28029:7;;;27972:75;28057:16;28076:4;:12;;;;;;;;;;;;:22;;;28107:4;28076:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28057:56;;28140:1;28128:8;:13;28124:102;;;28181:12;28158:4;:20;;:35;;;;28208:7;;;;28124:102;28236:18;28257:49;28271:4;:20;;;28293:12;28257:13;:49::i;:::-;28236:70;;28317:18;28338:70;28392:15;;28338:49;28371:4;:15;;;28338:28;28353:12;;28338:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:70;;;;:::i;:::-;28317:91;;28442:60;28467:34;28492:8;28467:20;28482:4;28467:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28442:4;:20;;;:24;;:60;;;;:::i;:::-;28419:4;:20;;:83;;;;28536:12;28513:4;:20;;:35;;;;27871:685;;;;;;:::o;30493:356::-;30552:21;30576:8;30585:4;30576:14;;;;;;;;;;;;;;;;;;30552:38;;30601:21;30625:8;:14;30634:4;30625:14;;;;;;;;;;;:26;30640:10;30625:26;;;;;;;;;;;;;;;30601:50;;30662:59;30696:10;30709:4;:11;;;30662:4;:12;;;;;;;;;;;;:25;;;;:59;;;;;:::i;:::-;30767:4;30755:10;30737:48;;;30773:4;:11;;;30737:48;;;;;;;;;;;;;;;;;;30810:1;30796:4;:11;;:15;;;;30840:1;30822:4;:15;;:19;;;;30493:356;;;:::o;23280:27::-;;;;:::o;27515:180::-;27560:14;27577:8;:15;;;;27560:32;;27608:11;27603:85;27631:6;27625:3;:12;27603:85;;;27661:15;27672:3;27661:10;:15::i;:::-;27639:5;;;;;27603:85;;;;27515:180;:::o;25587:304::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25685:11:::1;25681:61;;;25713:17;:15;:17::i;:::-;25681:61;25770:63;25821:11;25770:46;25790:8;25799:4;25790:14;;;;;;;;;;;;;;;;;;:25;;;25770:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;25752:15;:81;;;;25872:11;25844:8;25853:4;25844:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;25587:304:::0;;;:::o;21734:148::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21841:1:::1;21804:40;;21825:6;::::0;::::1;;;;;;;;21804:40;;;;;;;;;;;;21872:1;21855:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;21734:148::o:0;26650:759::-;26723:7;26743:21;26767:8;26776:4;26767:14;;;;;;;;;;;;;;;;;;26743:38;;26792:21;26816:8;:14;26825:4;26816:14;;;;;;;;;;;:21;26831:5;26816:21;;;;;;;;;;;;;;;26792:45;;26848:23;26874:4;:20;;;26848:46;;26905:16;26924:4;:12;;;;;;;;;;;;:22;;;26955:4;26924:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26905:56;;26991:4;:20;;;26976:12;:35;:52;;;;;27027:1;27015:8;:13;;26976:52;26972:349;;;27045:18;27066:49;27080:4;:20;;;27102:12;27066:13;:49::i;:::-;27045:70;;27130:18;27151:70;27205:15;;27151:49;27184:4;:15;;;27151:28;27166:12;;27151:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:70;;;;:::i;:::-;27130:91;;27254:55;27274:34;27299:8;27274:20;27289:4;27274:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27254:15;:19;;:55;;;;:::i;:::-;27236:73;;26972:349;;;27338:63;27385:4;:15;;;27338:42;27375:4;27338:32;27354:15;27338:4;:11;;;:15;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;:46;;:63;;;;:::i;:::-;27331:70;;;;;;26650:759;;;;:::o;21092:79::-;21130:7;21157:6;;;;;;;;;;;21150:13;;21092:79;:::o;23671:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31910:129::-;31983:4;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32007:4:::1;;;;;;;;;;;:13;;;32021:2;32025:5;32007:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;32000:31;;31910:129:::0;;;;:::o;31720:104::-;31760:7;31787:4;;;;;;;;;;;:14;;;31810:4;31787:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31780:36;;31720:104;:::o;32173:303::-;32241:7;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32284:8:::1;;32269:12;:23;32261:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32362:12;32350:9;:24;32342:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32433:9;32422:8;:20;;;;32460:8;;32453:15;;32173:303:::0;;;:::o;28776:656::-;28842:21;28866:8;28875:4;28866:14;;;;;;;;;;;;;;;;;;28842:38;;28891:21;28915:8;:14;28924:4;28915:14;;;;;;;;;;;:26;28930:10;28915:26;;;;;;;;;;;;;;;28891:50;;28952:16;28963:4;28952:10;:16::i;:::-;28997:1;28983:4;:11;;;:15;28979:186;;;29015:15;29033:68;29085:4;:15;;;29033:47;29075:4;29033:37;29049:4;:20;;;29033:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;29015:86;;29116:37;29133:10;29145:7;29116:16;:37::i;:::-;28979:186;;29175:74;29213:10;29234:4;29241:7;29175:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;29274:24;29290:7;29274:4;:11;;;:15;;:24;;;;:::i;:::-;29260:4;:11;;:38;;;;29327:47;29369:4;29327:37;29343:4;:20;;;29327:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;29309:4;:15;;:65;;;;29410:4;29398:10;29390:34;;;29416:7;29390:34;;;;;;;;;;;;;;;;;;28776:656;;;;:::o;22037:244::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22146:1:::1;22126:22;;:8;:22;;;;22118:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22236:8;22207:38;;22228:6;::::0;::::1;;;;;;;;22207:38;;;;;;;;;;;;22265:8;22256:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22037:244:::0;:::o;19506:106::-;19559:15;19594:10;19587:17;;19506:106;:::o;4039:181::-;4097:7;4117:9;4133:1;4129;:5;4117:17;;4158:1;4153;:6;;4145:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4211:1;4204:8;;;4039:181;;;;:::o;5393:471::-;5451:7;5701:1;5696;:6;5692:47;;;5726:1;5719:8;;;;5692:47;5751:9;5767:1;5763;:5;5751:17;;5796:1;5791;5787;:5;;;;;;:10;5779:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5855:1;5848:8;;;5393:471;;;;;:::o;6340:132::-;6398:7;6425:39;6429:1;6432;6425:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6418:46;;6340:132;;;;:::o;4503:136::-;4561:7;4588:43;4592:1;4595;4588:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4581:50;;4503:136;;;;:::o;31068:290::-;31144:19;31166:4;;;;;;;;;;;:14;;;31189:4;31166:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31144:51;;31220:11;31210:7;:21;31206:145;;;31248:4;;;;;;;;;;;:13;;;31262:3;31267:11;31248:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31206:145;;;31312:4;;;;;;;;;;;:13;;;31326:3;31331:7;31312:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31206:145;31068:290;;;:::o;15671:177::-;15754:86;15774:5;15804:23;;;15829:2;15833:5;15781:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15754:19;:86::i;:::-;15671:177;;;:::o;26111:297::-;26185:7;26215:8;;26209:3;:14;26205:191;;;26247:14;26255:5;26247:3;:7;;:14;;;;:::i;:::-;26240:21;;;;26205:191;26292:8;;26283:5;:17;26279:117;;26324:1;26317:8;;;;26279:117;26365:19;26378:5;26365:8;;:12;;:19;;;;:::i;:::-;26358:26;;26111:297;;;;;:::o;15856:205::-;15957:96;15977:5;16007:27;;;16036:4;16042:2;16046:5;15984:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15957:19;:96::i;:::-;15856:205;;;;:::o;6968:278::-;7054:7;7086:1;7082;:5;7089:12;7074:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7113:9;7129:1;7125;:5;;;;;;7113:17;;7237:1;7230:8;;;6968:278;;;;;:::o;4942:192::-;5028:7;5061:1;5056;:6;;5064:12;5048:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5088:9;5104:1;5100;:5;5088:17;;5125:1;5118:8;;;4942:192;;;;;:::o;17976:761::-;18400:23;18426:69;18454:4;18426:69;;;;;;;;;;;;;;;;;18434:5;18426:27;;;;:69;;;;;:::i;:::-;18400:95;;18530:1;18510:10;:17;:21;18506:224;;;18652:10;18641:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18633:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18506:224;17976:761;;;:::o;12518:196::-;12621:12;12653:53;12676:6;12684:4;12690:1;12693:12;12653:22;:53::i;:::-;12646:60;;12518:196;;;;;:::o;13895:979::-;14025:12;14058:18;14069:6;14058:10;:18::i;:::-;14050:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14184:12;14198:23;14225:6;:11;;14245:8;14256:4;14225:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14183:78;;;;14276:7;14272:595;;;14307:10;14300:17;;;;;;14272:595;14441:1;14421:10;:17;:21;14417:439;;;14684:10;14678:17;14745:15;14732:10;14728:2;14724:19;14717:44;14632:148;14827:12;14820:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13895:979;;;;;;;:::o;9403:619::-;9463:4;9725:16;9752:19;9774:66;9752:88;;;;9943:7;9931:20;9919:32;;9983:11;9971:8;:23;;:42;;;;;10010:3;9998:15;;:8;:15;;9971:42;9963:51;;;;9403:619;;;:::o

Swarm Source

ipfs://08e225783f35bf19c9c2399c9da679d87b2bb677f55af0cd035df3a4d1ee9a50

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

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