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
Latest 25 from a total of 1,871 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Complete Convers... | 12354161 | 1312 days ago | IN | 0 ETH | 0.00134196 | ||||
Complete Convers... | 12354151 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354143 | 1312 days ago | IN | 0 ETH | 0.00159873 | ||||
Complete Convers... | 12354138 | 1312 days ago | IN | 0 ETH | 0.00159873 | ||||
Complete Convers... | 12354130 | 1312 days ago | IN | 0 ETH | 0.00159873 | ||||
Complete Convers... | 12354123 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354114 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354110 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354101 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354098 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354091 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354085 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354082 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354077 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354065 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354056 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354051 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354040 | 1312 days ago | IN | 0 ETH | 0.00166535 | ||||
Complete Convers... | 12354030 | 1312 days ago | IN | 0 ETH | 0.00179857 | ||||
Complete Convers... | 12354025 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354012 | 1312 days ago | IN | 0 ETH | 0.00173196 | ||||
Complete Convers... | 12354005 | 1312 days ago | IN | 0 ETH | 0.00199842 | ||||
Complete Convers... | 12353771 | 1313 days ago | IN | 0 ETH | 0.00179857 | ||||
Complete Convers... | 12353763 | 1313 days ago | IN | 0 ETH | 0.00179857 | ||||
Complete Convers... | 12353749 | 1313 days ago | IN | 0 ETH | 0.00186519 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MxxConverter
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-26 */ // SPDX-License-Identifier: agpl-3.0 // File: openzeppelin-solidity/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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } 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-solidity/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-solidity/contracts/utils/ReentrancyGuard.sol pragma solidity ^0.6.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { bool private _notEntered; constructor () internal { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } } // File: openzeppelin-solidity/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-solidity/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) { // Solidity only automatically asserts when dividing by 0 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-solidity/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"); } } // File: openzeppelin-solidity/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 {ERC20MinterPauser}. * * 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: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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"); } } } // File: contracts/MxxConverter.sol // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.6.0; /** * @title Mxx Converter Contract * @notice Contract to allow a user to deposit Mxx token to be converted to bMxx on the binance smart chain. */ contract MxxConverter is Ownable, ReentrancyGuard { // Using SafeMath Library to prevent integer overflow using SafeMath for uint256; // Using SafeERC20 for ERC20 using SafeERC20 for ERC20; /** * @dev - A struct to store each conversion details * @notice amount - The amount of Mxx to be converted * @notice fromAddress - user's address on ETH chain * @notice toAddress - destination address on BSC chain * @notice startTime - Start Time of the conversion * @notice endTime - End time of the conversion * @notice status - The status of this conversion */ struct ConversionDetails { uint256 amount; uint256 feePcnt; address fromAddress; address toAddress; uint48 startTime; uint48 endTime; Status status; } /** * @dev - A enum to store the status of each cobversion */ enum Status {Invalid, New, Completed, Refunded} /** * @dev - Events */ event NewConversion( uint256 index, address indexed from, address indexed to, uint256 amount, uint256 feePcnt, uint256 timeStamp ); event ConversionCompleted(uint256 id); event ConversionRefunded(uint256 id); /** * @dev - Variable to store Official MXX ERC20 token address */ address public MXX_ADDRESS; /** * @dev - Address to store the Official MXX Burn Address */ address public BURN_ADDRESS; /** * @dev - The grand total number of Mxx that can be converted to BSC. */ uint256 internal constant MAX_CONVERTABLE = 415_000_000e8; /** * @dev - The remaining amount of Mxx availabe for conversion. */ uint256 public availableMxxAmt; /** * @dev - An incremental number to track the index of the next conversion. */ uint256 public index; /** * @dev - An mapping for all conversion details. */ mapping(uint256 => ConversionDetails) public allConversions; /** * @dev - The fee percent for each conversion. Default is 1_000_000 (ie 1%). 1e8 is 100% */ uint256 public feePcnt = 1_000_000; /** * @dev - The max fee is 10% */ uint256 public constant MAX_FEE_PCNT = 10_000_000; constructor(address mxx, address burnAddress) public Ownable() { availableMxxAmt = MAX_CONVERTABLE; MXX_ADDRESS = mxx; BURN_ADDRESS = burnAddress; } /** * @dev This function allows a user to deposit Mxx and start a conversion. * @param _toBscAddress - The BSC destination address. * @param _amount - The amount of Mxx to convert. */ function depositForConversion(address _toBscAddress, uint256 _amount) external nonReentrant() { require(_amount != 0, "Amount cannot be 0"); require(_amount <= availableMxxAmt, "Amount exceeded"); require(_toBscAddress != address(0), "Invalid BSC address"); ERC20(MXX_ADDRESS).safeTransferFrom(msg.sender, address(this), _amount); allConversions[index] = ConversionDetails( _amount, feePcnt, msg.sender, _toBscAddress, uint48(now), 0, Status.New ); emit NewConversion( index, msg.sender, _toBscAddress, _amount, feePcnt, block.timestamp ); index = index.add(1); availableMxxAmt = availableMxxAmt.sub(_amount); } /** * @dev This function allows owner to set a conversion as completed. * @param _index - The index of the conversion * Access Control: Only Owner */ function completeConversion(uint256 _index) external onlyOwner() nonReentrant() { require(_index < index, "Index out of range"); ConversionDetails memory details = allConversions[_index]; require(details.status == Status.New, "Invalid Status"); ERC20(MXX_ADDRESS).safeTransfer(BURN_ADDRESS, details.amount); details.status = Status.Completed; details.endTime = uint48(now); allConversions[_index] = details; emit ConversionCompleted(_index); } /** * @dev This function allows owner to perform a refund for a conversion item. * @param _index - The index of the conversion * Access Control: Only Owner */ function refund(uint256 _index) external onlyOwner() nonReentrant() { require(_index < index, "Index out of range"); ConversionDetails memory details = allConversions[_index]; require(details.status == Status.New, "Invalid Status"); ERC20(MXX_ADDRESS).safeTransfer(details.fromAddress, details.amount); details.status = Status.Refunded; details.endTime = uint48(now); allConversions[_index] = details; emit ConversionRefunded(_index); } /** * @dev This function allows owner to set a new fee. * @param _fee - The fee * Access Control: Only Owner */ function setFee(uint256 _fee) external onlyOwner() { require(_fee <= MAX_FEE_PCNT, "Max fee exceeded"); feePcnt = _fee; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"mxx","type":"address"},{"internalType":"address","name":"burnAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ConversionCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ConversionRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feePcnt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeStamp","type":"uint256"}],"name":"NewConversion","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"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE_PCNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MXX_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allConversions","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"feePcnt","type":"uint256"},{"internalType":"address","name":"fromAddress","type":"address"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"enum MxxConverter.Status","name":"status","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableMxxAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"completeConversion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toBscAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositForConversion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePcnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"index","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":"uint256","name":"_index","type":"uint256"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620f424060065534801561001757600080fd5b506040516114cb3803806114cb8339818101604052604081101561003a57600080fd5b508051602090910151600061004d6100e6565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b1916600160a01b17905566937007b62dc000600355600180546001600160a01b039384166001600160a01b031991821617909155600280549290931691161790556100ea565b3390565b6113d2806100f96000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063c749ae1511610066578063c749ae1514610230578063d2ba1f361461025c578063f2fde38b14610264578063fccc28131461028a576100ea565b80638da5cb5b146101e757806398d50a3b1461020b578063a7607dab14610228576100ea565b806369fe0e2d116100c857806369fe0e2d14610130578063715018a61461014d5780638aba1215146101555780638be22bec1461015d576100ea565b806310a4538f146100ef578063278ecde1146101095780632986c0e514610128575b600080fd5b6100f7610292565b60408051918252519081900360200190f35b6101266004803603602081101561011f57600080fd5b5035610298565b005b6100f76105e9565b6101266004803603602081101561014657600080fd5b50356105ef565b610126610697565b6100f7610739565b61017a6004803603602081101561017357600080fd5b503561073f565b60405180888152602001878152602001866001600160a01b03168152602001856001600160a01b031681526020018465ffffffffffff1681526020018365ffffffffffff1681526020018260038111156101d057fe5b815260200197505050505050505060405180910390f35b6101ef610799565b604080516001600160a01b039092168252519081900360200190f35b6101266004803603602081101561022157600080fd5b50356107a8565b6101ef610afe565b6101266004803603604081101561024657600080fd5b506001600160a01b038135169060200135610b0d565b6100f7610dfb565b6101266004803603602081101561027a57600080fd5b50356001600160a01b0316610e02565b6101ef610efa565b60035481565b6102a0610f09565b6000546001600160a01b039081169116146102f0576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b600054600160a01b900460ff1661034e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff60a01b1916905560045481106103a6576040805162461bcd60e51b8152602060048201526012602482015271496e646578206f7574206f662072616e676560701b604482015290519081900360640190fd5b6103ae6112f2565b600082815260056020908152604091829020825160e0810184528154815260018201549281019290925260028101546001600160a01b0390811693830193909352600380820154938416606084015265ffffffffffff600160a01b850481166080850152600160d01b90940490931660a083015260048101549192909160c084019160ff9091169081111561043f57fe5b600381111561044a57fe5b905250905060018160c00151600381111561046157fe5b146104a4576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642053746174757360901b604482015290519081900360640190fd5b604081015181516001546104c3926001600160a01b0390911691610f0d565b600360c0820181815265ffffffffffff42811660a085019081526000868152600560209081526040918290208751815590870151600180830191909155918701516002820180546001600160a01b039283166001600160a01b0319918216179091556060890151838901805460808c015197518916600160d01b026001600160d01b0398909916600160a01b0265ffffffffffff60a01b1993909516931692909217169190911793909316939093179091559151600482018054869593949293919260ff1990911691849081111561059757fe5b0217905550506040805184815290517f4c0ce36dbc32c3fca3be492b689acde5f6beb08a810fd14b5d636c4483180b9592509081900360200190a150506000805460ff60a01b1916600160a01b179055565b60045481565b6105f7610f09565b6000546001600160a01b03908116911614610647576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b62989680811115610692576040805162461bcd60e51b815260206004820152601060248201526f13585e0819995948195e18d95959195960821b604482015290519081900360640190fd5b600655565b61069f610f09565b6000546001600160a01b039081169116146106ef576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60065481565b60056020526000908152604090208054600182015460028301546003840154600490940154929391926001600160a01b03918216929182169165ffffffffffff600160a01b8204811692600160d01b909204169060ff1687565b6000546001600160a01b031690565b6107b0610f09565b6000546001600160a01b03908116911614610800576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b600054600160a01b900460ff1661085e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff60a01b1916905560045481106108b6576040805162461bcd60e51b8152602060048201526012602482015271496e646578206f7574206f662072616e676560701b604482015290519081900360640190fd5b6108be6112f2565b600082815260056020908152604091829020825160e0810184528154815260018201549281019290925260028101546001600160a01b0390811693830193909352600380820154938416606084015265ffffffffffff600160a01b850481166080850152600160d01b90940490931660a083015260048101549192909160c084019160ff9091169081111561094f57fe5b600381111561095a57fe5b905250905060018160c00151600381111561097157fe5b146109b4576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642053746174757360901b604482015290519081900360640190fd5b60025481516001546109d4926001600160a01b0391821692911690610f0d565b600260c082018181524265ffffffffffff90811660a0850190815260008681526005602090815260409182902087518155908701516001808301919091559187015195810180546001600160a01b03199081166001600160a01b039889161790915560608801516003808401805460808c015197519416929099169190911765ffffffffffff60a01b1916600160a01b95871695909502949094176001600160d01b0316600160d01b9190951602939093179094559151600482018054869593949293919260ff1990911691908490811115610aac57fe5b0217905550506040805184815290517fe350aca1a7566bd848d09a13cf3c67ae083d6309788ec1f680ce64e5b8b9ff6392509081900360200190a150506000805460ff60a01b1916600160a01b179055565b6001546001600160a01b031681565b600054600160a01b900460ff16610b6b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff60a01b1916905580610bbf576040805162461bcd60e51b81526020600482015260126024820152710416d6f756e742063616e6e6f7420626520360741b604482015290519081900360640190fd5b600354811115610c08576040805162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b604482015290519081900360640190fd5b6001600160a01b038216610c59576040805162461bcd60e51b8152602060048201526013602482015272496e76616c696420425343206164647265737360681b604482015290519081900360640190fd5b600154610c71906001600160a01b0316333084610f64565b6040805160e0810182528281526006546020808301918252338385019081526001600160a01b03878116606086019081524265ffffffffffff90811660808801908152600060a08901818152600160c08b018181526004805485526005909a529b9092208a51815598518983015595516002890180549187166001600160a01b031992831617905593516003808a018054945198518616600160d01b026001600160d01b0399909616600160a01b0265ffffffffffff60a01b1993909816949096169390931716949094179490941617905594519183018054949593949293909260ff1916918490811115610d6257fe5b021790555050600454600654604080519283526020830185905282810191909152426060830152516001600160a01b038516925033917f48a28eda32b356e8aa1dd2211aa082290af9a40b8ea544c83d96aa853c61aa94919081900360800190a3600454610dd1906001610fc4565b600455600354610de19082611025565b60035550506000805460ff60a01b1916600160a01b179055565b6298968081565b610e0a610f09565b6000546001600160a01b03908116911614610e5a576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b6001600160a01b038116610e9f5760405162461bcd60e51b815260040180806020018281038252602681526020018061132d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f5f908490611067565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610fbe908590611067565b50505050565b60008282018381101561101e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061101e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061121f565b611079826001600160a01b03166112b6565b6110ca576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106111085780518252601f1990920191602091820191016110e9565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461116a576040519150601f19603f3d011682016040523d82523d6000602084013e61116f565b606091505b5091509150816111c6576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610fbe578080602001905160208110156111e257600080fd5b5051610fbe5760405162461bcd60e51b815260040180806020018281038252602a815260200180611373602a913960400191505060405180910390fd5b600081848411156112ae5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561127357818101518382015260200161125b565b50505050905090810190601f1680156112a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906112ea57508115155b949350505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a081018290529060c08201529056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220520fdd42a620969e28a10f374516999b826a9427739cb236a97ece41c8ab3f0a64736f6c634300060c00330000000000000000000000008a6f3bf52a26a21531514e23016eeae8ba7e701800000000000000000000000019b292c1a84379aab41564283e7f75bf20e45f91
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063c749ae1511610066578063c749ae1514610230578063d2ba1f361461025c578063f2fde38b14610264578063fccc28131461028a576100ea565b80638da5cb5b146101e757806398d50a3b1461020b578063a7607dab14610228576100ea565b806369fe0e2d116100c857806369fe0e2d14610130578063715018a61461014d5780638aba1215146101555780638be22bec1461015d576100ea565b806310a4538f146100ef578063278ecde1146101095780632986c0e514610128575b600080fd5b6100f7610292565b60408051918252519081900360200190f35b6101266004803603602081101561011f57600080fd5b5035610298565b005b6100f76105e9565b6101266004803603602081101561014657600080fd5b50356105ef565b610126610697565b6100f7610739565b61017a6004803603602081101561017357600080fd5b503561073f565b60405180888152602001878152602001866001600160a01b03168152602001856001600160a01b031681526020018465ffffffffffff1681526020018365ffffffffffff1681526020018260038111156101d057fe5b815260200197505050505050505060405180910390f35b6101ef610799565b604080516001600160a01b039092168252519081900360200190f35b6101266004803603602081101561022157600080fd5b50356107a8565b6101ef610afe565b6101266004803603604081101561024657600080fd5b506001600160a01b038135169060200135610b0d565b6100f7610dfb565b6101266004803603602081101561027a57600080fd5b50356001600160a01b0316610e02565b6101ef610efa565b60035481565b6102a0610f09565b6000546001600160a01b039081169116146102f0576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b600054600160a01b900460ff1661034e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff60a01b1916905560045481106103a6576040805162461bcd60e51b8152602060048201526012602482015271496e646578206f7574206f662072616e676560701b604482015290519081900360640190fd5b6103ae6112f2565b600082815260056020908152604091829020825160e0810184528154815260018201549281019290925260028101546001600160a01b0390811693830193909352600380820154938416606084015265ffffffffffff600160a01b850481166080850152600160d01b90940490931660a083015260048101549192909160c084019160ff9091169081111561043f57fe5b600381111561044a57fe5b905250905060018160c00151600381111561046157fe5b146104a4576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642053746174757360901b604482015290519081900360640190fd5b604081015181516001546104c3926001600160a01b0390911691610f0d565b600360c0820181815265ffffffffffff42811660a085019081526000868152600560209081526040918290208751815590870151600180830191909155918701516002820180546001600160a01b039283166001600160a01b0319918216179091556060890151838901805460808c015197518916600160d01b026001600160d01b0398909916600160a01b0265ffffffffffff60a01b1993909516931692909217169190911793909316939093179091559151600482018054869593949293919260ff1990911691849081111561059757fe5b0217905550506040805184815290517f4c0ce36dbc32c3fca3be492b689acde5f6beb08a810fd14b5d636c4483180b9592509081900360200190a150506000805460ff60a01b1916600160a01b179055565b60045481565b6105f7610f09565b6000546001600160a01b03908116911614610647576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b62989680811115610692576040805162461bcd60e51b815260206004820152601060248201526f13585e0819995948195e18d95959195960821b604482015290519081900360640190fd5b600655565b61069f610f09565b6000546001600160a01b039081169116146106ef576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60065481565b60056020526000908152604090208054600182015460028301546003840154600490940154929391926001600160a01b03918216929182169165ffffffffffff600160a01b8204811692600160d01b909204169060ff1687565b6000546001600160a01b031690565b6107b0610f09565b6000546001600160a01b03908116911614610800576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b600054600160a01b900460ff1661085e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff60a01b1916905560045481106108b6576040805162461bcd60e51b8152602060048201526012602482015271496e646578206f7574206f662072616e676560701b604482015290519081900360640190fd5b6108be6112f2565b600082815260056020908152604091829020825160e0810184528154815260018201549281019290925260028101546001600160a01b0390811693830193909352600380820154938416606084015265ffffffffffff600160a01b850481166080850152600160d01b90940490931660a083015260048101549192909160c084019160ff9091169081111561094f57fe5b600381111561095a57fe5b905250905060018160c00151600381111561097157fe5b146109b4576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642053746174757360901b604482015290519081900360640190fd5b60025481516001546109d4926001600160a01b0391821692911690610f0d565b600260c082018181524265ffffffffffff90811660a0850190815260008681526005602090815260409182902087518155908701516001808301919091559187015195810180546001600160a01b03199081166001600160a01b039889161790915560608801516003808401805460808c015197519416929099169190911765ffffffffffff60a01b1916600160a01b95871695909502949094176001600160d01b0316600160d01b9190951602939093179094559151600482018054869593949293919260ff1990911691908490811115610aac57fe5b0217905550506040805184815290517fe350aca1a7566bd848d09a13cf3c67ae083d6309788ec1f680ce64e5b8b9ff6392509081900360200190a150506000805460ff60a01b1916600160a01b179055565b6001546001600160a01b031681565b600054600160a01b900460ff16610b6b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff60a01b1916905580610bbf576040805162461bcd60e51b81526020600482015260126024820152710416d6f756e742063616e6e6f7420626520360741b604482015290519081900360640190fd5b600354811115610c08576040805162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b604482015290519081900360640190fd5b6001600160a01b038216610c59576040805162461bcd60e51b8152602060048201526013602482015272496e76616c696420425343206164647265737360681b604482015290519081900360640190fd5b600154610c71906001600160a01b0316333084610f64565b6040805160e0810182528281526006546020808301918252338385019081526001600160a01b03878116606086019081524265ffffffffffff90811660808801908152600060a08901818152600160c08b018181526004805485526005909a529b9092208a51815598518983015595516002890180549187166001600160a01b031992831617905593516003808a018054945198518616600160d01b026001600160d01b0399909616600160a01b0265ffffffffffff60a01b1993909816949096169390931716949094179490941617905594519183018054949593949293909260ff1916918490811115610d6257fe5b021790555050600454600654604080519283526020830185905282810191909152426060830152516001600160a01b038516925033917f48a28eda32b356e8aa1dd2211aa082290af9a40b8ea544c83d96aa853c61aa94919081900360800190a3600454610dd1906001610fc4565b600455600354610de19082611025565b60035550506000805460ff60a01b1916600160a01b179055565b6298968081565b610e0a610f09565b6000546001600160a01b03908116911614610e5a576040805162461bcd60e51b81526020600482018190526024820152600080516020611353833981519152604482015290519081900360640190fd5b6001600160a01b038116610e9f5760405162461bcd60e51b815260040180806020018281038252602681526020018061132d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f5f908490611067565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610fbe908590611067565b50505050565b60008282018381101561101e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061101e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061121f565b611079826001600160a01b03166112b6565b6110ca576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106111085780518252601f1990920191602091820191016110e9565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461116a576040519150601f19603f3d011682016040523d82523d6000602084013e61116f565b606091505b5091509150816111c6576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610fbe578080602001905160208110156111e257600080fd5b5051610fbe5760405162461bcd60e51b815260040180806020018281038252602a815260200180611373602a913960400191505060405180910390fd5b600081848411156112ae5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561127357818101518382015260200161125b565b50505050905090810190601f1680156112a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906112ea57508115155b949350505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a081018290529060c08201529056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220520fdd42a620969e28a10f374516999b826a9427739cb236a97ece41c8ab3f0a64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008a6f3bf52a26a21531514e23016eeae8ba7e701800000000000000000000000019b292c1a84379aab41564283e7f75bf20e45f91
-----Decoded View---------------
Arg [0] : mxx (address): 0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018
Arg [1] : burnAddress (address): 0x19B292c1a84379Aab41564283e7f75bF20e45f91
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008a6f3bf52a26a21531514e23016eeae8ba7e7018
Arg [1] : 00000000000000000000000019b292c1a84379aab41564283e7f75bf20e45f91
Deployed Bytecode Sourcemap
32392:5444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34197:30;;;:::i;:::-;;;;;;;;;;;;;;;;37019:521;;;;;;;;;;;;;;;;-1:-1:-1;37019:521:0;;:::i;:::-;;34334:20;;;:::i;37689:144::-;;;;;;;;;;;;;;;;-1:-1:-1;37689:144:0;;:::i;2946:148::-;;;:::i;34615:34::-;;;:::i;34435:59::-;;;;;;;;;;;;;;;;-1:-1:-1;34435:59:0;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;34435:59:0;;;;;;-1:-1:-1;;;;;34435:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2304:79;;;:::i;:::-;;;;-1:-1:-1;;;;;2304:79:0;;;;;;;;;;;;;;36263:560;;;;;;;;;;;;;;;;-1:-1:-1;36263:560:0;;:::i;33801:26::-;;;:::i;35170:906::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35170:906:0;;;;;;;;:::i;34711:49::-;;;:::i;3249:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3249:244:0;-1:-1:-1;;;;;3249:244:0;;:::i;33916:27::-;;;:::i;34197:30::-;;;;:::o;37019:521::-;2526:12;:10;:12::i;:::-;2516:6;;-1:-1:-1;;;;;2516:6:0;;;:22;;;2508:67;;;;;-1:-1:-1;;;2508:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2508:67:0;;;;;;;;;;;;;;;5407:11:::1;::::0;-1:-1:-1;;;5407:11:0;::::1;;;5399:55;;;::::0;;-1:-1:-1;;;5399:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;5546:5;5532:19:::0;;-1:-1:-1;;;;5532:19:0::1;::::0;;37115:5:::2;::::0;37106:14;::::2;37098:45;;;::::0;;-1:-1:-1;;;37098:45:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;37098:45:0;;;;;;;;;;;;;::::2;;37156:32;;:::i;:::-;37191:22;::::0;;;:14:::2;:22;::::0;;;;;;;;37156:57;;::::2;::::0;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;;;::::2;::::0;;;;::::2;::::0;::::2;::::0;-1:-1:-1;;;;;37156:57:0;;::::2;::::0;;;;;;;::::2;::::0;;::::2;::::0;;;::::2;::::0;;;;::::2;-1:-1:-1::0;;;37156:57:0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;37156:57:0;;::::2;::::0;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;37191:22;;37156:57;;;;::::2;::::0;;::::2;::::0;;::::2;;;;;;;;;;;;;;::::0;;-1:-1:-1;37156:57:0;-1:-1:-1;37250:10:0::2;37232:7;:14;;;:28;;;;;;;;;37224:55;;;::::0;;-1:-1:-1;;;37224:55:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;37224:55:0;;;;;;;;;;;;;::::2;;37324:19;::::0;::::2;::::0;37345:14;;37298:11:::2;::::0;37292:68:::2;::::0;-1:-1:-1;;;;;37298:11:0;;::::2;::::0;37292:31:::2;:68::i;:::-;37390:15;37373:14;::::0;::::2;:32:::0;;;37416:29:::2;37441:3;37416:29:::0;::::2;:15;::::0;::::2;:29:::0;;;-1:-1:-1;37456:22:0;;;:14:::2;-1:-1:-1::0;37456:22:0;;;;;;;;:32;;;;;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;::::2;::::0;;-1:-1:-1;;;;;37456:32:0;;::::2;-1:-1:-1::0;;;;;;37456:32:0;;::::2;;::::0;;;::::2;::::0;::::2;::::0;;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;::::2;-1:-1:-1::0;;;37456:32:0::2;-1:-1:-1::0;;;;;37456:32:0;;;::::2;-1:-1:-1::0;;;37456:32:0::2;-1:-1:-1::0;;;;37456:32:0;;;::::2;::::0;::::2;::::0;;;::::2;;::::0;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;37373:14;;37456:22;;:32;;;;-1:-1:-1;;37456:32:0;;::::2;::::0;;;;::::2;;;;;;;;::::0;;-1:-1:-1;;37506:26:0::2;::::0;;;;;;;::::2;::::0;-1:-1:-1;37506:26:0;;;;::::2;::::0;;::::2;-1:-1:-1::0;;5712:11:0::1;:18:::0;;-1:-1:-1;;;;5712:18:0::1;-1:-1:-1::0;;;5712:18:0::1;::::0;;37019:521::o;34334:20::-;;;;:::o;37689:144::-;2526:12;:10;:12::i;:::-;2516:6;;-1:-1:-1;;;;;2516:6:0;;;:22;;;2508:67;;;;;-1:-1:-1;;;2508:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2508:67:0;;;;;;;;;;;;;;;34750:10:::1;37759:4;:20;;37751:49;;;::::0;;-1:-1:-1;;;37751:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;37751:49:0;;;;;;;;;;;;;::::1;;37811:7;:14:::0;37689:144::o;2946:148::-;2526:12;:10;:12::i;:::-;2516:6;;-1:-1:-1;;;;;2516:6:0;;;:22;;;2508:67;;;;;-1:-1:-1;;;2508:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2508:67:0;;;;;;;;;;;;;;;3053:1:::1;3037:6:::0;;3016:40:::1;::::0;-1:-1:-1;;;;;3037:6:0;;::::1;::::0;3016:40:::1;::::0;3053:1;;3016:40:::1;3084:1;3067:19:::0;;-1:-1:-1;;;;;;3067:19:0::1;::::0;;2946:148::o;34615:34::-;;;;:::o;34435:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34435:59:0;;;;;;;;;-1:-1:-1;;;34435:59:0;;;;;-1:-1:-1;;;34435:59:0;;;;;;;;:::o;2304:79::-;2342:7;2369:6;-1:-1:-1;;;;;2369:6:0;2304:79;:::o;36263:560::-;2526:12;:10;:12::i;:::-;2516:6;;-1:-1:-1;;;;;2516:6:0;;;:22;;;2508:67;;;;;-1:-1:-1;;;2508:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2508:67:0;;;;;;;;;;;;;;;5407:11:::1;::::0;-1:-1:-1;;;5407:11:0;::::1;;;5399:55;;;::::0;;-1:-1:-1;;;5399:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;5546:5;5532:19:::0;;-1:-1:-1;;;;5532:19:0::1;::::0;;36403:5:::2;::::0;36394:14;::::2;36386:45;;;::::0;;-1:-1:-1;;;36386:45:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;36386:45:0;;;;;;;;;;;;;::::2;;36444:32;;:::i;:::-;36479:22;::::0;;;:14:::2;:22;::::0;;;;;;;;36444:57;;::::2;::::0;::::2;::::0;;;;;;::::2;::::0;::::2;::::0;;;::::2;::::0;;;;::::2;::::0;::::2;::::0;-1:-1:-1;;;;;36444:57:0;;::::2;::::0;;;;;;;::::2;::::0;;::::2;::::0;;;::::2;::::0;;;;::::2;-1:-1:-1::0;;;36444:57:0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;36444:57:0;;::::2;::::0;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;36479:22;;36444:57;;;;::::2;::::0;;::::2;::::0;;::::2;;;;;;;;;;;;;;::::0;;-1:-1:-1;36444:57:0;-1:-1:-1;36538:10:0::2;36520:7;:14;;;:28;;;;;;;;;36512:55;;;::::0;;-1:-1:-1;;;36512:55:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;36512:55:0;;;;;;;;;;;;;::::2;;36612:12;::::0;36626:14;;36612:12;36586:11;36580:61:::2;::::0;-1:-1:-1;;;;;36586:11:0;;::::2;::::0;36612:12;::::2;::::0;36580:31:::2;:61::i;:::-;36671:16;36654:14;::::0;::::2;:33:::0;;;36723:3:::2;36698:29;::::0;;::::2;:15;::::0;::::2;:29:::0;;;-1:-1:-1;36738:22:0;;;:14:::2;-1:-1:-1::0;36738:22:0;;;;;;;;:32;;;;;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;;;;36738:32:0;;::::2;-1:-1:-1::0;;;;;36738:32:0;;::::2;;::::0;;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;::::2;::::0;;;::::2;-1:-1:-1::0;;;;36738:32:0::2;-1:-1:-1::0;;;36738:32:0;;::::2;::::0;;;::::2;::::0;;;::::2;-1:-1:-1::0;;;;;36738:32:0::2;-1:-1:-1::0;;;36738:32:0;;;::::2;;::::0;;;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;36654:14;;36738:22;;:32;;;;-1:-1:-1;;36738:32:0;;::::2;::::0;;;;;::::2;;;;;;;;::::0;;-1:-1:-1;;36788:27:0::2;::::0;;;;;;;::::2;::::0;-1:-1:-1;36788:27:0;;;;::::2;::::0;;::::2;-1:-1:-1::0;;5712:11:0::1;:18:::0;;-1:-1:-1;;;;5712:18:0::1;-1:-1:-1::0;;;5712:18:0::1;::::0;;36263:560::o;33801:26::-;;;-1:-1:-1;;;;;33801:26:0;;:::o;35170:906::-;5407:11;;-1:-1:-1;;;5407:11:0;;;;5399:55;;;;;-1:-1:-1;;;5399:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5546:5;5532:19;;-1:-1:-1;;;;5532:19:0;;;35306:12;35298:43:::1;;;::::0;;-1:-1:-1;;;35298:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35298:43:0;;;;;;;;;;;;;::::1;;35371:15;;35360:7;:26;;35352:54;;;::::0;;-1:-1:-1;;;35352:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35352:54:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;35425:27:0;::::1;35417:59;;;::::0;;-1:-1:-1;;;35417:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35417:59:0;;;;;;;;;;;;;::::1;;35495:11;::::0;35489:71:::1;::::0;-1:-1:-1;;;;;35495:11:0::1;35525:10;35545:4;35552:7:::0;35489:35:::1;:71::i;:::-;35597:192;::::0;;::::1;::::0;::::1;::::0;;;;;35651:7:::1;::::0;35597:192:::1;::::0;;::::1;::::0;;;35673:10:::1;35597:192:::0;;;;;;-1:-1:-1;;;;;35597:192:0;;::::1;::::0;;;;;;35733:3:::1;35597:192;::::0;;::::1;::::0;;;;;;-1:-1:-1;35597:192:0;;;;;;35768:10:::1;35597:192:::0;;;;;;35588:5:::1;::::0;;35573:21;;:14:::1;:21:::0;;;;;;;:216;;;;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;::::1;-1:-1:-1::0;;;;;;35573:216:0;;::::1;;::::0;;;;::::1;::::0;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;;35573:216:0::1;-1:-1:-1::0;;;;;35573:216:0;;;::::1;-1:-1:-1::0;;;35573:216:0::1;-1:-1:-1::0;;;;35573:216:0;;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;;::::0;;;;;;::::1;::::0;;35597:192;;35573:21;;:216;;;;-1:-1:-1;;35573:216:0::1;::::0;;;;::::1;;;;;;;;::::0;;-1:-1:-1;;35835:5:0::1;::::0;35930:7:::1;::::0;35807:171:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;35952:15:::1;35807:171:::0;;;;;-1:-1:-1;;;;;35807:171:0;::::1;::::0;-1:-1:-1;35855:10:0::1;::::0;35807:171:::1;::::0;;;;;;;;::::1;35999:5;::::0;:12:::1;::::0;36009:1:::1;35999:9;:12::i;:::-;35991:5;:20:::0;36040:15:::1;::::0;:28:::1;::::0;36060:7;36040:19:::1;:28::i;:::-;36022:15;:46:::0;-1:-1:-1;;5712:11:0;:18;;-1:-1:-1;;;;5712:18:0;-1:-1:-1;;;5712:18:0;;;35170:906::o;34711:49::-;34750:10;34711:49;:::o;3249:244::-;2526:12;:10;:12::i;:::-;2516:6;;-1:-1:-1;;;;;2516:6:0;;;:22;;;2508:67;;;;;-1:-1:-1;;;2508:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2508:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3338:22:0;::::1;3330:73;;;;-1:-1:-1::0;;;3330:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3440:6;::::0;;3419:38:::1;::::0;-1:-1:-1;;;;;3419:38:0;;::::1;::::0;3440:6;::::1;::::0;3419:38:::1;::::0;::::1;3468:6;:17:::0;;-1:-1:-1;;;;;;3468:17:0::1;-1:-1:-1::0;;;;;3468:17:0;;;::::1;::::0;;;::::1;::::0;;3249:244::o;33916:27::-;;;-1:-1:-1;;;;;33916:27:0;;:::o;852:106::-;940:10;852:106;:::o;28338:177::-;28448:58;;;-1:-1:-1;;;;;28448:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28448:58:0;-1:-1:-1;;;28448:58:0;;;28421:86;;28441:5;;28421:19;:86::i;:::-;28338:177;;;:::o;28523:205::-;28651:68;;;-1:-1:-1;;;;;28651:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28651:68:0;-1:-1:-1;;;28651:68:0;;;28624:96;;28644:5;;28624:19;:96::i;:::-;28523:205;;;;:::o;9473:181::-;9531:7;9563:5;;;9587:6;;;;9579:46;;;;;-1:-1:-1;;;9579:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9645:1;9473:181;-1:-1:-1;;;9473:181:0:o;9929:136::-;9987:7;10014:43;10018:1;10021;10014:43;;;;;;;;;;;;;;;;;:3;:43::i;30382:1115::-;30987:27;30995:5;-1:-1:-1;;;;;30987:25:0;;:27::i;:::-;30979:71;;;;;-1:-1:-1;;;30979:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31124:12;31138:23;31173:5;-1:-1:-1;;;;;31165:19:0;31185:4;31165:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31165:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31123:67;;;;31209:7;31201:52;;;;;-1:-1:-1;;;31201:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31270:17;;:21;31266:224;;31412:10;31401:30;;;;;;;;;;;;;;;-1:-1:-1;31401:30:0;31393:85;;;;-1:-1:-1;;;31393:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10360:192;10446:7;10482:12;10474:6;;;;10466:29;;;;-1:-1:-1;;;10466:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10518:5:0;;;10360:192::o;14714:619::-;14774:4;15242:20;;15085:66;15282:23;;;;;;:42;;-1:-1:-1;15309:15:0;;;15282:42;15274:51;14714:619;-1:-1:-1;;;;14714:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://520fdd42a620969e28a10f374516999b826a9427739cb236a97ece41c8ab3f0a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.