Source Code
Latest 25 from a total of 3,212 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 21853779 | 383 days ago | IN | 0 ETH | 0.0000774 | ||||
| Withdraw | 21824033 | 388 days ago | IN | 0 ETH | 0.00006009 | ||||
| Withdraw | 21824023 | 388 days ago | IN | 0 ETH | 0.00015273 | ||||
| Claim All | 19141163 | 763 days ago | IN | 0 ETH | 0.00620059 | ||||
| Withdraw | 18619766 | 836 days ago | IN | 0 ETH | 0.00373803 | ||||
| Claim All | 18113061 | 907 days ago | IN | 0 ETH | 0.00255233 | ||||
| Withdraw | 17036715 | 1058 days ago | IN | 0 ETH | 0.00262748 | ||||
| Withdraw | 17014631 | 1061 days ago | IN | 0 ETH | 0.00205319 | ||||
| Claim All | 17014605 | 1061 days ago | IN | 0 ETH | 0.00489785 | ||||
| Withdraw | 16874646 | 1081 days ago | IN | 0 ETH | 0.00147373 | ||||
| Withdraw | 16569238 | 1124 days ago | IN | 0 ETH | 0.00173196 | ||||
| Withdraw | 16569203 | 1124 days ago | IN | 0 ETH | 0.00157106 | ||||
| Withdraw | 16466411 | 1138 days ago | IN | 0 ETH | 0.00149393 | ||||
| Deposit | 16452340 | 1140 days ago | IN | 0 ETH | 0.00314844 | ||||
| Withdraw | 16425861 | 1144 days ago | IN | 0 ETH | 0.00191965 | ||||
| Withdraw | 16425814 | 1144 days ago | IN | 0 ETH | 0.00218526 | ||||
| Withdraw | 16030921 | 1199 days ago | IN | 0 ETH | 0.00130351 | ||||
| Withdraw | 15874569 | 1221 days ago | IN | 0 ETH | 0.00147752 | ||||
| Withdraw | 15874563 | 1221 days ago | IN | 0 ETH | 0.00142532 | ||||
| Claim All | 15866596 | 1222 days ago | IN | 0 ETH | 0.0010771 | ||||
| Withdraw | 15866596 | 1222 days ago | IN | 0 ETH | 0.00069696 | ||||
| Withdraw | 15858410 | 1223 days ago | IN | 0 ETH | 0.00084037 | ||||
| Withdraw | 15504630 | 1273 days ago | IN | 0 ETH | 0.00285566 | ||||
| Withdraw | 15487254 | 1276 days ago | IN | 0 ETH | 0.00221042 | ||||
| Claim All | 15429453 | 1285 days ago | IN | 0 ETH | 0.00256768 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TokenMaster
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-08-25
*/
pragma solidity 0.6.12;
/**
* @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);
}
/**
* @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;
}
}
/**
* @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);
}
}
}
}
/**
* @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");
}
}
}
/*
* @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;
}
}
/**
* @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;
}
}
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier
* available, which can be aplied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*/
contract ReentrancyGuard {
/// @dev counter to allow mutex lock with only one SSTORE operation
uint256 private _guardCounter;
constructor () internal {
// The counter starts at one to prevent changing it from zero to a non-zero
// value, which is a more expensive operation.
_guardCounter = 1;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_guardCounter += 1;
uint256 localCounter = _guardCounter;
_;
require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// Standard ERC20 token with mint and burn
contract ALDToken is ERC20("Aladdin Token", "ALD") {
address public governance;
mapping (address => bool) public isMinter;
constructor () public {
governance = msg.sender;
}
function setGovernance(address _governance) external {
require(msg.sender == governance, "!governance");
governance = _governance;
}
function setMinter(address _minter, bool _status) external {
require(msg.sender == governance, "!governance");
isMinter[_minter] = _status;
}
/// @notice Creates `_amount` token to `_to`. Must only be called by minter
function mint(address _to, uint256 _amount) external {
require(isMinter[msg.sender] == true, "!minter");
_mint(_to, _amount);
}
/// @notice Burn `_amount` token from `_from`. Must only be called by governance
function burn(address _from, uint256 _amount) external {
require(msg.sender == governance, "!governance");
_burn(_from, _amount);
}
}
contract TokenMaster is Ownable, ReentrancyGuard {
using SafeMath for uint256;
using SafeERC20 for IERC20;
// Info of each user.
struct UserInfo {
uint256 amount; // How many LP tokens the user has provided.
uint256 rewardDebt; // Reward debt. See explanation below.
//
// We do some fancy math here. Basically, any point in time, the amount of ALDs
// entitled to a user but is pending to be distributed is:
//
// pending reward = (user.amount * pool.accALDPerShare) - user.rewardDebt
//
// Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens:
// 1. The pool's `accALDPerShare` (and `lastRewardBlock`) gets updated.
// 2. User receives the pending reward sent to his/her address.
// 3. User's `amount` gets updated.
// 4. User's `rewardDebt` gets updated.
}
// Info of each pool.
struct PoolInfo {
address token; // Address of LP token contract.
uint256 allocPoint; // How many allocation points assigned to this pool. ALDs to distribute per block.
uint256 lastRewardBlock; // Last block number that ALDs distribution occurs.
uint256 accALDPerShare; // Accumulated ALDs per share, times 1e18. See below.
}
// The ALD TOKEN!
ALDToken public ald;
// Token distributor address
address public tokenDistributor;
// token distributor reward allocation = total reward emission * tokenDistributorAllocNume / tokenDistributorAllocDenom
uint256 public tokenDistributorAllocNume = 7070;
uint256 constant public tokenDistributorAllocDenom = 10000;
// ALD tokens created per block.
uint256 public aldPerBlock;
// mapping of token to pool id
mapping(address => uint) public tokenToPid;
// Info of each pool.
PoolInfo[] public poolInfo;
// Info of each user that stakes LP tokens.
mapping(uint => mapping(address => UserInfo)) public userInfo;
// Total allocation poitns. Must be the sum of all allocation points in all pools.
uint256 public totalAllocPoint = 0;
// The block number when ALD mining starts.
uint256 public startBlock;
/* ========== CONSTRUCTOR ========== */
constructor(
ALDToken _ald,
address _tokenDistributor,
uint256 _aldPerBlock,
uint256 _startBlock
) public {
ald = _ald;
tokenDistributor = _tokenDistributor;
aldPerBlock = _aldPerBlock;
startBlock = _startBlock;
}
/* ========== VIEW FUNCTIONS ========== */
function userBalanceForPool(address _user, address _poolToken) external view returns (uint256) {
uint pid = tokenToPid[_poolToken];
if (pid == 0) {
// pool does not exist
return 0;
}
UserInfo storage user = userInfo[pid][_user];
return user.amount;
}
function poolLength() external view returns (uint256) {
return poolInfo.length;
}
// View function to see pending ALDs on frontend.
function pendingALD(address _token, address _user) onlyValidPool(_token) external view returns (uint256) {
uint pid = tokenToPid[_token];
PoolInfo storage pool = poolInfo[pid - 1];
UserInfo storage user = userInfo[pid][_user];
uint256 accALDPerShare = pool.accALDPerShare;
uint256 lpSupply = IERC20(pool.token).balanceOf(address(this));
if (block.number > pool.lastRewardBlock && lpSupply != 0) {
uint256 aldReward = aldPerBlock.mul(block.number.sub(pool.lastRewardBlock))
.mul(pool.allocPoint)
.div(totalAllocPoint);
uint256 distributorReward = aldReward.mul(tokenDistributorAllocNume).div(tokenDistributorAllocDenom);
uint256 poolReward = aldReward.sub(distributorReward);
accALDPerShare = accALDPerShare.add(poolReward.mul(1e18).div(lpSupply));
}
return user.amount.mul(accALDPerShare).div(1e18).sub(user.rewardDebt);
}
/* ========== MUTATIVE FUNCTIONS ========== */
// Update reward vairables for all pools. Be careful of gas spending!
function massUpdatePools() public {
uint256 length = poolInfo.length;
for (uint256 pid = 1; pid <= length; ++pid) {
PoolInfo storage pool = poolInfo[pid - 1];
updatePool(pool.token);
}
}
// Update reward variables of the given pool to be up-to-date.
function updatePool(address _token) onlyValidPool(_token) public {
uint pid = tokenToPid[_token];
PoolInfo storage pool = poolInfo[pid - 1];
if (block.number <= pool.lastRewardBlock) {
return;
}
uint256 lpSupply = IERC20(pool.token).balanceOf(address(this));
if (lpSupply == 0) {
pool.lastRewardBlock = block.number;
return;
}
// get total pool rewards in since last update
uint256 aldReward = aldPerBlock.mul(block.number.sub(pool.lastRewardBlock))
.mul(pool.allocPoint)
.div(totalAllocPoint);
// mint distributor portion
uint256 distributorReward = aldReward.mul(tokenDistributorAllocNume).div(tokenDistributorAllocDenom);
ald.mint(tokenDistributor, distributorReward);
// update pool rewards
uint256 poolReward = aldReward.sub(distributorReward);
ald.mint(address(this), poolReward);
pool.accALDPerShare = pool.accALDPerShare.add(
poolReward.mul(1e18).div(lpSupply)
);
pool.lastRewardBlock = block.number;
}
// Deposit LP tokens for ALD allocation.
function deposit(address _token, uint256 _amount) onlyValidPool(_token) external nonReentrant {
uint pid = tokenToPid[_token];
PoolInfo storage pool = poolInfo[pid - 1];
UserInfo storage user = userInfo[pid][msg.sender];
updatePool(pool.token);
if (user.amount > 0) {
uint256 pending = user.amount.mul(pool.accALDPerShare).div(1e18).sub(user.rewardDebt);
if(pending > 0) {
safeALDTransferToStaker(msg.sender, pending);
}
}
if(_amount > 0) {
IERC20(pool.token).safeTransferFrom(address(msg.sender), address(this),_amount);
user.amount = user.amount.add(_amount);
}
user.rewardDebt = user.amount.mul(pool.accALDPerShare).div(1e18);
emit Deposit(msg.sender, _token, _amount);
}
// Withdraw LP tokens.
function withdraw(address _token, uint256 _amount) onlyValidPool(_token) external {
uint pid = tokenToPid[_token];
PoolInfo storage pool = poolInfo[pid - 1];
UserInfo storage user = userInfo[pid][msg.sender];
require(user.amount >= _amount, "withdraw: not good");
updatePool(pool.token);
uint256 pending = user.amount.mul(pool.accALDPerShare).div(1e18).sub(user.rewardDebt);
if(pending > 0) {
safeALDTransferToStaker(msg.sender, pending);
}
if(_amount > 0) {
user.amount = user.amount.sub(_amount);
IERC20(pool.token).safeTransfer(address(msg.sender), _amount);
}
user.rewardDebt = user.amount.mul(pool.accALDPerShare).div(1e18);
emit Withdraw(msg.sender, _token, _amount);
}
// Claim pending rewards for all pools
function claimAll() external {
massUpdatePools();
uint256 pending;
for (uint pid = 1; pid <= poolInfo.length; pid++) {
PoolInfo storage pool = poolInfo[pid - 1];
UserInfo storage user = userInfo[pid][msg.sender];
if (user.amount > 0) {
pending = pending.add(user.amount.mul(pool.accALDPerShare).div(1e18).sub(user.rewardDebt));
user.rewardDebt = user.amount.mul(pool.accALDPerShare).div(1e18);
}
}
if (pending > 0) {
safeALDTransferToStaker(msg.sender, pending);
}
}
// Withdraw without caring about rewards. EMERGENCY ONLY.
function emergencyWithdraw(address _token) onlyValidPool(_token) external nonReentrant {
uint pid = tokenToPid[_token];
PoolInfo storage pool = poolInfo[pid - 1];
UserInfo storage user = userInfo[pid][msg.sender];
user.amount = 0;
user.rewardDebt = 0;
IERC20(pool.token).safeTransfer(address(msg.sender), user.amount);
emit EmergencyWithdraw(msg.sender, _token, user.amount);
}
// Safe ald transfer function, just in case if rounding error causes pool to not have enough ALDs.
function safeALDTransferToStaker(address _user, uint256 _amount) internal {
uint256 aldBal = ald.balanceOf(address(this));
if (_amount > aldBal) {
ald.transfer(_user, aldBal);
} else {
ald.transfer(_user, _amount);
}
}
/* ========== RESTRICTED FUNCTIONS ========== */
// Add a new lp to the pool. Can only be called by the owner.
function add(uint256 _allocPoint, address _token, bool _withUpdate) external onlyOwner checkDuplicatePool(_token) {
if (_withUpdate) {
massUpdatePools();
}
uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
totalAllocPoint = totalAllocPoint.add(_allocPoint);
poolInfo.push(
PoolInfo({
token: _token,
allocPoint: _allocPoint,
lastRewardBlock: lastRewardBlock,
accALDPerShare: 0
})
);
tokenToPid[_token] = poolInfo.length; // pid 0 reserved for 'pool does not exist'
}
// Update the given pool's ALD allocation point. Can only be called by the owner.
function set(address _token, uint256 _allocPoint) external onlyOwner onlyValidPool(_token){
massUpdatePools();
uint pid = tokenToPid[_token];
totalAllocPoint = totalAllocPoint.sub(poolInfo[pid - 1].allocPoint).add(_allocPoint);
poolInfo[pid - 1].allocPoint = _allocPoint;
}
function setALDPerBlock(uint256 _aldPerBlock) external onlyOwner {
// mass update pools before updating reward rate to avoid changing pending rewards
massUpdatePools();
aldPerBlock = _aldPerBlock;
}
function setTokenDistributor(address _tokenDistributor) external onlyOwner {
tokenDistributor = _tokenDistributor;
}
function setTokenDistributorAllocNume(uint256 _tokenDistributorAllocNume) external onlyOwner {
require(_tokenDistributorAllocNume <= tokenDistributorAllocDenom, "Numerator cannot be larger than denominator");
tokenDistributorAllocNume = _tokenDistributorAllocNume;
}
function setStartBlock(uint256 _startBlock) external onlyOwner {
require(block.number < startBlock, "Cannot change startBlock after reward start");
startBlock = _startBlock;
// reinitialize lastRewardBlock of all existing pools (if any)
uint256 length = poolInfo.length;
for (uint256 pid = 1; pid <= length; ++pid) {
PoolInfo storage pool = poolInfo[pid - 1];
pool.lastRewardBlock = _startBlock;
}
}
/* ========== MODIFIERS ========== */
modifier onlyValidPool(address _token) {
uint pid = tokenToPid[_token];
require(pid != 0, "pool does not exist");
_;
}
modifier checkDuplicatePool(address _token) {
for (uint256 pid = 1; pid <= poolInfo.length; pid++) {
require(poolInfo[pid - 1].token != _token, "pool already exist");
}
_;
}
/* ========== EVENTS ========== */
event Deposit(address indexed user, address indexed token, uint256 amount);
event Withdraw(address indexed user, address indexed token, uint256 amount);
event EmergencyWithdraw(address indexed user, address indexed token, uint256 amount);
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract ALDToken","name":"_ald","type":"address"},{"internalType":"address","name":"_tokenDistributor","type":"address"},{"internalType":"uint256","name":"_aldPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"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":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ald","outputs":[{"internalType":"contract ALDToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aldPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_token","type":"address"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingALD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accALDPerShare","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":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_aldPerBlock","type":"uint256"}],"name":"setALDPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenDistributor","type":"address"}],"name":"setTokenDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenDistributorAllocNume","type":"uint256"}],"name":"setTokenDistributorAllocNume","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDistributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDistributorAllocDenom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDistributorAllocNume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenToPid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_poolToken","type":"address"}],"name":"userBalanceForPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052611b9e600455600060095534801561001b57600080fd5b5060405161223e38038061223e8339818101604052608081101561003e57600080fd5b5080516020820151604083015160609093015191929091600061005f6100eb565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600280546001600160a01b039586166001600160a01b0319918216179091556003805494909516931692909217909255600591909155600a556100ef565b3390565b612140806100fe6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636bb143ac116100f9578063bf20089a11610097578063ebf31c4711610071578063ebf31c471461049d578063f2fde38b146104a5578063f35e4a6e146104cb578063f3fef3a3146104e8576101c4565b8063bf20089a1461045b578063d1058e5914610478578063d6bfbdae14610480576101c4565b806375458468116100d357806375458468146103e05780637b46c54f146103e85780638da5cb5b1461040e57806393f1a40b14610416576101c4565b80636bb143ac146103845780636ff1c9bc146103b2578063715018a6146103d8576101c4565b806338280e6b1161016657806348cd4cb11161014057806348cd4cb11461034657806358c999131461034e5780636185179014610356578063630b5ba11461037c576101c4565b806338280e6b146102c657806347777130146102ec57806347e7ef241461031a576101c4565b806317caf6f1116101a257806317caf6f11461025457806318a6bc321461025c5780631eaaa045146102645780633825d8281461029a576101c4565b8063081e3eda146101c95780631526fe27146101e357806316551af614610230575b600080fd5b6101d1610514565b60408051918252519081900360200190f35b610200600480360360208110156101f957600080fd5b503561051a565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61023861055b565b604080516001600160a01b039092168252519081900360200190f35b6101d161056a565b610238610570565b6102986004803603606081101561027a57600080fd5b508035906001600160a01b036020820135169060400135151561057f565b005b610298600480360360408110156102b057600080fd5b506001600160a01b0381351690602001356107a6565b610298600480360360208110156102dc57600080fd5b50356001600160a01b03166108fb565b6101d16004803603604081101561030257600080fd5b506001600160a01b0381358116916020013516610975565b6102986004803603604081101561033057600080fd5b506001600160a01b0381351690602001356109c9565b6101d1610be8565b6101d1610bee565b6101d16004803603602081101561036c57600080fd5b50356001600160a01b0316610bf4565b610298610c06565b6101d16004803603604081101561039a57600080fd5b506001600160a01b0381358116916020013516610c59565b610298600480360360208110156103c857600080fd5b50356001600160a01b0316610e75565b610298610ff9565b6101d161109b565b610298600480360360208110156103fe57600080fd5b50356001600160a01b03166110a1565b610238611364565b6104426004803603604081101561042c57600080fd5b50803590602001356001600160a01b0316611373565b6040805192835260208301919091528051918290030190f35b6102986004803603602081101561047157600080fd5b5035611397565b6102986113fc565b6102986004803603602081101561049657600080fd5b50356114d9565b6101d1611577565b610298600480360360208110156104bb57600080fd5b50356001600160a01b031661157d565b610298600480360360208110156104e157600080fd5b5035611675565b610298600480360360408110156104fe57600080fd5b506001600160a01b038135169060200135611750565b60075490565b6007818154811061052757fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b6002546001600160a01b031681565b60095481565b6003546001600160a01b031681565b610587611942565b6000546001600160a01b039081169116146105d7576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b8160015b600754811161066857816001600160a01b0316600760018303815481106105fe57fe5b60009182526020909120600490910201546001600160a01b03161415610660576040805162461bcd60e51b81526020600482015260126024820152711c1bdbdb08185b1c9958591e48195e1a5cdd60721b604482015290519081900360640190fd5b6001016105db565b50811561067757610677610c06565b6000600a54431161068a57600a5461068c565b435b60095490915061069c9086611946565b600955604080516080810182526001600160a01b0395861680825260208083019889528284019485526000606084018181526007805460018101825581845295517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600490970296870180546001600160a01b03191691909c1617909a5599517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68985015594517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a84015597517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b909201919091559454948252600690955293909320919091555050565b6107ae611942565b6000546001600160a01b039081169116146107fe576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260066020526040902054829080610861576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b610869610c06565b6001600160a01b038416600090815260066020526040902054600780546108c89186916108c29190600019860190811061089f57fe5b9060005260206000209060040201600101546009546119a790919063ffffffff16565b90611946565b60098190555083600760018303815481106108df57fe5b9060005260206000209060040201600101819055505050505050565b610903611942565b6000546001600160a01b03908116911614610953576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600660205260408120548061099d5760009150506109c3565b60009081526008602090815260408083206001600160a01b038716845290915290205490505b92915050565b6001600160a01b038216600090815260066020526040902054829080610a2c576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b600180548101908190556001600160a01b038516600090815260066020526040812054600780549192916000198401908110610a6457fe5b60009182526020808320858452600882526040808520338652909252922060049091029091018054909250610aa1906001600160a01b03166110a1565b805415610af9576000610ae58260010154610adf670de0b6b3a7640000610ad9876003015487600001546119e990919063ffffffff16565b90611a42565b906119a7565b90508015610af757610af73382611a84565b505b8615610b25578154610b16906001600160a01b031633308a611c0d565b8054610b229088611946565b81555b60038201548154610b4391670de0b6b3a764000091610ad9916119e9565b60018201556040805188815290516001600160a01b038a169133917f5548c837ab068cf56a2c2479df0882a4922fd203edb7517321831d95078c5f629181900360200190a35050506001548114610be1576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b5050505050565b600a5481565b60055481565b60066020526000908152604090205481565b60075460015b818111610c5557600060076001830381548110610c2557fe5b600091825260209091206004909102018054909150610c4c906001600160a01b03166110a1565b50600101610c0c565b5050565b6001600160a01b038216600090815260066020526040812054839080610cbc576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040812054600780549192916000198401908110610cea57fe5b600091825260208083208584526008825260408085206001600160a01b038c8116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015610d6857600080fd5b505afa158015610d7c573d6000803e3d6000fd5b505050506040513d6020811015610d9257600080fd5b5051600285015490915043118015610da957508015155b15610e3c576000610de7600954610ad98760010154610de1610dd88a60020154436119a790919063ffffffff16565b600554906119e9565b906119e9565b90506000610e06612710610ad9600454856119e990919063ffffffff16565b90506000610e1483836119a7565b9050610e36610e2f85610ad984670de0b6b3a76400006119e9565b8690611946565b94505050505b610e678360010154610adf670de0b6b3a7640000610ad98688600001546119e990919063ffffffff16565b9a9950505050505050505050565b6001600160a01b038116600090815260066020526040902054819080610ed8576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b600180548101908190556001600160a01b038416600090815260066020526040812054600780549192916000198401908110610f1057fe5b6000918252602080832085845260088252604080852033808752935284208481556001810185905560049093020180549094509192610f59926001600160a01b03169190611c67565b805460408051918252516001600160a01b0389169133917ff24ef89f38eadc1bde50701ad6e4d6d11a2dc24f7cf834a486991f38833285049181900360200190a35050506001548114610ff3576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b50505050565b611001611942565b6000546001600160a01b03908116911614611051576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60045481565b6001600160a01b038116600090815260066020526040902054819080611104576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b6001600160a01b03831660009081526006602052604081205460078054919291600019840190811061113257fe5b906000526020600020906004020190508060020154431161115457505061135f565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561119e57600080fd5b505afa1580156111b2573d6000803e3d6000fd5b505050506040513d60208110156111c857600080fd5b50519050806111df5750436002909101555061135f565b6000611209600954610ad98560010154610de1610dd88860020154436119a790919063ffffffff16565b90506000611228612710610ad9600454856119e990919063ffffffff16565b600254600354604080516340c10f1960e01b81526001600160a01b0392831660048201526024810185905290519394509116916340c10f199160448082019260009290919082900301818387803b15801561128257600080fd5b505af1158015611296573d6000803e3d6000fd5b5050505060006112af82846119a790919063ffffffff16565b600254604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b15801561130557600080fd5b505af1158015611319573d6000803e3d6000fd5b5050505061134a61133f85610ad9670de0b6b3a7640000856119e990919063ffffffff16565b600387015490611946565b60038601555050436002909301929092555050505b505050565b6000546001600160a01b031690565b60086020908152600092835260408084209091529082529020805460019091015482565b61139f611942565b6000546001600160a01b039081169116146113ef576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6113f7610c06565b600555565b611404610c06565b600060015b60075481116114c55760006007600183038154811061142457fe5b600091825260208083208584526008825260408085203386529092529220805460049092029092019250156114bb5761148c6114858260010154610adf670de0b6b3a7640000610ad9876003015487600001546119e990919063ffffffff16565b8590611946565b93506114b5670de0b6b3a7640000610ad9846003015484600001546119e990919063ffffffff16565b60018201555b5050600101611409565b5080156114d6576114d63382611a84565b50565b6114e1611942565b6000546001600160a01b03908116911614611531576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6127108111156115725760405162461bcd60e51b815260040180806020018281038252602b8152602001806120e0602b913960400191505060405180910390fd5b600455565b61271081565b611585611942565b6000546001600160a01b039081169116146115d5576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6001600160a01b03811661161a5760405162461bcd60e51b81526004018080602001828103825260268152602001806120246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61167d611942565b6000546001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b600a54431061170d5760405162461bcd60e51b815260040180806020018281038252602b81526020018061204a602b913960400191505060405180910390fd5b600a81905560075460015b81811161135f5760006007600183038154811061173157fe5b6000918252602090912060026004909202010184905550600101611718565b6001600160a01b0382166000908152600660205260409020548290806117b3576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260408120546007805491929160001984019081106117e157fe5b600091825260208083208584526008825260408085203386529092529220805460049092029092019250861115611854576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b8154611868906001600160a01b03166110a1565b60006118998260010154610adf670de0b6b3a7640000610ad9876003015487600001546119e990919063ffffffff16565b905080156118ab576118ab3382611a84565b86156118d55781546118bd90886119a7565b825582546118d5906001600160a01b03163389611c67565b600383015482546118f391670de0b6b3a764000091610ad9916119e9565b60018301556040805188815290516001600160a01b038a169133917f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb9181900360200190a35050505050505050565b3390565b6000828201838110156119a0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006119a083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cb9565b6000826119f8575060006109c3565b82820282848281611a0557fe5b04146119a05760405162461bcd60e51b81526004018080602001828103825260218152602001806120756021913960400191505060405180910390fd5b60006119a083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d50565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611acf57600080fd5b505afa158015611ae3573d6000803e3d6000fd5b505050506040513d6020811015611af957600080fd5b5051905080821115611b8d576002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611b5b57600080fd5b505af1158015611b6f573d6000803e3d6000fd5b505050506040513d6020811015611b8557600080fd5b5061135f9050565b6002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611be357600080fd5b505af1158015611bf7573d6000803e3d6000fd5b505050506040513d6020811015610be157600080fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610ff3908590611db5565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261135f908490611db5565b60008184841115611d485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d0d578181015183820152602001611cf5565b50505050905090810190601f168015611d3a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611d9f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d0d578181015183820152602001611cf5565b506000838581611dab57fe5b0495945050505050565b6060611e0a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e669092919063ffffffff16565b80519091501561135f57808060200190516020811015611e2957600080fd5b505161135f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806120b6602a913960400191505060405180910390fd5b6060611e758484600085611e7d565b949350505050565b6060611e8885611fea565b611ed9576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611f185780518252601f199092019160209182019101611ef9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f7a576040519150601f19603f3d011682016040523d82523d6000602084013e611f7f565b606091505b50915091508115611f93579150611e759050565b805115611fa35780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611d0d578181015183820152602001611cf5565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611e7557505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e6e6f74206368616e6765207374617274426c6f636b20616674657220726577617264207374617274536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644e756d657261746f722063616e6e6f74206265206c6172676572207468616e2064656e6f6d696e61746f72a2646970667358221220c927c31ff9b0749ebabacdaf2cf518135f640332f4f0b26c51e2317b281770ca64736f6c634300060c0033000000000000000000000000b26c4b3ca601136daf98593feaeff9e0ca702a8d00000000000000000000000010af3d70831a7f85192fb70ce6a7205f81294ad700000000000000000000000000000000000000000000001ad5814560aa5c0000000000000000000000000000000000000000000000000000016345785d89ffff
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636bb143ac116100f9578063bf20089a11610097578063ebf31c4711610071578063ebf31c471461049d578063f2fde38b146104a5578063f35e4a6e146104cb578063f3fef3a3146104e8576101c4565b8063bf20089a1461045b578063d1058e5914610478578063d6bfbdae14610480576101c4565b806375458468116100d357806375458468146103e05780637b46c54f146103e85780638da5cb5b1461040e57806393f1a40b14610416576101c4565b80636bb143ac146103845780636ff1c9bc146103b2578063715018a6146103d8576101c4565b806338280e6b1161016657806348cd4cb11161014057806348cd4cb11461034657806358c999131461034e5780636185179014610356578063630b5ba11461037c576101c4565b806338280e6b146102c657806347777130146102ec57806347e7ef241461031a576101c4565b806317caf6f1116101a257806317caf6f11461025457806318a6bc321461025c5780631eaaa045146102645780633825d8281461029a576101c4565b8063081e3eda146101c95780631526fe27146101e357806316551af614610230575b600080fd5b6101d1610514565b60408051918252519081900360200190f35b610200600480360360208110156101f957600080fd5b503561051a565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61023861055b565b604080516001600160a01b039092168252519081900360200190f35b6101d161056a565b610238610570565b6102986004803603606081101561027a57600080fd5b508035906001600160a01b036020820135169060400135151561057f565b005b610298600480360360408110156102b057600080fd5b506001600160a01b0381351690602001356107a6565b610298600480360360208110156102dc57600080fd5b50356001600160a01b03166108fb565b6101d16004803603604081101561030257600080fd5b506001600160a01b0381358116916020013516610975565b6102986004803603604081101561033057600080fd5b506001600160a01b0381351690602001356109c9565b6101d1610be8565b6101d1610bee565b6101d16004803603602081101561036c57600080fd5b50356001600160a01b0316610bf4565b610298610c06565b6101d16004803603604081101561039a57600080fd5b506001600160a01b0381358116916020013516610c59565b610298600480360360208110156103c857600080fd5b50356001600160a01b0316610e75565b610298610ff9565b6101d161109b565b610298600480360360208110156103fe57600080fd5b50356001600160a01b03166110a1565b610238611364565b6104426004803603604081101561042c57600080fd5b50803590602001356001600160a01b0316611373565b6040805192835260208301919091528051918290030190f35b6102986004803603602081101561047157600080fd5b5035611397565b6102986113fc565b6102986004803603602081101561049657600080fd5b50356114d9565b6101d1611577565b610298600480360360208110156104bb57600080fd5b50356001600160a01b031661157d565b610298600480360360208110156104e157600080fd5b5035611675565b610298600480360360408110156104fe57600080fd5b506001600160a01b038135169060200135611750565b60075490565b6007818154811061052757fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b6002546001600160a01b031681565b60095481565b6003546001600160a01b031681565b610587611942565b6000546001600160a01b039081169116146105d7576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b8160015b600754811161066857816001600160a01b0316600760018303815481106105fe57fe5b60009182526020909120600490910201546001600160a01b03161415610660576040805162461bcd60e51b81526020600482015260126024820152711c1bdbdb08185b1c9958591e48195e1a5cdd60721b604482015290519081900360640190fd5b6001016105db565b50811561067757610677610c06565b6000600a54431161068a57600a5461068c565b435b60095490915061069c9086611946565b600955604080516080810182526001600160a01b0395861680825260208083019889528284019485526000606084018181526007805460018101825581845295517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600490970296870180546001600160a01b03191691909c1617909a5599517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68985015594517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a84015597517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b909201919091559454948252600690955293909320919091555050565b6107ae611942565b6000546001600160a01b039081169116146107fe576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260066020526040902054829080610861576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b610869610c06565b6001600160a01b038416600090815260066020526040902054600780546108c89186916108c29190600019860190811061089f57fe5b9060005260206000209060040201600101546009546119a790919063ffffffff16565b90611946565b60098190555083600760018303815481106108df57fe5b9060005260206000209060040201600101819055505050505050565b610903611942565b6000546001600160a01b03908116911614610953576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600660205260408120548061099d5760009150506109c3565b60009081526008602090815260408083206001600160a01b038716845290915290205490505b92915050565b6001600160a01b038216600090815260066020526040902054829080610a2c576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b600180548101908190556001600160a01b038516600090815260066020526040812054600780549192916000198401908110610a6457fe5b60009182526020808320858452600882526040808520338652909252922060049091029091018054909250610aa1906001600160a01b03166110a1565b805415610af9576000610ae58260010154610adf670de0b6b3a7640000610ad9876003015487600001546119e990919063ffffffff16565b90611a42565b906119a7565b90508015610af757610af73382611a84565b505b8615610b25578154610b16906001600160a01b031633308a611c0d565b8054610b229088611946565b81555b60038201548154610b4391670de0b6b3a764000091610ad9916119e9565b60018201556040805188815290516001600160a01b038a169133917f5548c837ab068cf56a2c2479df0882a4922fd203edb7517321831d95078c5f629181900360200190a35050506001548114610be1576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b5050505050565b600a5481565b60055481565b60066020526000908152604090205481565b60075460015b818111610c5557600060076001830381548110610c2557fe5b600091825260209091206004909102018054909150610c4c906001600160a01b03166110a1565b50600101610c0c565b5050565b6001600160a01b038216600090815260066020526040812054839080610cbc576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040812054600780549192916000198401908110610cea57fe5b600091825260208083208584526008825260408085206001600160a01b038c8116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015610d6857600080fd5b505afa158015610d7c573d6000803e3d6000fd5b505050506040513d6020811015610d9257600080fd5b5051600285015490915043118015610da957508015155b15610e3c576000610de7600954610ad98760010154610de1610dd88a60020154436119a790919063ffffffff16565b600554906119e9565b906119e9565b90506000610e06612710610ad9600454856119e990919063ffffffff16565b90506000610e1483836119a7565b9050610e36610e2f85610ad984670de0b6b3a76400006119e9565b8690611946565b94505050505b610e678360010154610adf670de0b6b3a7640000610ad98688600001546119e990919063ffffffff16565b9a9950505050505050505050565b6001600160a01b038116600090815260066020526040902054819080610ed8576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b600180548101908190556001600160a01b038416600090815260066020526040812054600780549192916000198401908110610f1057fe5b6000918252602080832085845260088252604080852033808752935284208481556001810185905560049093020180549094509192610f59926001600160a01b03169190611c67565b805460408051918252516001600160a01b0389169133917ff24ef89f38eadc1bde50701ad6e4d6d11a2dc24f7cf834a486991f38833285049181900360200190a35050506001548114610ff3576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b50505050565b611001611942565b6000546001600160a01b03908116911614611051576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60045481565b6001600160a01b038116600090815260066020526040902054819080611104576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b6001600160a01b03831660009081526006602052604081205460078054919291600019840190811061113257fe5b906000526020600020906004020190508060020154431161115457505061135f565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561119e57600080fd5b505afa1580156111b2573d6000803e3d6000fd5b505050506040513d60208110156111c857600080fd5b50519050806111df5750436002909101555061135f565b6000611209600954610ad98560010154610de1610dd88860020154436119a790919063ffffffff16565b90506000611228612710610ad9600454856119e990919063ffffffff16565b600254600354604080516340c10f1960e01b81526001600160a01b0392831660048201526024810185905290519394509116916340c10f199160448082019260009290919082900301818387803b15801561128257600080fd5b505af1158015611296573d6000803e3d6000fd5b5050505060006112af82846119a790919063ffffffff16565b600254604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b15801561130557600080fd5b505af1158015611319573d6000803e3d6000fd5b5050505061134a61133f85610ad9670de0b6b3a7640000856119e990919063ffffffff16565b600387015490611946565b60038601555050436002909301929092555050505b505050565b6000546001600160a01b031690565b60086020908152600092835260408084209091529082529020805460019091015482565b61139f611942565b6000546001600160a01b039081169116146113ef576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6113f7610c06565b600555565b611404610c06565b600060015b60075481116114c55760006007600183038154811061142457fe5b600091825260208083208584526008825260408085203386529092529220805460049092029092019250156114bb5761148c6114858260010154610adf670de0b6b3a7640000610ad9876003015487600001546119e990919063ffffffff16565b8590611946565b93506114b5670de0b6b3a7640000610ad9846003015484600001546119e990919063ffffffff16565b60018201555b5050600101611409565b5080156114d6576114d63382611a84565b50565b6114e1611942565b6000546001600160a01b03908116911614611531576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6127108111156115725760405162461bcd60e51b815260040180806020018281038252602b8152602001806120e0602b913960400191505060405180910390fd5b600455565b61271081565b611585611942565b6000546001600160a01b039081169116146115d5576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b6001600160a01b03811661161a5760405162461bcd60e51b81526004018080602001828103825260268152602001806120246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61167d611942565b6000546001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612096833981519152604482015290519081900360640190fd5b600a54431061170d5760405162461bcd60e51b815260040180806020018281038252602b81526020018061204a602b913960400191505060405180910390fd5b600a81905560075460015b81811161135f5760006007600183038154811061173157fe5b6000918252602090912060026004909202010184905550600101611718565b6001600160a01b0382166000908152600660205260409020548290806117b3576040805162461bcd60e51b81526020600482015260136024820152721c1bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260408120546007805491929160001984019081106117e157fe5b600091825260208083208584526008825260408085203386529092529220805460049092029092019250861115611854576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b8154611868906001600160a01b03166110a1565b60006118998260010154610adf670de0b6b3a7640000610ad9876003015487600001546119e990919063ffffffff16565b905080156118ab576118ab3382611a84565b86156118d55781546118bd90886119a7565b825582546118d5906001600160a01b03163389611c67565b600383015482546118f391670de0b6b3a764000091610ad9916119e9565b60018301556040805188815290516001600160a01b038a169133917f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb9181900360200190a35050505050505050565b3390565b6000828201838110156119a0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006119a083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cb9565b6000826119f8575060006109c3565b82820282848281611a0557fe5b04146119a05760405162461bcd60e51b81526004018080602001828103825260218152602001806120756021913960400191505060405180910390fd5b60006119a083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d50565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611acf57600080fd5b505afa158015611ae3573d6000803e3d6000fd5b505050506040513d6020811015611af957600080fd5b5051905080821115611b8d576002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611b5b57600080fd5b505af1158015611b6f573d6000803e3d6000fd5b505050506040513d6020811015611b8557600080fd5b5061135f9050565b6002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611be357600080fd5b505af1158015611bf7573d6000803e3d6000fd5b505050506040513d6020811015610be157600080fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610ff3908590611db5565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261135f908490611db5565b60008184841115611d485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d0d578181015183820152602001611cf5565b50505050905090810190601f168015611d3a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611d9f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d0d578181015183820152602001611cf5565b506000838581611dab57fe5b0495945050505050565b6060611e0a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e669092919063ffffffff16565b80519091501561135f57808060200190516020811015611e2957600080fd5b505161135f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806120b6602a913960400191505060405180910390fd5b6060611e758484600085611e7d565b949350505050565b6060611e8885611fea565b611ed9576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611f185780518252601f199092019160209182019101611ef9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f7a576040519150601f19603f3d011682016040523d82523d6000602084013e611f7f565b606091505b50915091508115611f93579150611e759050565b805115611fa35780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611d0d578181015183820152602001611cf5565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611e7557505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e6e6f74206368616e6765207374617274426c6f636b20616674657220726577617264207374617274536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644e756d657261746f722063616e6e6f74206265206c6172676572207468616e2064656e6f6d696e61746f72a2646970667358221220c927c31ff9b0749ebabacdaf2cf518135f640332f4f0b26c51e2317b281770ca64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b26c4b3ca601136daf98593feaeff9e0ca702a8d00000000000000000000000010af3d70831a7f85192fb70ce6a7205f81294ad700000000000000000000000000000000000000000000001ad5814560aa5c0000000000000000000000000000000000000000000000000000016345785d89ffff
-----Decoded View---------------
Arg [0] : _ald (address): 0xb26C4B3Ca601136Daf98593feAeff9E0CA702a8D
Arg [1] : _tokenDistributor (address): 0x10aF3D70831A7F85192fB70CE6A7205F81294aD7
Arg [2] : _aldPerBlock (uint256): 495000000000000000000
Arg [3] : _startBlock (uint256): 99999999999999999
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b26c4b3ca601136daf98593feaeff9e0ca702a8d
Arg [1] : 00000000000000000000000010af3d70831a7f85192fb70ce6a7205f81294ad7
Arg [2] : 00000000000000000000000000000000000000000000001ad5814560aa5c0000
Arg [3] : 000000000000000000000000000000000000000000000000016345785d89ffff
Loading...
Loading
Loading...
Loading
Net Worth in USD
$3,516.86
Net Worth in ETH
1.761368
Token Allocations
ALD
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.017823 | 197,327.1833 | $3,516.86 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.