Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 75 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 13619637 | 1243 days ago | IN | 0 ETH | 0.01329411 | ||||
Approve | 12697642 | 1387 days ago | IN | 0 ETH | 0.00039147 | ||||
Transfer | 12620229 | 1399 days ago | IN | 0 ETH | 0.00182885 | ||||
Transfer | 11878169 | 1513 days ago | IN | 0 ETH | 0.02036378 | ||||
Transfer | 11699884 | 1541 days ago | IN | 0 ETH | 0.01949454 | ||||
Transfer | 11697015 | 1541 days ago | IN | 0 ETH | 0.0058789 | ||||
Transfer | 11663361 | 1546 days ago | IN | 0 ETH | 0.0069843 | ||||
Transfer | 11661771 | 1546 days ago | IN | 0.1 ETH | 0.0051997 | ||||
Transfer | 11661770 | 1546 days ago | IN | 0 ETH | 0.00494887 | ||||
Transfer | 11661765 | 1546 days ago | IN | 0.1 ETH | 0.00532089 | ||||
Transfer | 11661762 | 1546 days ago | IN | 0.1 ETH | 0.000861 | ||||
Transfer | 11655381 | 1547 days ago | IN | 0 ETH | 0.00438759 | ||||
Transfer | 11655166 | 1547 days ago | IN | 0 ETH | 0.00672213 | ||||
Transfer | 11654802 | 1548 days ago | IN | 0 ETH | 0.00952323 | ||||
Transfer | 11591077 | 1557 days ago | IN | 0 ETH | 0.01375682 | ||||
Transfer | 11591031 | 1557 days ago | IN | 0 ETH | 0.0130008 | ||||
Transfer | 11588576 | 1558 days ago | IN | 0 ETH | 0.00886948 | ||||
Transfer | 11582389 | 1559 days ago | IN | 0 ETH | 0.05134273 | ||||
Transfer | 11576681 | 1560 days ago | IN | 0 ETH | 0.00915075 | ||||
Transfer | 11570767 | 1560 days ago | IN | 0 ETH | 0.00494887 | ||||
Transfer | 11570632 | 1560 days ago | IN | 0 ETH | 0.00573878 | ||||
Transfer | 11568613 | 1561 days ago | IN | 0 ETH | 0.00499136 | ||||
Transfer | 11568609 | 1561 days ago | IN | 0 ETH | 0.00530518 | ||||
Transfer | 11564575 | 1561 days ago | IN | 0 ETH | 0.00392175 | ||||
Transfer | 11557429 | 1562 days ago | IN | 0 ETH | 0.0046652 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 11661771 | 1546 days ago | 0.1 ETH | ||||
- | 11661765 | 1546 days ago | 0.1 ETH | ||||
- | 11556690 | 1563 days ago | 0.2 ETH | ||||
- | 11553168 | 1563 days ago | 0.3 ETH | ||||
- | 11552229 | 1563 days ago | 0.2 ETH | ||||
- | 11552069 | 1563 days ago | 0.2 ETH | ||||
- | 11550407 | 1564 days ago | 0.5 ETH | ||||
- | 11550351 | 1564 days ago | 0.25 ETH | ||||
- | 11548319 | 1564 days ago | 0.5 ETH | ||||
- | 11547598 | 1564 days ago | 0.2 ETH | ||||
- | 11547119 | 1564 days ago | 0.11 ETH | ||||
- | 11547044 | 1564 days ago | 0.375 ETH | ||||
- | 11546643 | 1564 days ago | 0.4 ETH | ||||
- | 11544965 | 1564 days ago | 0.35 ETH | ||||
- | 11544930 | 1564 days ago | 0.5 ETH | ||||
- | 11544901 | 1564 days ago | 0.886549 ETH | ||||
- | 11544867 | 1564 days ago | 1 ETH | ||||
- | 11544864 | 1564 days ago | 0.5 ETH | ||||
- | 11544820 | 1564 days ago | 0.5 ETH | ||||
- | 11544814 | 1564 days ago | 0.5 ETH | ||||
- | 11544796 | 1564 days ago | 0.35 ETH | ||||
- | 11544792 | 1564 days ago | 0.1 ETH | ||||
- | 11544790 | 1564 days ago | 0.5 ETH | ||||
- | 11544470 | 1564 days ago | 0.15 ETH | ||||
- | 11525407 | 1567 days ago | 0.15 ETH |
Loading...
Loading
Contract Name:
FUM
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-16 */ // SPDX-License-Identifier: GPL-3.0-or-later // 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; } } // 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; } } // 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); } // 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; } } // 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); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @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 { } } // File: erc20permit/contracts/IERC2612.sol // Code adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/ pragma solidity ^0.6.0; /** * @dev Interface of the ERC2612 standard as defined in the EIP. * * Adds the {permit} method, which can be used to change one's * {IERC20-allowance} without having to send a transaction, by signing a * message. This allows users to spend tokens without having to hold Ether. * * See https://eips.ethereum.org/EIPS/eip-2612. */ interface IERC2612 { /** * @dev Sets `amount` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; /** * @dev Returns the current ERC2612 nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); } // File: erc20permit/contracts/ERC20Permit.sol // Adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/53516bc555a454862470e7860a9b5254db4d00f5/contracts/token/ERC20/ERC20Permit.sol pragma solidity ^0.6.0; /** * @author Georgios Konstantopoulos * @dev Extension of {ERC20} that allows token holders to use their tokens * without sending any transactions by setting {IERC20-allowance} with a * signature using the {permit} method, and then spend them via * {IERC20-transferFrom}. * * The {permit} signature mechanism conforms to the {IERC2612} interface. */ abstract contract ERC20Permit is ERC20, IERC2612 { mapping (address => uint256) public override nonces; bytes32 public immutable PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public immutable DOMAIN_SEPARATOR; constructor(string memory name_, string memory symbol_) internal ERC20(name_, symbol_) { uint256 chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name_)), keccak256(bytes("1")), chainId, address(this) ) ); } /** * @dev See {IERC2612-permit}. * * In cases where the free option is not a concern, deadline can simply be * set to uint(-1), so it should be seen as an optional parameter */ function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override { require(deadline >= block.timestamp, "ERC20Permit: expired deadline"); bytes32 hashStruct = keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline ) ); bytes32 hash = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, hashStruct ) ); address signer = ecrecover(hash, v, r, s); require( signer != address(0) && signer == owner, "ERC20Permit: invalid signature" ); _approve(owner, spender, amount); } } // File: contracts/IUSM.sol pragma solidity ^0.6.6; interface IUSM { function mint(address to, uint minUsmOut) external payable returns (uint); function burn(address from, address payable to, uint usmToBurn, uint minEthOut) external returns (uint); function fund(address to, uint minFumOut) external payable returns (uint); function defund(address from, address payable to, uint fumToBurn, uint minEthOut) external returns (uint); function defundFromFUM(address from, address payable to, uint fumToBurn, uint minEthOut) external returns (uint); } // File: contracts/MinOut.sol pragma solidity ^0.6.6; library MinOut { function parseMinTokenOut(uint ethIn) internal pure returns (uint minTokenOut) { uint minPrice = ethIn % 100000000000; if (minPrice != 0 && minPrice < 10000000) { minTokenOut = ethIn * minPrice / 100; } } function parseMinEthOut(uint tokenIn) internal pure returns (uint minEthOut) { uint maxPrice = tokenIn % 100000000000; if (maxPrice != 0 && maxPrice < 10000000) { minEthOut = tokenIn * 100 / maxPrice; } } } // File: contracts/FUM.sol pragma solidity ^0.6.6; /** * @title FUM Token * @author Alberto Cuesta Cañada, Jacob Eliosoff, Alex Roan * * @notice This should be owned by the stablecoin. */ contract FUM is ERC20Permit, Ownable { IUSM public immutable usm; constructor(IUSM usm_) public ERC20Permit("Minimal Funding", "FUM") { usm = usm_; } /** * @notice If anyone sends ETH here, assume they intend it as a `fund`. * If decimals 8 to 11 (included) of the amount of Ether received are `0000` then the next 7 will * be parsed as the minimum Ether price accepted, with 2 digits before and 5 digits after the comma. */ receive() external payable { usm.fund{ value: msg.value }(msg.sender, MinOut.parseMinTokenOut(msg.value)); } /** * @notice If a user sends FUM tokens directly to this contract (or to the USM contract), assume they intend it as a `defund`. * If using `transfer`/`transferFrom` as `defund`, and if decimals 8 to 11 (included) of the amount transferred received * are `0000` then the next 7 will be parsed as the maximum FUM price accepted, with 5 digits before and 2 digits after the comma. */ function _transfer(address sender, address recipient, uint256 amount) internal override { if (recipient == address(this) || recipient == address(usm) || recipient == address(0)) { usm.defundFromFUM(sender, payable(sender), amount, MinOut.parseMinEthOut(amount)); } else { super._transfer(sender, recipient, amount); } } /** * @notice Mint new FUM to the _recipient * * @param _recipient address to mint to * @param _amount amount to mint */ function mint(address _recipient, uint _amount) external onlyOwner { _mint(_recipient, _amount); } /** * @notice Burn FUM from _holder * * @param _holder address to burn from * @param _amount amount to burn */ function burn(address _holder, uint _amount) external onlyOwner { _burn(_holder, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IUSM","name":"usm_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usm","outputs":[{"internalType":"contract IUSM","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604081905280605262001fb78239604051908190036052019020608052503480156200002c57600080fd5b506040516200205b3803806200205b833981810160405260208110156200005257600080fd5b5051604080518082018252600f81526e4d696e696d616c2046756e64696e6760881b6020828101918252835180850190945260038085526246554d60e81b91850191909152825192939284928492620000ae92909190620001f0565b508051620000c4906004906020840190620001f0565b50506005805460ff19166012179055506040514690806052620020098239604080519182900360520182208651602097880120838301835260018452603160f81b93880193909352815180880191909152808201929092527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606083015260808201939093523060a08083019190915283518083038201815260c0909201909352805194019390932090525060009050620001876001600160e01b03620001eb16565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060601b6001600160601b03191660c05262000292565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b620001ed91905b808211156200027157600081556001016200027c565b60805160a05160c05160601c611cdc620002db600039806101755280610d42528061139452806114085250806109335280610ea65250806109065280610e1e5250611cdc6000f3fe60806040526004361061016e5760003560e01c8063715018a6116100cb578063a457c2d71161007f578063d505accf11610059578063d505accf14610663578063dd62ed3e146106ce578063f2fde38b1461071657610251565b8063a457c2d7146105c2578063a4800a7514610608578063a9059cbb1461061d57610251565b80638da5cb5b116100b05780638da5cb5b1461052957806395d89b41146105675780639dc29fac1461057c57610251565b8063715018a6146104d45780637ecebe00146104e957610251565b8063313ce567116101225780633950935111610107578063395093511461040657806340c10f191461044c57806370a082311461049457610251565b8063313ce567146103c65780633644e515146103f157610251565b806318160ddd1161015357806318160ddd1461033a57806323b872dd1461036157806330adf81f146103b157610251565b806306fdde0314610256578063095ea7b3146102e057610251565b36610251577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637b1837de34336101ba34610756565b6040518463ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001925050506020604051808303818588803b15801561022257600080fd5b505af1158015610236573d6000803e3d6000fd5b50505050506040513d602081101561024d57600080fd5b5050005b600080fd5b34801561026257600080fd5b5061026b610786565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103266004803603604081101561030357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561083a565b604080519115158252519081900360200190f35b34801561034657600080fd5b5061034f610857565b60408051918252519081900360200190f35b34801561036d57600080fd5b506103266004803603606081101561038457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561085d565b3480156103bd57600080fd5b5061034f610904565b3480156103d257600080fd5b506103db610928565b6040805160ff9092168252519081900360200190f35b3480156103fd57600080fd5b5061034f610931565b34801561041257600080fd5b506103266004803603604081101561042957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610955565b34801561045857600080fd5b506104926004803603604081101561046f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109b6565b005b3480156104a057600080fd5b5061034f600480360360208110156104b757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610a55565b3480156104e057600080fd5b50610492610a7d565b3480156104f557600080fd5b5061034f6004803603602081101561050c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b7d565b34801561053557600080fd5b5061053e610b8f565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561057357600080fd5b5061026b610bab565b34801561058857600080fd5b506104926004803603604081101561059f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610c2a565b3480156105ce57600080fd5b50610326600480360360408110156105e557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cc5565b34801561061457600080fd5b5061053e610d40565b34801561062957600080fd5b506103266004803603604081101561064057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d64565b34801561066f57600080fd5b50610492600480360360e081101561068657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610d78565b3480156106da57600080fd5b5061034f600480360360408110156106f157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611065565b34801561072257600080fd5b506104926004803603602081101561073957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661109d565b600064174876e8008206801580159061077157506298968081105b156107805760648382025b0491505b50919050565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b600061084e610847611228565b848461122c565b50600192915050565b60025490565b600061086a848484611373565b6108fa84610876611228565b6108f585604051806060016040528060288152602001611bf06028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260408120906108c1611228565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054919063ffffffff61153316565b61122c565b5060019392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60055460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061084e610962611228565b846108f58560016000610973611228565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6115e416565b6109be611228565b60075473ffffffffffffffffffffffffffffffffffffffff908116911614610a4757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a51828261165f565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610a85611228565b60075473ffffffffffffffffffffffffffffffffffffffff908116911614610b0e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60075460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60066020526000908152604090205481565b60075473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108305780601f1061080557610100808354040283529160200191610830565b610c32611228565b60075473ffffffffffffffffffffffffffffffffffffffff908116911614610cbb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a51828261179c565b600061084e610cd2611228565b846108f585604051806060016040528060258152602001611c826025913960016000610cfc611228565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61153316565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061084e610d71611228565b8484611373565b42841015610de757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff80881660008181526006602090815260408083208054600180820190925582517f00000000000000000000000000000000000000000000000000000000000000008186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e28084019391927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015610f68573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590610fe357508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61104e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6110598a8a8a61122c565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6110a5611228565b60075473ffffffffffffffffffffffffffffffffffffffff90811691161461112e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611b826026913960400191505060405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611298576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611c5e6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611ba86022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff82163014806113e257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611401575073ffffffffffffffffffffffffffffffffffffffff8216155b15611523577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f99b1bdb84858461144e866118f2565b6040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001945050505050602060405180830381600087803b1580156114f157600080fd5b505af1158015611505573d6000803e3d6000fd5b505050506040513d602081101561151b57600080fd5b5061152e9050565b61152e83838361191e565b505050565b600081848411156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115a1578181015183820152602001611589565b50505050905090810190601f1680156115ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561165857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166116e157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6116ed6000838361152e565b600254611700908263ffffffff6115e416565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611739908263ffffffff6115e416565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216611808576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611c186021913960400191505060405180910390fd5b6118148260008361152e565b61186481604051806060016040528060228152602001611b606022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff61153316565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205560025461189d908263ffffffff611afa16565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600064174876e8008206801580159061190d57506298968081105b156107805780836064028161077c57fe5b73ffffffffffffffffffffffffffffffffffffffff831661198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611c396025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166119f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611b3d6023913960400191505060405180910390fd5b611a0183838361152e565b611a5181604051806060016040528060268152602001611bca6026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff61153316565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054611a93908263ffffffff6115e416565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061165883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061153356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fd245a8c7efcaae4a65f2731cc7c0b6ef0618a52b60ff0bd544639bc84dba51564736f6c634300060600335065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742900000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc
Deployed Bytecode
0x60806040526004361061016e5760003560e01c8063715018a6116100cb578063a457c2d71161007f578063d505accf11610059578063d505accf14610663578063dd62ed3e146106ce578063f2fde38b1461071657610251565b8063a457c2d7146105c2578063a4800a7514610608578063a9059cbb1461061d57610251565b80638da5cb5b116100b05780638da5cb5b1461052957806395d89b41146105675780639dc29fac1461057c57610251565b8063715018a6146104d45780637ecebe00146104e957610251565b8063313ce567116101225780633950935111610107578063395093511461040657806340c10f191461044c57806370a082311461049457610251565b8063313ce567146103c65780633644e515146103f157610251565b806318160ddd1161015357806318160ddd1461033a57806323b872dd1461036157806330adf81f146103b157610251565b806306fdde0314610256578063095ea7b3146102e057610251565b36610251577f00000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc73ffffffffffffffffffffffffffffffffffffffff16637b1837de34336101ba34610756565b6040518463ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001925050506020604051808303818588803b15801561022257600080fd5b505af1158015610236573d6000803e3d6000fd5b50505050506040513d602081101561024d57600080fd5b5050005b600080fd5b34801561026257600080fd5b5061026b610786565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103266004803603604081101561030357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561083a565b604080519115158252519081900360200190f35b34801561034657600080fd5b5061034f610857565b60408051918252519081900360200190f35b34801561036d57600080fd5b506103266004803603606081101561038457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561085d565b3480156103bd57600080fd5b5061034f610904565b3480156103d257600080fd5b506103db610928565b6040805160ff9092168252519081900360200190f35b3480156103fd57600080fd5b5061034f610931565b34801561041257600080fd5b506103266004803603604081101561042957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610955565b34801561045857600080fd5b506104926004803603604081101561046f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109b6565b005b3480156104a057600080fd5b5061034f600480360360208110156104b757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610a55565b3480156104e057600080fd5b50610492610a7d565b3480156104f557600080fd5b5061034f6004803603602081101561050c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b7d565b34801561053557600080fd5b5061053e610b8f565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561057357600080fd5b5061026b610bab565b34801561058857600080fd5b506104926004803603604081101561059f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610c2a565b3480156105ce57600080fd5b50610326600480360360408110156105e557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cc5565b34801561061457600080fd5b5061053e610d40565b34801561062957600080fd5b506103266004803603604081101561064057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d64565b34801561066f57600080fd5b50610492600480360360e081101561068657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610d78565b3480156106da57600080fd5b5061034f600480360360408110156106f157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611065565b34801561072257600080fd5b506104926004803603602081101561073957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661109d565b600064174876e8008206801580159061077157506298968081105b156107805760648382025b0491505b50919050565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b600061084e610847611228565b848461122c565b50600192915050565b60025490565b600061086a848484611373565b6108fa84610876611228565b6108f585604051806060016040528060288152602001611bf06028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260408120906108c1611228565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054919063ffffffff61153316565b61122c565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b7fdc736d1a26573089ed84553ec1949528151511aa1b24315bce578905f8a3e7f981565b600061084e610962611228565b846108f58560016000610973611228565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6115e416565b6109be611228565b60075473ffffffffffffffffffffffffffffffffffffffff908116911614610a4757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a51828261165f565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610a85611228565b60075473ffffffffffffffffffffffffffffffffffffffff908116911614610b0e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60075460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60066020526000908152604090205481565b60075473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108305780601f1061080557610100808354040283529160200191610830565b610c32611228565b60075473ffffffffffffffffffffffffffffffffffffffff908116911614610cbb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a51828261179c565b600061084e610cd2611228565b846108f585604051806060016040528060258152602001611c826025913960016000610cfc611228565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61153316565b7f00000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc81565b600061084e610d71611228565b8484611373565b42841015610de757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff80881660008181526006602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601527fdc736d1a26573089ed84553ec1949528151511aa1b24315bce578905f8a3e7f961010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e28084019391927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015610f68573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590610fe357508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61104e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6110598a8a8a61122c565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6110a5611228565b60075473ffffffffffffffffffffffffffffffffffffffff90811691161461112e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611b826026913960400191505060405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611298576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611c5e6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611ba86022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff82163014806113e257507f00000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611401575073ffffffffffffffffffffffffffffffffffffffff8216155b15611523577f00000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc73ffffffffffffffffffffffffffffffffffffffff1663f99b1bdb84858461144e866118f2565b6040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001945050505050602060405180830381600087803b1580156114f157600080fd5b505af1158015611505573d6000803e3d6000fd5b505050506040513d602081101561151b57600080fd5b5061152e9050565b61152e83838361191e565b505050565b600081848411156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115a1578181015183820152602001611589565b50505050905090810190601f1680156115ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561165857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166116e157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6116ed6000838361152e565b600254611700908263ffffffff6115e416565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611739908263ffffffff6115e416565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216611808576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611c186021913960400191505060405180910390fd5b6118148260008361152e565b61186481604051806060016040528060228152602001611b606022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff61153316565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205560025461189d908263ffffffff611afa16565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600064174876e8008206801580159061190d57506298968081105b156107805780836064028161077c57fe5b73ffffffffffffffffffffffffffffffffffffffff831661198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611c396025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166119f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611b3d6023913960400191505060405180910390fd5b611a0183838361152e565b611a5181604051806060016040528060268152602001611bca6026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff61153316565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054611a93908263ffffffff6115e416565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061165883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061153356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fd245a8c7efcaae4a65f2731cc7c0b6ef0618a52b60ff0bd544639bc84dba51564736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc
-----Decoded View---------------
Arg [0] : usm_ (address): 0x03eb7Ce2907e202bB70BAE3D7B0C588573d3cECC
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000003eb7ce2907e202bb70bae3d7b0c588573d3cecc
Deployed Bytecode Sourcemap
34596:1945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35121:3;:8;;;35138:9;35150:10;35162:34;35186:9;35162:23;:34::i;:::-;35121:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35121:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35121:76:0;;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;34596:1945:0;;12:1:-1;9;2:12;19908:83:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19908:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;19908:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22014:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22014:169:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22014:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20983:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20983:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;22657:321;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22657:321:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22657:321:0;;;;;;;;;;;;;;;;;;:::i;31353:138::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31353:138:0;;;:::i;20835:83::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20835:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31498:41;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31498:41:0;;;:::i;23387:218::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23387:218:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23387:218:0;;;;;;;;;:::i;36166:112::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36166:112:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36166:112:0;;;;;;;;;:::i;:::-;;21146:119;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21146:119:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21146:119:0;;;;:::i;2756:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2756:148:0;;;:::i;31293:51::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31293:51:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31293:51:0;;;;:::i;2114:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2114:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20110:87;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20110:87:0;;;:::i;36432:106::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36432:106:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36432:106:0;;;;;;;;;:::i;24108:269::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24108:269:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24108:269:0;;;;;;;;;:::i;34640:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34640:25:0;;;:::i;21478:175::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21478:175:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21478:175:0;;;;;;;;;:::i;32301:905::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32301:905:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;32301:905:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21716:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21716:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21716:151:0;;;;;;;;;;;:::i;3059:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;3059:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;3059:244:0;;;;:::i;33877:249::-;33938:16;33991:12;33983:20;;34018:13;;;;;:36;;;34046:8;34035;:19;34018:36;34014:105;;;34104:3;34085:16;;;:22;;34071:36;;34014:105;33877:249;;;;:::o;19908:83::-;19978:5;19971:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19945:13;;19971:12;;19978:5;;19971:12;;19978:5;19971:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19908:83;:::o;22014:169::-;22097:4;22114:39;22123:12;:10;:12::i;:::-;22137:7;22146:6;22114:8;:39::i;:::-;-1:-1:-1;22171:4:0;22014:169;;;;:::o;20983:100::-;21063:12;;20983:100;:::o;22657:321::-;22763:4;22780:36;22790:6;22798:9;22809:6;22780:9;:36::i;:::-;22827:121;22836:6;22844:12;:10;:12::i;:::-;22858:89;22896:6;22858:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;22878:12;:10;:12::i;:::-;22858:33;;;;;;;;;;;;;-1:-1:-1;22858:33:0;;;:89;;:37;:89;:::i;:::-;22827:8;:121::i;:::-;-1:-1:-1;22966:4:0;22657:321;;;;;:::o;31353:138::-;;;:::o;20835:83::-;20901:9;;;;20835:83;:::o;31498:41::-;;;:::o;23387:218::-;23475:4;23492:83;23501:12;:10;:12::i;:::-;23515:7;23524:50;23563:10;23524:11;:25;23536:12;:10;:12::i;:::-;23524:25;;;;;;;;;;;;;;;;;;-1:-1:-1;23524:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;36166:112::-;2336:12;:10;:12::i;:::-;2326:6;;:22;:6;;;:22;;;2318:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36244:26:::1;36250:10;36262:7;36244:5;:26::i;:::-;36166:112:::0;;:::o;21146:119::-;21239:18;;21212:7;21239:18;;;;;;;;;;;;21146:119::o;2756:148::-;2336:12;:10;:12::i;:::-;2326:6;;:22;:6;;;:22;;;2318:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2847:6:::1;::::0;2826:40:::1;::::0;2863:1:::1;::::0;2826:40:::1;2847:6;::::0;2826:40:::1;::::0;2863:1;;2826:40:::1;2877:6;:19:::0;;;::::1;::::0;;2756:148::o;31293:51::-;;;;;;;;;;;;;:::o;2114:79::-;2179:6;;;;2114:79;:::o;20110:87::-;20182:7;20175:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20149:13;;20175:14;;20182:7;;20175:14;;20182:7;20175:14;;;;;;;;;;;;;;;;;;;;;;;;36432:106;2336:12;:10;:12::i;:::-;2326:6;;:22;:6;;;:22;;;2318:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36507:23:::1;36513:7;36522;36507:5;:23::i;24108:269::-:0;24201:4;24218:129;24227:12;:10;:12::i;:::-;24241:7;24250:96;24289:15;24250:96;;;;;;;;;;;;;;;;;:11;:25;24262:12;:10;:12::i;:::-;24250:25;;;;;;;;;;;;;;;;;;-1:-1:-1;24250:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;34640:25::-;;;:::o;21478:175::-;21564:4;21581:42;21591:12;:10;:12::i;:::-;21605:9;21616:6;21581:9;:42::i;32301:905::-;32469:15;32457:8;:27;;32449:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32714:13;;;;32531:18;32714:13;;;:6;:13;;;;;;;;:15;;;;;;;;;32576:195;;32605:15;32576:195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;32576:195:0;;;;;32552:230;;;;;;32834:124;;;;;32898:16;32834:124;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;32834:124:0;;;;;;32810:159;;;;;;;;;32999:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32552:230;;32810:159;;32714:15;;32999:24;;;;;32714:13;;-1:-1:-1;32999:24:0;;;;;;;;;;32714:15;32999:24;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32999:24:0;;;;;;-1:-1:-1;;33056:20:0;;;;;;;:39;;;33090:5;33080:15;;:6;:15;;;33056:39;33034:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33166:32;33175:5;33182:7;33191:6;33166:8;:32::i;:::-;32301:905;;;;;;;;;;:::o;21716:151::-;21832:18;;;;21805:7;21832:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21716:151::o;3059:244::-;2336:12;:10;:12::i;:::-;2326:6;;:22;:6;;;:22;;;2318:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3148:22:::1;::::0;::::1;3140:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3250:6;::::0;3229:38:::1;::::0;::::1;::::0;;::::1;::::0;3250:6:::1;::::0;3229:38:::1;::::0;3250:6:::1;::::0;3229:38:::1;3278:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3059:244::o;670:106::-;758:10;670:106;:::o;27255:346::-;27357:19;;;27349:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27436:21;;;27428:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27509:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27561:32;;;;;;;;;;;;;;;;;27255:346;;;:::o;35625:377::-;35728:26;;;35749:4;35728:26;;:55;;;35779:3;35758:25;;:9;:25;;;35728:55;:82;;;-1:-1:-1;35787:23:0;;;;35728:82;35724:271;;;35827:3;:17;;;35845:6;35861;35870;35878:29;35900:6;35878:21;:29::i;:::-;35827:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35827:81:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35827:81:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35724:271:0;;-1:-1:-1;35724:271:0;;35941:42;35957:6;35965:9;35976:6;35941:15;:42::i;:::-;35625:377;;;:::o;7933:192::-;8019:7;8055:12;8047:6;;;;8039:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8039:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8091:5:0;;;7933:192::o;7030:181::-;7088:7;7120:5;;;7144:6;;;;7136:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7202:1;7030:181;-1:-1:-1;;;7030:181:0:o;25687:378::-;25771:21;;;25763:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25841:49;25870:1;25874:7;25883:6;25841:20;:49::i;:::-;25918:12;;:24;;25935:6;25918:24;:16;:24;:::i;:::-;25903:12;:39;25974:18;;;:9;:18;;;;;;;;;;;:30;;25997:6;25974:30;:22;:30;:::i;:::-;25953:18;;;:9;:18;;;;;;;;;;;:51;;;;26020:37;;;;;;;25953:18;;:9;;26020:37;;;;;;;;;;25687:378;;:::o;26397:418::-;26481:21;;;26473:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26553:49;26574:7;26591:1;26595:6;26553:20;:49::i;:::-;26636:68;26659:6;26636:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;26615:18;;;:9;:18;;;;;;;;;;:89;26730:12;;:24;;26747:6;26730:24;:16;:24;:::i;:::-;26715:12;:39;26770:37;;;;;;;;26796:1;;26770:37;;;;;;;;;;;;;26397:418;;:::o;34134:249::-;34195:14;34248:12;34238:22;;34275:13;;;;;:36;;;34303:8;34292;:19;34275:36;34271:105;;;34356:8;34340:7;34350:3;34340:13;:24;;;;24867:539;24973:20;;;24965:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25054:23;;;25046:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25130:47;25151:6;25159:9;25170:6;25130:20;:47::i;:::-;25210:71;25232:6;25210:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;25190:17;;;;:9;:17;;;;;;;;;;;:91;;;;25315:20;;;;;;;:32;;25340:6;25315:32;:24;:32;:::i;:::-;25292:20;;;;:9;:20;;;;;;;;;;;;:55;;;;25363:35;;;;;;;25292:20;;25363:35;;;;;;;;;;;;;24867:539;;;:::o;7494:136::-;7552:7;7579:43;7583:1;7586;7579:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://fd245a8c7efcaae4a65f2731cc7c0b6ef0618a52b60ff0bd544639bc84dba515
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.