ETH Price: $2,829.67 (-7.34%)
Gas: 7 Gwei

Contract

0x5F0bc16D50F72d10b719dBF6845DE2E599eb5624
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

VENT (VENT) (@$0.0045)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Approve198511872024-05-12 3:13:3556 days ago1715483615IN
Vent Finance: VENT Token
0 ETH0.000176533.78929158
Transfer198399362024-05-10 13:28:5958 days ago1715347739IN
Vent Finance: VENT Token
0 ETH0.000254615.44517112
Approve197683412024-04-30 13:12:1168 days ago1714482731IN
Vent Finance: VENT Token
0 ETH0.0012914527.72128513
Approve197436642024-04-27 2:21:5971 days ago1714184519IN
Vent Finance: VENT Token
0 ETH0.00025075.38147903
Transfer197432682024-04-27 1:02:4772 days ago1714179767IN
Vent Finance: VENT Token
0 ETH0.00038487.46346032
Transfer197076782024-04-22 1:32:1176 days ago1713749531IN
Vent Finance: VENT Token
0 ETH0.000252935.40933792
Transfer196899822024-04-19 14:08:5979 days ago1713535739IN
Vent Finance: VENT Token
0 ETH0.0008976617.41049493
Transfer193752282024-03-06 9:27:11123 days ago1709717231IN
Vent Finance: VENT Token
0 ETH0.0023612468.49947931
Approve193240082024-02-28 5:40:35130 days ago1709098835IN
Vent Finance: VENT Token
0 ETH0.0015843634.21138388
Approve192787312024-02-21 21:33:35137 days ago1708551215IN
Vent Finance: VENT Token
0 ETH0.0012536551.58435249
Transfer190631452024-01-22 15:26:11167 days ago1705937171IN
Vent Finance: VENT Token
0 ETH0.0015147732.38704032
Approve190350492024-01-18 16:51:11171 days ago1705596671IN
Vent Finance: VENT Token
0 ETH0.003060565.69449565
Transfer189981952024-01-13 13:13:23176 days ago1705151603IN
Vent Finance: VENT Token
0 ETH0.0007656816.37100481
Transfer189620902024-01-08 11:46:35181 days ago1704714395IN
Vent Finance: VENT Token
0 ETH0.0007505816.04809474
Approve187906132023-12-15 9:25:35205 days ago1702632335IN
Vent Finance: VENT Token
0 ETH0.0010273642.27323585
Transfer187382342023-12-08 1:21:35213 days ago1701998495IN
Vent Finance: VENT Token
0 ETH0.0013668746.06781145
Transfer187138962023-12-04 15:28:47216 days ago1701703727IN
Vent Finance: VENT Token
0 ETH0.0027747753.83004231
Transfer186950052023-12-02 0:00:47219 days ago1701475247IN
Vent Finance: VENT Token
0 ETH0.0016904236.15178775
Approve183720132023-10-17 18:54:59264 days ago1697568899IN
Vent Finance: VENT Token
0 ETH0.0003356313.81032178
Approve183395322023-10-13 5:57:23268 days ago1697176643IN
Vent Finance: VENT Token
0 ETH0.000127465.24484617
Approve183271462023-10-11 12:16:59270 days ago1697026619IN
Vent Finance: VENT Token
0 ETH0.000172567.10048625
Approve181618182023-09-18 9:02:59293 days ago1695027779IN
Vent Finance: VENT Token
0 ETH0.000414368.95197828
Approve179400622023-08-18 7:02:23324 days ago1692342143IN
Vent Finance: VENT Token
0 ETH0.0004829219.87106187
Approve178826272023-08-10 6:12:35332 days ago1691647955IN
Vent Finance: VENT Token
0 ETH0.0006369513.75753121
Transfer178082762023-07-30 20:38:35343 days ago1690749515IN
Vent Finance: VENT Token
0 ETH0.0014228530.42183844
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VentToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-06
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.7;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
	/**
	 * @dev Returns the amount of tokens in existence.
	 */
	function totalSupply() external view returns (uint256);

	/**
	 * @dev Returns the amount of tokens owned by `account`.
	 */
	function balanceOf(address account) external view returns (uint256);

	/**
	 * @dev Moves `amount` tokens from the caller's account to `recipient`.
	 *
	 * Returns a boolean value indicating whether the operation succeeded.
	 *
	 * Emits a {Transfer} event.
	 */
	function transfer(address recipient, uint256 amount)
		external
		returns (bool);

	/**
	 * @dev Returns the remaining number of tokens that `spender` will be
	 * allowed to spend on behalf of `owner` through {transferFrom}. This is
	 * zero by default.
	 *
	 * This value changes when {approve} or {transferFrom} are called.
	 */
	function allowance(address owner, address spender)
		external
		view
		returns (uint256);

	/**
	 * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
	 *
	 * Returns a boolean value indicating whether the operation succeeded.
	 *
	 * IMPORTANT: Beware that changing an allowance with this method brings the risk
	 * that someone may use both the old and the new allowance by unfortunate
	 * transaction ordering. One possible solution to mitigate this race
	 * condition is to first reduce the spender's allowance to 0 and set the
	 * desired value afterwards:
	 * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
	 *
	 * Emits an {Approval} event.
	 */
	function approve(address spender, uint256 amount) external returns (bool);

	/**
	 * @dev Moves `amount` tokens from `sender` to `recipient` using the
	 * allowance mechanism. `amount` is then deducted from the caller's
	 * allowance.
	 *
	 * Returns a boolean value indicating whether the operation succeeded.
	 *
	 * Emits a {Transfer} event.
	 */
	function transferFrom(
		address sender,
		address recipient,
		uint256 amount
	) external returns (bool);

	/**
	 * @dev Emitted when `value` tokens are moved from one account (`from`) to
	 * another (`to`).
	 *
	 * Note that `value` may be zero.
	 */
	event Transfer(address indexed from, address indexed to, uint256 value);

	/**
	 * @dev Emitted when the allowance of a `spender` for an `owner` is set by
	 * a call to {approve}. `value` is the new allowance.
	 */
	event Approval(
		address indexed owner,
		address indexed spender,
		uint256 value
	);
}

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

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

