Overview
ETH Balance
0 ETH
ETH Value
$0.00Token Holdings
Latest 25 from a total of 9,254 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 251101223 | 5 days ago | IN | 0 ETH | 0.00000053 | ||||
Approve | 251057134 | 5 days ago | IN | 0 ETH | 0.00000055 | ||||
Approve | 251006287 | 6 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 251000857 | 6 days ago | IN | 0 ETH | 0.00000063 | ||||
Approve | 250950337 | 6 days ago | IN | 0 ETH | 0.00000056 | ||||
Approve | 250947180 | 6 days ago | IN | 0 ETH | 0.00000051 | ||||
Approve | 250880372 | 6 days ago | IN | 0 ETH | 0.00000051 | ||||
Approve | 250878170 | 6 days ago | IN | 0 ETH | 0.00000053 | ||||
Approve | 250810583 | 6 days ago | IN | 0 ETH | 0.00000483 | ||||
Approve | 250774954 | 6 days ago | IN | 0 ETH | 0.00000285 | ||||
Approve | 250740210 | 6 days ago | IN | 0 ETH | 0.00000411 | ||||
Approve | 250653244 | 7 days ago | IN | 0 ETH | 0.00000056 | ||||
Approve | 250491733 | 7 days ago | IN | 0 ETH | 0.00000056 | ||||
Approve | 250425551 | 7 days ago | IN | 0 ETH | 0.00000055 | ||||
Approve | 250400216 | 7 days ago | IN | 0 ETH | 0.00000066 | ||||
Transfer | 250392729 | 7 days ago | IN | 0 ETH | 0.00000068 | ||||
Approve | 250127508 | 8 days ago | IN | 0 ETH | 0.00000095 | ||||
Approve | 249962572 | 9 days ago | IN | 0 ETH | 0.00000054 | ||||
Approve | 249895431 | 9 days ago | IN | 0 ETH | 0.00000049 | ||||
Approve | 249890848 | 9 days ago | IN | 0 ETH | 0.00000049 | ||||
Transfer | 249797145 | 9 days ago | IN | 0 ETH | 0.00000053 | ||||
Approve | 249743938 | 9 days ago | IN | 0 ETH | 0.00000054 | ||||
Approve | 249585287 | 10 days ago | IN | 0 ETH | 0.00000029 | ||||
Approve | 249008092 | 11 days ago | IN | 0 ETH | 0.00000053 | ||||
Approve | 247610642 | 16 days ago | IN | 0 ETH | 0.00000176 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
72080924 | 542 days ago | 0 ETH | ||||
72080924 | 542 days ago | 0 ETH | ||||
72079215 | 542 days ago | 0 ETH | ||||
72078697 | 542 days ago | 0 ETH | ||||
72078697 | 542 days ago | 0 ETH | ||||
72077288 | 542 days ago | 0 ETH | ||||
72077288 | 542 days ago | 0 ETH | ||||
72077288 | 542 days ago | 0 ETH | ||||
72077288 | 542 days ago | 0 ETH | ||||
72077175 | 542 days ago | 0 ETH | ||||
72077175 | 542 days ago | 0 ETH | ||||
72070522 | 542 days ago | 0 ETH | ||||
72070522 | 542 days ago | 0 ETH | ||||
72070158 | 542 days ago | 0 ETH | ||||
72069971 | 542 days ago | 0 ETH | ||||
72069971 | 542 days ago | 0 ETH | ||||
72069971 | 542 days ago | 0 ETH | ||||
72069971 | 542 days ago | 0 ETH | ||||
72069971 | 542 days ago | 0 ETH | ||||
72069402 | 542 days ago | 0 ETH | ||||
72069402 | 542 days ago | 0 ETH | ||||
72069402 | 542 days ago | 0 ETH | ||||
72069402 | 542 days ago | 0 ETH | ||||
72069402 | 542 days ago | 0 ETH | ||||
72065228 | 542 days ago | 0 ETH |
Loading...
Loading
Contract Name:
UTILTKN
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2022-08-24 */ // Sources flattened with hardhat v2.9.3 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, 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/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + 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) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File contracts/tokens/YToken.sol pragma solidity 0.8.4; abstract contract YToken is ERC20Burnable { constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} function initialGenesisSupply() internal virtual view returns (uint256); } // File contracts/tokens/deployedTkn/UTILTKN.sol pragma solidity 0.8.4; contract UTILTKN is YToken { uint256 public constant INITIAL_GENESIS_SUPPLY = 40 ether; address public minter; constructor( string memory _name, string memory _symbol, address _reserve ) YToken(_name, _symbol) { _mint(msg.sender, INITIAL_GENESIS_SUPPLY); minter = _reserve; } // ===== OVERRIDEN ============= function initialGenesisSupply() internal pure override returns (uint256) { return INITIAL_GENESIS_SUPPLY; } modifier onlyMinter () { require (msg.sender == minter, "UTILTKN::onlyMinter: only minter can call this"); _; } function mint (address _to, uint256 _amount) external onlyMinter { _mint(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_reserve","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":"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":"INITIAL_GENESIS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001094380380620010948339810160408190526200003491620002f0565b8282818181600390805190602001906200005092919062000197565b5080516200006690600490602084019062000197565b5050505050620000863368022b1c8c1227a00000620000af60201b60201c565b600580546001600160a01b0319166001600160a01b039290921691909117905550620003f19050565b6001600160a01b0382166200010a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200011e919062000379565b90915550506001600160a01b038216600090815260208190526040812080548392906200014d90849062000379565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001a5906200039e565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b600082601f8301126200024e578081fd5b81516001600160401b03808211156200026b576200026b620003db565b604051601f8301601f19908116603f01168101908282118183101715620002965762000296620003db565b81604052838152602092508683858801011115620002b2578485fd5b8491505b83821015620002d55785820183015181830184015290820190620002b6565b83821115620002e657848385830101525b9695505050505050565b60008060006060848603121562000305578283fd5b83516001600160401b03808211156200031c578485fd5b6200032a878388016200023d565b9450602086015191508082111562000340578384fd5b506200034f868287016200023d565b604086015190935090506001600160a01b03811681146200036e578182fd5b809150509250925092565b600082198211156200039957634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620003b357607f821691505b60208210811415620003d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610c9380620004016000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806342966c68116100975780639f56f1ca116100665780639f56f1ca14610224578063a457c2d714610234578063a9059cbb14610247578063dd62ed3e1461025a57600080fd5b806342966c68146101cd57806370a08231146101e057806379cc67901461020957806395d89b411461021c57600080fd5b806323b872dd116100d357806323b872dd14610183578063313ce5671461019657806339509351146101a557806340c10f19146101b857600080fd5b806306fdde03146101055780630754617214610123578063095ea7b31461014e57806318160ddd14610171575b600080fd5b61010d610293565b60405161011a9190610b8a565b60405180910390f35b600554610136906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b61016161015c366004610b49565b610325565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610161610191366004610b0e565b61033d565b6040516012815260200161011a565b6101616101b3366004610b49565b610361565b6101cb6101c6366004610b49565b6103a0565b005b6101cb6101db366004610b72565b610424565b6101756101ee366004610abb565b6001600160a01b031660009081526020819052604090205490565b6101cb610217366004610b49565b610431565b61010d610446565b61017568022b1c8c1227a0000081565b610161610242366004610b49565b610455565b610161610255366004610b49565b6104e7565b610175610268366004610adc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102a290610c0c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c0c565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b6000336103338185856104f5565b5060019392505050565b60003361034b85828561061a565b6103568585856106ac565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610333908290869061039b908790610bdd565b6104f5565b6005546001600160a01b031633146104165760405162461bcd60e51b815260206004820152602e60248201527f5554494c544b4e3a3a6f6e6c794d696e7465723a206f6e6c79206d696e74657260448201526d2063616e2063616c6c207468697360901b60648201526084015b60405180910390fd5b610420828261087a565b5050565b61042e3382610959565b50565b61043c82338361061a565b6104208282610959565b6060600480546102a290610c0c565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161040d565b61035682868684036104f5565b6000336103338185856106ac565b6001600160a01b0383166105575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161040d565b6001600160a01b0382166105b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161040d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146106a657818110156106995760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040d565b6106a684848484036104f5565b50505050565b6001600160a01b0383166107105760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161040d565b6001600160a01b0382166107725760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161040d565b6001600160a01b038316600090815260208190526040902054818110156107ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161040d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610821908490610bdd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086d91815260200190565b60405180910390a36106a6565b6001600160a01b0382166108d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161040d565b80600260008282546108e29190610bdd565b90915550506001600160a01b0382166000908152602081905260408120805483929061090f908490610bdd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161040d565b6001600160a01b03821660009081526020819052604090205481811015610a2d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161040d565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a5c908490610bf5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161060d565b80356001600160a01b0381168114610ab657600080fd5b919050565b600060208284031215610acc578081fd5b610ad582610a9f565b9392505050565b60008060408385031215610aee578081fd5b610af783610a9f565b9150610b0560208401610a9f565b90509250929050565b600080600060608486031215610b22578081fd5b610b2b84610a9f565b9250610b3960208501610a9f565b9150604084013590509250925092565b60008060408385031215610b5b578182fd5b610b6483610a9f565b946020939093013593505050565b600060208284031215610b83578081fd5b5035919050565b6000602080835283518082850152825b81811015610bb657858101830151858201604001528201610b9a565b81811115610bc75783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610bf057610bf0610c47565b500190565b600082821015610c0757610c07610c47565b500390565b600181811c90821680610c2057607f821691505b60208210811415610c4157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206b082d286211ec3fbe9c77e3b7522c10f4e64d06f2d7754054c730a9f2cc5e9564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000c7b3cc8320c716d60e723836da2064ed5754e03800000000000000000000000000000000000000000000000000000000000000064c6971756964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c49514400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806342966c68116100975780639f56f1ca116100665780639f56f1ca14610224578063a457c2d714610234578063a9059cbb14610247578063dd62ed3e1461025a57600080fd5b806342966c68146101cd57806370a08231146101e057806379cc67901461020957806395d89b411461021c57600080fd5b806323b872dd116100d357806323b872dd14610183578063313ce5671461019657806339509351146101a557806340c10f19146101b857600080fd5b806306fdde03146101055780630754617214610123578063095ea7b31461014e57806318160ddd14610171575b600080fd5b61010d610293565b60405161011a9190610b8a565b60405180910390f35b600554610136906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b61016161015c366004610b49565b610325565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610161610191366004610b0e565b61033d565b6040516012815260200161011a565b6101616101b3366004610b49565b610361565b6101cb6101c6366004610b49565b6103a0565b005b6101cb6101db366004610b72565b610424565b6101756101ee366004610abb565b6001600160a01b031660009081526020819052604090205490565b6101cb610217366004610b49565b610431565b61010d610446565b61017568022b1c8c1227a0000081565b610161610242366004610b49565b610455565b610161610255366004610b49565b6104e7565b610175610268366004610adc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102a290610c0c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c0c565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b6000336103338185856104f5565b5060019392505050565b60003361034b85828561061a565b6103568585856106ac565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610333908290869061039b908790610bdd565b6104f5565b6005546001600160a01b031633146104165760405162461bcd60e51b815260206004820152602e60248201527f5554494c544b4e3a3a6f6e6c794d696e7465723a206f6e6c79206d696e74657260448201526d2063616e2063616c6c207468697360901b60648201526084015b60405180910390fd5b610420828261087a565b5050565b61042e3382610959565b50565b61043c82338361061a565b6104208282610959565b6060600480546102a290610c0c565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161040d565b61035682868684036104f5565b6000336103338185856106ac565b6001600160a01b0383166105575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161040d565b6001600160a01b0382166105b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161040d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146106a657818110156106995760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040d565b6106a684848484036104f5565b50505050565b6001600160a01b0383166107105760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161040d565b6001600160a01b0382166107725760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161040d565b6001600160a01b038316600090815260208190526040902054818110156107ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161040d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610821908490610bdd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086d91815260200190565b60405180910390a36106a6565b6001600160a01b0382166108d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161040d565b80600260008282546108e29190610bdd565b90915550506001600160a01b0382166000908152602081905260408120805483929061090f908490610bdd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161040d565b6001600160a01b03821660009081526020819052604090205481811015610a2d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161040d565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a5c908490610bf5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161060d565b80356001600160a01b0381168114610ab657600080fd5b919050565b600060208284031215610acc578081fd5b610ad582610a9f565b9392505050565b60008060408385031215610aee578081fd5b610af783610a9f565b9150610b0560208401610a9f565b90509250929050565b600080600060608486031215610b22578081fd5b610b2b84610a9f565b9250610b3960208501610a9f565b9150604084013590509250925092565b60008060408385031215610b5b578182fd5b610b6483610a9f565b946020939093013593505050565b600060208284031215610b83578081fd5b5035919050565b6000602080835283518082850152825b81811015610bb657858101830151858201604001528201610b9a565b81811115610bc75783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610bf057610bf0610c47565b500190565b600082821015610c0757610c07610c47565b500390565b600181811c90821680610c2057607f821691505b60208210811415610c4157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206b082d286211ec3fbe9c77e3b7522c10f4e64d06f2d7754054c730a9f2cc5e9564736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000c7b3cc8320c716d60e723836da2064ed5754e03800000000000000000000000000000000000000000000000000000000000000064c6971756964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c49514400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Liquid
Arg [1] : _symbol (string): LIQD
Arg [2] : _reserve (address): 0xc7B3Cc8320C716D60e723836dA2064ED5754E038
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000c7b3cc8320c716d60e723836da2064ed5754e038
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4c69717569640000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4c49514400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
19110:775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19209:21;;;;;-1:-1:-1;;;;;19209:21:0;;;;;;-1:-1:-1;;;;;1639:32:1;;;1621:51;;1609:2;1594:18;19209:21:0;1576:102:1;9125:201:0;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;9125:201:0;1778:92:1;7894:108:0;7982:12;;7894:108;;;6998:25:1;;;6986:2;6971:18;7894:108:0;6953:76:1;9906:295:0;;;;;;:::i;:::-;;:::i;7736:93::-;;;7819:2;7176:36:1;;7164:2;7149:18;7736:93:0;7131:87:1;10610:240:0;;;;;;:::i;:::-;;:::i;19777:103::-;;;;;;:::i;:::-;;:::i;:::-;;18158:91;;;;;;:::i;:::-;;:::i;8065:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8166:18:0;8139:7;8166:18;;;;;;;;;;;;8065:127;18568:164;;;;;;:::i;:::-;;:::i;6993:104::-;;;:::i;19144:57::-;;19193:8;19144:57;;11353:438;;;;;;:::i;:::-;;:::i;8398:193::-;;;;;;:::i;:::-;;:::i;8654:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8770:18:0;;;8743:7;8770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8654:151;6774:100;6828:13;6861:5;6854:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774:100;:::o;9125:201::-;9208:4;4488:10;9264:32;4488:10;9280:7;9289:6;9264:8;:32::i;:::-;-1:-1:-1;9314:4:0;;9125:201;-1:-1:-1;;;9125:201:0:o;9906:295::-;10037:4;4488:10;10095:38;10111:4;4488:10;10126:6;10095:15;:38::i;:::-;10144:27;10154:4;10160:2;10164:6;10144:9;:27::i;:::-;-1:-1:-1;10189:4:0;;9906:295;-1:-1:-1;;;;9906:295:0:o;10610:240::-;4488:10;10698:4;10779:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10779:27:0;;;;;;;;;;10698:4;;4488:10;10754:66;;4488:10;;10779:27;;:40;;10809:10;;10779:40;:::i;:::-;10754:8;:66::i;19777:103::-;19692:6;;-1:-1:-1;;;;;19692:6:0;19678:10;:20;19669:80;;;;-1:-1:-1;;;19669:80:0;;4660:2:1;19669:80:0;;;4642:21:1;4699:2;4679:18;;;4672:30;4738:34;4718:18;;;4711:62;-1:-1:-1;;;4789:18:1;;;4782:44;4843:19;;19669:80:0;;;;;;;;;19853:19:::1;19859:3;19864:7;19853:5;:19::i;:::-;19777:103:::0;;:::o;18158:91::-;18214:27;4488:10;18234:6;18214:5;:27::i;:::-;18158:91;:::o;18568:164::-;18645:46;18661:7;4488:10;18684:6;18645:15;:46::i;:::-;18702:22;18708:7;18717:6;18702:5;:22::i;6993:104::-;7049:13;7082:7;7075:14;;;;;:::i;11353:438::-;4488:10;11446:4;11529:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11529:27:0;;;;;;;;;;11446:4;;4488:10;11575:35;;;;11567:85;;;;-1:-1:-1;;;11567:85:0;;6288:2:1;11567:85:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:35;6462:19;;11567:85:0;6260:227:1;11567:85:0;11688:60;11697:5;11704:7;11732:15;11713:16;:34;11688:8;:60::i;8398:193::-;8477:4;4488:10;8533:28;4488:10;8550:2;8554:6;8533:9;:28::i;14989:380::-;-1:-1:-1;;;;;15125:19:0;;15117:68;;;;-1:-1:-1;;;15117:68:0;;5883:2:1;15117:68:0;;;5865:21:1;5922:2;5902:18;;;5895:30;5961:34;5941:18;;;5934:62;-1:-1:-1;;;6012:18:1;;;6005:34;6056:19;;15117:68:0;5855:226:1;15117:68:0;-1:-1:-1;;;;;15204:21:0;;15196:68;;;;-1:-1:-1;;;15196:68:0;;3492:2:1;15196:68:0;;;3474:21:1;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:1;;;3614:32;3663:19;;15196:68:0;3464:224:1;15196:68:0;-1:-1:-1;;;;;15277:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15329:32;;6998:25:1;;;15329:32:0;;6971:18:1;15329:32:0;;;;;;;;14989:380;;;:::o;15656:453::-;-1:-1:-1;;;;;8770:18:0;;;15791:24;8770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15858:37:0;;15854:248;;15940:6;15920:16;:26;;15912:68;;;;-1:-1:-1;;;15912:68:0;;3895:2:1;15912:68:0;;;3877:21:1;3934:2;3914:18;;;3907:30;3973:31;3953:18;;;3946:59;4022:18;;15912:68:0;3867:179:1;15912:68:0;16024:51;16033:5;16040:7;16068:6;16049:16;:25;16024:8;:51::i;:::-;15656:453;;;;:::o;12270:671::-;-1:-1:-1;;;;;12401:18:0;;12393:68;;;;-1:-1:-1;;;12393:68:0;;5477:2:1;12393:68:0;;;5459:21:1;5516:2;5496:18;;;5489:30;5555:34;5535:18;;;5528:62;-1:-1:-1;;;5606:18:1;;;5599:35;5651:19;;12393:68:0;5449:227:1;12393:68:0;-1:-1:-1;;;;;12480:16:0;;12472:64;;;;-1:-1:-1;;;12472:64:0;;2685:2:1;12472:64:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:1;;;2807:33;2857:19;;12472:64:0;2657:225:1;12472:64:0;-1:-1:-1;;;;;12622:15:0;;12600:19;12622:15;;;;;;;;;;;12656:21;;;;12648:72;;;;-1:-1:-1;;;12648:72:0;;4253:2:1;12648:72:0;;;4235:21:1;4292:2;4272:18;;;4265:30;4331:34;4311:18;;;4304:62;-1:-1:-1;;;4382:18:1;;;4375:36;4428:19;;12648:72:0;4225:228:1;12648:72:0;-1:-1:-1;;;;;12756:15:0;;;:9;:15;;;;;;;;;;;12774:20;;;12756:38;;12816:13;;;;;;;;:23;;12788:6;;12756:9;12816:23;;12788:6;;12816:23;:::i;:::-;;;;;;;;12872:2;-1:-1:-1;;;;;12857:26:0;12866:4;-1:-1:-1;;;;;12857:26:0;;12876:6;12857:26;;;;6998:25:1;;6986:2;6971:18;;6953:76;12857:26:0;;;;;;;;12896:37;13960:591;13228:399;-1:-1:-1;;;;;13312:21:0;;13304:65;;;;-1:-1:-1;;;13304:65:0;;6694:2:1;13304:65:0;;;6676:21:1;6733:2;6713:18;;;6706:30;6772:33;6752:18;;;6745:61;6823:18;;13304:65:0;6666:181:1;13304:65:0;13460:6;13444:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13477:18:0;;:9;:18;;;;;;;;;;:28;;13499:6;;13477:9;:28;;13499:6;;13477:28;:::i;:::-;;;;-1:-1:-1;;13521:37:0;;6998:25:1;;;-1:-1:-1;;;;;13521:37:0;;;13538:1;;13521:37;;6986:2:1;6971:18;13521:37:0;;;;;;;19777:103;;:::o;13960:591::-;-1:-1:-1;;;;;14044:21:0;;14036:67;;;;-1:-1:-1;;;14036:67:0;;5075:2:1;14036:67:0;;;5057:21:1;5114:2;5094:18;;;5087:30;5153:34;5133:18;;;5126:62;-1:-1:-1;;;5204:18:1;;;5197:31;5245:19;;14036:67:0;5047:223:1;14036:67:0;-1:-1:-1;;;;;14203:18:0;;14178:22;14203:18;;;;;;;;;;;14240:24;;;;14232:71;;;;-1:-1:-1;;;14232:71:0;;3089:2:1;14232:71:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:32;3260:19;;14232:71:0;3061:224:1;14232:71:0;-1:-1:-1;;;;;14339:18:0;;:9;:18;;;;;;;;;;14360:23;;;14339:44;;14405:12;:22;;14377:6;;14339:9;14405:22;;14377:6;;14405:22;:::i;:::-;;;;-1:-1:-1;;14445:37:0;;6998:25:1;;;14471:1:0;;-1:-1:-1;;;;;14445:37:0;;;;;6986:2:1;6971:18;14445:37:0;6953:76:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;1987:4;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;7223:128::-;7263:3;7294:1;7290:6;7287:1;7284:13;7281:2;;;7300:18;;:::i;:::-;-1:-1:-1;7336:9:1;;7271:80::o;7356:125::-;7396:4;7424:1;7421;7418:8;7415:2;;;7429:18;;:::i;:::-;-1:-1:-1;7466:9:1;;7405:76::o;7486:380::-;7565:1;7561:12;;;;7608;;;7629:2;;7683:4;7675:6;7671:17;7661:27;;7629:2;7736;7728:6;7725:14;7705:18;7702:38;7699:2;;;7782:10;7777:3;7773:20;7770:1;7763:31;7817:4;7814:1;7807:15;7845:4;7842:1;7835:15;7699:2;;7541:325;;;:::o;7871:127::-;7932:10;7927:3;7923:20;7920:1;7913:31;7963:4;7960:1;7953:15;7987:4;7984:1;7977:15
Swarm Source
ipfs://6b082d286211ec3fbe9c77e3b7522c10f4e64d06f2d7754054c730a9f2cc5e95
Loading...
Loading
OVERVIEW
Liquid Finance is an innovative approach to liquidity provisioning that solves capital inefficiency and value accrual issues.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.