/**
 * @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.
 */
abstract 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() {
		_setOwner(_msgSender());
	}

	/**
	 * @dev Returns the address of the current owner.
	 */
	function owner() public view virtual 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 {
		_setOwner(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"
		);
		_setOwner(newOwner);
	}

	function _setOwner(address newOwner) private {
		address oldOwner = _owner;
		_owner = newOwner;
		emit OwnershipTransferred(oldOwner, newOwner);
	}
}

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

		uint256 currentAllowance = _allowances[sender][_msgSender()];
		require(
			currentAllowance >= amount,
			"ERC20: transfer amount exceeds allowance"
		);
		unchecked {
			_approve(sender, _msgSender(), currentAllowance - 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)
	{
		_approve(
			_msgSender(),
			spender,
			_allowances[_msgSender()][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)
	{
		uint256 currentAllowance = _allowances[_msgSender()][spender];
		require(
			currentAllowance >= subtractedValue,
			"ERC20: decreased allowance below zero"
		);
		unchecked {
			_approve(_msgSender(), 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:
	 *
	 * - `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);

		uint256 senderBalance = _balances[sender];
		require(
			senderBalance >= amount,
			"ERC20: transfer amount exceeds balance"
		);
		unchecked {
			_balances[sender] = senderBalance - amount;
		}
		_balances[recipient] += amount;

		emit Transfer(sender, recipient, amount);

		_afterTokenTransfer(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:
	 *
	 * - `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 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 {}
}

contract VentToken is Ownable, ERC20 {
	constructor() ERC20("VENT", "VENT") {
		_mint(msg.sender, 250_000_000 ether);
	}

	function burn(uint256 _amount) public onlyOwner {
		_burn(msg.sender, _amount);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060048152602001631591539560e21b815250604051806040016040528060048152602001631591539560e21b8152506200006662000060620000b760201b60201c565b620000bb565b81516200007b906004906020850190620001f3565b50805162000091906005906020840190620001f3565b505050620000b1336acecb8f27f4200f3a0000006200010b60201b60201c565b620002fd565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200017a919062000299565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a990849062000299565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200020190620002c0565b90600052602060002090601f01602090048101928262000225576000855562000270565b82601f106200024057805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200027057825182559160200191906001019062000253565b506200027e92915062000282565b5090565b5b808211156200027e576000815560010162000283565b60008219821115620002bb57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002d557607f821691505b60208210811415620002f757634e487b7160e01b600052602260045260246000fd5b50919050565b610c64806200030d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806342966c681461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f9190610b24565b60405180910390f35b61012b610126366004610ae1565b6102ef565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610aa5565b610305565b6040516012815260200161010f565b61012b61017d366004610ae1565b6103b4565b610195610190366004610b0b565b6103f0565b005b61013f6101a5366004610a50565b6001600160a01b031660009081526001602052604090205490565b610195610427565b6000546040516001600160a01b03909116815260200161010f565b61010261045d565b61012b6101f9366004610ae1565b61046c565b61012b61020c366004610ae1565b610505565b61013f61021f366004610a72565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610195610258366004610a50565b610512565b60606004805461026c90610bdd565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610bdd565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846105aa565b50600192915050565b60006103128484846106cf565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561039c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103a985338584036105aa565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102fc9185906103eb908690610bae565b6105aa565b6000546001600160a01b0316331461041a5760405162461bcd60e51b815260040161039390610b79565b610424338261089e565b50565b6000546001600160a01b031633146104515760405162461bcd60e51b815260040161039390610b79565b61045b60006109e4565b565b60606005805461026c90610bdd565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104ee5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610393565b6104fb33858584036105aa565b5060019392505050565b60006102fc3384846106cf565b6000546001600160a01b0316331461053c5760405162461bcd60e51b815260040161039390610b79565b6001600160a01b0381166105a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610393565b610424816109e4565b6001600160a01b03831661060c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610393565b6001600160a01b03821661066d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610393565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610393565b6001600160a01b0382166107955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610393565b6001600160a01b0383166000908152600160205260409020548181101561080d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610393565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610844908490610bae565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089091815260200190565b60405180910390a350505050565b6001600160a01b0382166108fe5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610393565b6001600160a01b038216600090815260016020526040902054818110156109725760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610393565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109a1908490610bc6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106c2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610a4b57600080fd5b919050565b600060208284031215610a6257600080fd5b610a6b82610a34565b9392505050565b60008060408385031215610a8557600080fd5b610a8e83610a34565b9150610a9c60208401610a34565b90509250929050565b600080600060608486031215610aba57600080fd5b610ac384610a34565b9250610ad160208501610a34565b9150604084013590509250925092565b60008060408385031215610af457600080fd5b610afd83610a34565b946020939093013593505050565b600060208284031215610b1d57600080fd5b5035919050565b600060208083528351808285015260005b81811015610b5157858101830151858201604001528201610b35565b81811115610b63576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610bc157610bc1610c18565b500190565b600082821015610bd857610bd8610c18565b500390565b600181811c90821680610bf157607f821691505b60208210811415610c1257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212202c216a1ea6f88a9f19c0228328ae0258ac81ffe264a6791bc7fb28961cfd4ead64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806342966c681461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f9190610b24565b60405180910390f35b61012b610126366004610ae1565b6102ef565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610aa5565b610305565b6040516012815260200161010f565b61012b61017d366004610ae1565b6103b4565b610195610190366004610b0b565b6103f0565b005b61013f6101a5366004610a50565b6001600160a01b031660009081526001602052604090205490565b610195610427565b6000546040516001600160a01b03909116815260200161010f565b61010261045d565b61012b6101f9366004610ae1565b61046c565b61012b61020c366004610ae1565b610505565b61013f61021f366004610a72565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610195610258366004610a50565b610512565b60606004805461026c90610bdd565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610bdd565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846105aa565b50600192915050565b60006103128484846106cf565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561039c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103a985338584036105aa565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102fc9185906103eb908690610bae565b6105aa565b6000546001600160a01b0316331461041a5760405162461bcd60e51b815260040161039390610b79565b610424338261089e565b50565b6000546001600160a01b031633146104515760405162461bcd60e51b815260040161039390610b79565b61045b60006109e4565b565b60606005805461026c90610bdd565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104ee5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610393565b6104fb33858584036105aa565b5060019392505050565b60006102fc3384846106cf565b6000546001600160a01b0316331461053c5760405162461bcd60e51b815260040161039390610b79565b6001600160a01b0381166105a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610393565b610424816109e4565b6001600160a01b03831661060c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610393565b6001600160a01b03821661066d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610393565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610393565b6001600160a01b0382166107955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610393565b6001600160a01b0383166000908152600160205260409020548181101561080d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610393565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610844908490610bae565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089091815260200190565b60405180910390a350505050565b6001600160a01b0382166108fe5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610393565b6001600160a01b038216600090815260016020526040902054818110156109725760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610393565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109a1908490610bc6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106c2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610a4b57600080fd5b919050565b600060208284031215610a6257600080fd5b610a6b82610a34565b9392505050565b60008060408385031215610a8557600080fd5b610a8e83610a34565b9150610a9c60208401610a34565b90509250929050565b600080600060608486031215610aba57600080fd5b610ac384610a34565b9250610ad160208501610a34565b9150604084013590509250925092565b60008060408385031215610af457600080fd5b610afd83610a34565b946020939093013593505050565b600060208284031215610b1d57600080fd5b5035919050565b600060208083528351808285015260005b81811015610b5157858101830151858201604001528201610b35565b81811115610b63576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610bc157610bc1610c18565b500190565b600082821015610bd857610bd8610c18565b500390565b600181811c90821680610bf157607f821691505b60208210811415610c1257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212202c216a1ea6f88a9f19c0228328ae0258ac81ffe264a6791bc7fb28961cfd4ead64736f6c63430008070033

Deployed Bytecode Sourcemap

16918:215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7828:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9830:168;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;9830:168:0;1633:187:1;8852:99:0;8934:12;;8852:99;;;6986:25:1;;;6974:2;6959:18;8852:99:0;6840:177:1;10438:436:0;;;;;;:::i;:::-;;:::i;8715:84::-;;;8792:2;7164:36:1;;7152:2;7137:18;8715:84:0;7022:184:1;11244:228:0;;;;;;:::i;:::-;;:::i;17046:84::-;;;;;;:::i;:::-;;:::i;:::-;;9002:135;;;;;;:::i;:::-;-1:-1:-1;;;;;9114:18:0;9091:7;9114:18;;;:9;:18;;;;;;;9002:135;5343:85;;;:::i;4752:78::-;4798:7;4819:6;4752:78;;-1:-1:-1;;;;;4819:6:0;;;1571:51:1;;1559:2;1544:18;4752:78:0;1425:203:1;8023:95:0;;;:::i;11930:395::-;;;;;;:::i;:::-;;:::i;9323:174::-;;;;;;:::i;:::-;;:::i;9548:159::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9675:18:0;;;9652:7;9675:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9548:159;5568:190;;;;;;:::i;:::-;;:::i;7828:91::-;7882:13;7909:5;7902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7828:91;:::o;9830:168::-;9925:4;9938:39;3752:10;9961:7;9970:6;9938:8;:39::i;:::-;-1:-1:-1;9989:4:0;9830:168;;;;:::o;10438:436::-;10557:4;10568:36;10578:6;10586:9;10597:6;10568:9;:36::i;:::-;-1:-1:-1;;;;;10638:19:0;;10611:24;10638:19;;;:11;:19;;;;;;;;3752:10;10638:33;;;;;;;;10689:26;;;;10676:92;;;;-1:-1:-1;;;10676:92:0;;4653:2:1;10676:92:0;;;4635:21:1;4692:2;4672:18;;;4665:30;4731:34;4711:18;;;4704:62;-1:-1:-1;;;4782:18:1;;;4775:38;4830:19;;10676:92:0;;;;;;;;;10789:57;10798:6;3752:10;10839:6;10820:16;:25;10789:8;:57::i;:::-;-1:-1:-1;10865:4:0;;10438:436;-1:-1:-1;;;;10438:436:0:o;11244:228::-;3752:10;11341:4;11399:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11399:34:0;;;;;;;;;;11341:4;;11354:97;;11386:7;;11399:47;;11436:10;;11399:47;:::i;:::-;11354:8;:97::i;17046:84::-;4798:7;4819:6;-1:-1:-1;;;;;4819:6:0;3752:10;4945:23;4937:68;;;;-1:-1:-1;;;4937:68:0;;;;;;;:::i;:::-;17099:26:::1;17105:10;17117:7;17099:5;:26::i;:::-;17046:84:::0;:::o;5343:85::-;4798:7;4819:6;-1:-1:-1;;;;;4819:6:0;3752:10;4945:23;4937:68;;;;-1:-1:-1;;;4937:68:0;;;;;;;:::i;:::-;5402:21:::1;5420:1;5402:9;:21::i;:::-;5343:85::o:0;8023:95::-;8079:13;8106:7;8099:14;;;;;:::i;11930:395::-;3752:10;12032:4;12072:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12072:34:0;;;;;;;;;;12124:35;;;;12111:98;;;;-1:-1:-1;;;12111:98:0;;6636:2:1;12111:98:0;;;6618:21:1;6675:2;6655:18;;;6648:30;6714:34;6694:18;;;6687:62;-1:-1:-1;;;6765:18:1;;;6758:35;6810:19;;12111:98:0;6434:401:1;12111:98:0;12230:67;3752:10;12253:7;12281:15;12262:16;:34;12230:8;:67::i;:::-;-1:-1:-1;12316:4:0;;11930:395;-1:-1:-1;;;11930:395:0:o;9323:174::-;9421:4;9434:42;3752:10;9458:9;9469:6;9434:9;:42::i;5568:190::-;4798:7;4819:6;-1:-1:-1;;;;;4819:6:0;3752:10;4945:23;4937:68;;;;-1:-1:-1;;;4937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5656:22:0;::::1;5643:86;;;::::0;-1:-1:-1;;;5643:86:0;;3436:2:1;5643:86:0::1;::::0;::::1;3418:21:1::0;3475:2;3455:18;;;3448:30;3514:34;3494:18;;;3487:62;-1:-1:-1;;;3565:18:1;;;3558:36;3611:19;;5643:86:0::1;3234:402:1::0;5643:86:0::1;5734:19;5744:8;5734:9;:19::i;15258:332::-:0;-1:-1:-1;;;;;15367:19:0;;15359:68;;;;-1:-1:-1;;;15359:68:0;;6231:2:1;15359:68:0;;;6213:21:1;6270:2;6250:18;;;6243:30;6309:34;6289:18;;;6282:62;-1:-1:-1;;;6360:18:1;;;6353:34;6404:19;;15359:68:0;6029:400:1;15359:68:0;-1:-1:-1;;;;;15440:21:0;;15432:68;;;;-1:-1:-1;;;15432:68:0;;3843:2:1;15432:68:0;;;3825:21:1;3882:2;3862:18;;;3855:30;3921:34;3901:18;;;3894:62;-1:-1:-1;;;3972:18:1;;;3965:32;4014:19;;15432:68:0;3641:398:1;15432:68:0;-1:-1:-1;;;;;15507:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15553:32;;6986:25:1;;;15553:32:0;;6959:18:1;15553:32:0;;;;;;;;15258:332;;;:::o;12770:653::-;-1:-1:-1;;;;;12883:20:0;;12875:70;;;;-1:-1:-1;;;12875:70:0;;5825:2:1;12875:70:0;;;5807:21:1;5864:2;5844:18;;;5837:30;5903:34;5883:18;;;5876:62;-1:-1:-1;;;5954:18:1;;;5947:35;5999:19;;12875:70:0;5623:401:1;12875:70:0;-1:-1:-1;;;;;12958:23:0;;12950:71;;;;-1:-1:-1;;;12950:71:0;;2629:2:1;12950:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;12950:71:0;2427:399:1;12950:71:0;-1:-1:-1;;;;;13106:17:0;;13082:21;13106:17;;;:9;:17;;;;;;13141:23;;;;13128:87;;;;-1:-1:-1;;;13128:87:0;;4246:2:1;13128:87:0;;;4228:21:1;4285:2;4265:18;;;4258:30;4324:34;4304:18;;;4297:62;-1:-1:-1;;;4375:18:1;;;4368:36;4421:19;;13128:87:0;4044:402:1;13128:87:0;-1:-1:-1;;;;;13236:17:0;;;;;;;:9;:17;;;;;;13256:22;;;13236:42;;13288:20;;;;;;;;:30;;13272:6;;13236:17;13288:30;;13272:6;;13288:30;:::i;:::-;;;;;;;;13347:9;-1:-1:-1;;;;;13330:35:0;13339:6;-1:-1:-1;;;;;13330:35:0;;13358:6;13330:35;;;;6986:25:1;;6974:2;6959:18;;6840:177;13330:35:0;;;;;;;;12870:553;12770:653;;;:::o;14337:525::-;-1:-1:-1;;;;;14415:21:0;;14407:67;;;;-1:-1:-1;;;14407:67:0;;5423:2:1;14407:67:0;;;5405:21:1;5462:2;5442:18;;;5435:30;5501:34;5481:18;;;5474:62;-1:-1:-1;;;5552:18:1;;;5545:31;5593:19;;14407:67:0;5221:397:1;14407:67:0;-1:-1:-1;;;;;14562:18:0;;14537:22;14562:18;;;:9;:18;;;;;;14593:24;;;;14585:71;;;;-1:-1:-1;;;14585:71:0;;3033:2:1;14585:71:0;;;3015:21:1;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:32;3204:19;;14585:71:0;2831:398:1;14585:71:0;-1:-1:-1;;;;;14677:18:0;;;;;;:9;:18;;;;;14698:23;;;14677:44;;14731:12;:22;;14715:6;;14677:18;14731:22;;14715:6;;14731:22;:::i;:::-;;;;-1:-1:-1;;14765:37:0;;6986:25:1;;;14791:1:0;;-1:-1:-1;;;;;14765:37:0;;;;;6974:2:1;6959:18;14765:37:0;6840:177:1;5763:152:0;5813:16;5832:6;;-1:-1:-1;;;;;5843:17:0;;;-1:-1:-1;;;;;;5843:17:0;;;;;;5870:40;;5832:6;;;;;;;5870:40;;5813:16;5870:40;5808:107;5763:152;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;4860:356::-;5062:2;5044:21;;;5081:18;;;5074:30;5140:34;5135:2;5120:18;;5113:62;5207:2;5192:18;;4860:356::o;7211:128::-;7251:3;7282:1;7278:6;7275:1;7272:13;7269:39;;;7288:18;;:::i;:::-;-1:-1:-1;7324:9:1;;7211:128::o;7344:125::-;7384:4;7412:1;7409;7406:8;7403:34;;;7417:18;;:::i;:::-;-1:-1:-1;7454:9:1;;7344:125::o;7474:380::-;7553:1;7549:12;;;;7596;;;7617:61;;7671:4;7663:6;7659:17;7649:27;;7617:61;7724:2;7716:6;7713:14;7693:18;7690:38;7687:161;;;7770:10;7765:3;7761:20;7758:1;7751:31;7805:4;7802:1;7795:15;7833:4;7830:1;7823:15;7687:161;;7474:380;;;:::o;7859:127::-;7920:10;7915:3;7911:20;7908:1;7901:31;7951:4;7948:1;7941:15;7975:4;7972:1;7965:15

Swarm Source

ipfs://2c216a1ea6f88a9f19c0228328ae0258ac81ffe264a6791bc7fb28961cfd4ead

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Vent is the first full stack Cardano-Polygon community launchpad ecosystem that enables sustainable growth.

Validator Index Block Amount
View All Withdrawals

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