Token Travel and Tourism token
Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
3,998,397,286 TNT
Holders:
675 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AirTnT_TNT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-07 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`. // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`. // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a // good first aproximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1; uint256 x = a; if (x >> 128 > 0) { x >>= 128; result <<= 64; } if (x >> 64 > 0) { x >>= 64; result <<= 32; } if (x >> 32 > 0) { x >>= 32; result <<= 16; } if (x >> 16 > 0) { x >>= 16; result <<= 8; } if (x >> 8 > 0) { x >>= 8; result <<= 4; } if (x >> 4 > 0) { x >>= 4; result <<= 2; } if (x >> 2 > 0) { result <<= 1; } // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { uint256 result = sqrt(a); if (rounding == Rounding.Up && result * result < a) { result += 1; } return result; } } // File: @openzeppelin/contracts/utils/Arrays.sol // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } // File: @openzeppelin/contracts/utils/Context.sol // 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/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // 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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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/ERC20Snapshot.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/extensions/ERC20Snapshot.sol) pragma solidity ^0.8.0; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // 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: Production_AirTnT/ERC20/TNT.sol pragma solidity 0.8.17; contract AirTnT_TNT is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, Pausable { constructor() ERC20("Travel and Tourism token", "TNT") { // 4,000,000,000 TNT _mint(msg.sender, 4 * 1e9 * 10**decimals()); } function snapshot() public onlyOwner { _snapshot(); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override(ERC20, ERC20Snapshot) { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","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":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601881526020017f54726176656c20616e6420546f757269736d20746f6b656e00000000000000008152506040518060400160405280600381526020016215139560ea1b8152508160039081620000759190620004b8565b506004620000848282620004b8565b505050620000a16200009b620000dd60201b60201c565b620000e1565b6009805460ff60a01b19169055620000d733620000c16012600a62000699565b620000d19063ee6b2800620006b1565b62000133565b6200070d565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200018f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200019d600083836200022a565b8060026000828254620001b19190620006cb565b90915550506001600160a01b03821660009081526020819052604081208054839290620001e0908490620006cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200023462000251565b6200024c838383620002a960201b620007501760201c565b505050565b62000265600954600160a01b900460ff1690565b15620002a75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000186565b565b620002c18383836200024c60201b6200077c1760201c565b6001600160a01b038316620002e557620002db8262000310565b6200024c62000348565b6001600160a01b038216620002ff57620002db8362000310565b6200030a8362000310565b6200024c825b6001600160a01b0381166000908152600560209081526040808320918390529091205462000345919062000358565b62000358565b50565b620002a760066200033f60025490565b600062000364620003a7565b9050806200037284620003c5565b10156200024c578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000620003c060086200041060201b620007b71760201c565b905090565b80546000908103620003d957506000919050565b81548290620003eb90600190620006e1565b81548110620003fe57620003fe620006f7565b90600052602060002001549050919050565b5490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200043f57607f821691505b6020821081036200046057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024c57600081815260208120601f850160051c810160208610156200048f5750805b601f850160051c820191505b81811015620004b0578281556001016200049b565b505050505050565b81516001600160401b03811115620004d457620004d462000414565b620004ec81620004e584546200042a565b8462000466565b602080601f8311600181146200052457600084156200050b5750858301515b600019600386901b1c1916600185901b178555620004b0565b600085815260208120601f198616915b82811015620005555788860151825594840194600190910190840162000534565b5085821015620005745787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005db578160001904821115620005bf57620005bf62000584565b80851615620005cd57918102915b93841c93908002906200059f565b509250929050565b600082620005f45750600162000693565b81620006035750600062000693565b81600181146200061c5760028114620006275762000647565b600191505062000693565b60ff8411156200063b576200063b62000584565b50506001821b62000693565b5060208310610133831016604e8410600b84101617156200066c575081810a62000693565b6200067883836200059a565b80600019048211156200068f576200068f62000584565b0290505b92915050565b6000620006aa60ff841683620005e3565b9392505050565b808202811582820484141762000693576200069362000584565b8082018082111562000693576200069362000584565b8181038181111562000693576200069362000584565b634e487b7160e01b600052603260045260246000fd5b611804806200071d6000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c8063715018a6116100d85780639711715a1161008c578063a9059cbb11610066578063a9059cbb14610319578063dd62ed3e1461032c578063f2fde38b1461037257600080fd5b80639711715a146102eb578063981b24d0146102f3578063a457c2d71461030657600080fd5b80638456cb59116100bd5780638456cb59146102b35780638da5cb5b146102bb57806395d89b41146102e357600080fd5b8063715018a61461029857806379cc6790146102a057600080fd5b8063395093511161013a5780634ee2cd7e116101145780634ee2cd7e1461022c5780635c975abb1461023f57806370a082311461026257600080fd5b806339509351146101fc5780633f4ba83a1461020f57806342966c681461021957600080fd5b806318160ddd1161016b57806318160ddd146101c857806323b872dd146101da578063313ce567146101ed57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f610385565b60405161019c919061155f565b60405180910390f35b6101b86101b33660046115ef565b610417565b604051901515815260200161019c565b6002545b60405190815260200161019c565b6101b86101e8366004611619565b610431565b6040516012815260200161019c565b6101b861020a3660046115ef565b610455565b6102176104a1565b005b610217610227366004611655565b6104b3565b6101cc61023a3660046115ef565b6104c0565b60095474010000000000000000000000000000000000000000900460ff166101b8565b6101cc61027036600461166e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610217610533565b6102176102ae3660046115ef565b610545565b61021761055e565b60095460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019c565b61018f61056e565b61021761057d565b6101cc610301366004611655565b61058d565b6101b86103143660046115ef565b6105b8565b6101b86103273660046115ef565b61068e565b6101cc61033a366004611689565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61021761038036600461166e565b61069c565b606060038054610394906116bc565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906116bc565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000336104258185856107bb565b60019150505b92915050565b60003361043f85828561096e565b61044a858585610a45565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610425908290869061049c90879061173e565b6107bb565b6104a9610d03565b6104b1610d84565b565b6104bd3382610e01565b50565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120819081906104f4908590610ffa565b91509150816105285773ffffffffffffffffffffffffffffffffffffffff851660009081526020819052604090205461052a565b805b95945050505050565b61053b610d03565b6104b1600061112b565b61055082338361096e565b61055a8282610e01565b5050565b610566610d03565b6104b16111a2565b606060048054610394906116bc565b610585610d03565b6104bd611211565b600080600061059d846006610ffa565b91509150816105ae576002546105b0565b805b949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61044a82868684036107bb565b600033610425818585610a45565b6106a4610d03565b73ffffffffffffffffffffffffffffffffffffffff8116610747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610678565b6104bd8161112b565b73ffffffffffffffffffffffffffffffffffffffff8316610781576107748261126b565b61077c6112aa565b505050565b73ffffffffffffffffffffffffffffffffffffffff82166107a5576107748361126b565b6107ae8361126b565b61077c8261126b565b5490565b73ffffffffffffffffffffffffffffffffffffffff831661085d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610678565b73ffffffffffffffffffffffffffffffffffffffff8216610900576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610678565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a3f5781811015610a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610678565b610a3f84848484036107bb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ae8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610678565b73ffffffffffffffffffffffffffffffffffffffff8216610b8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610678565b610b968383836112b8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610c4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610678565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610c9090849061173e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf691815260200190565b60405180910390a3610a3f565b60095473ffffffffffffffffffffffffffffffffffffffff1633146104b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610678565b610d8c6112cb565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff8216610ea4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610678565b610eb0826000836112b8565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610678565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610fa2908490611751565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60008060008411611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a2069642069732030000000000000000000006044820152606401610678565b61106f61134f565b8411156110d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152606401610678565b60006110e4848661135f565b845490915081036110fc576000809250925050611124565b600184600101828154811061111357611113611764565b906000526020600020015492509250505b9250929050565b6009805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111aa611424565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dd73390565b6000611221600880546001019055565b600061122b61134f565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161125e91815260200190565b60405180910390a1919050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260056020908152604080832091839052909120546104bd91906114a9565b6114a9565b6104b160066112a560025490565b6112c0611424565b61077c838383610750565b60095474010000000000000000000000000000000000000000900460ff166104b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610678565b600061135a60085490565b905090565b815460009081036113725750600061042b565b82546000905b808210156113ce57600061138c83836114f3565b9050848682815481106113a1576113a1611764565b906000526020600020015411156113ba578091506113c8565b6113c581600161173e565b92505b50611378565b600082118015611403575083856113e6600185611751565b815481106113f6576113f6611764565b9060005260206000200154145b1561141c57611413600183611751565b9250505061042b565b50905061042b565b60095474010000000000000000000000000000000000000000900460ff16156104b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610678565b60006114b361134f565b9050806114bf84611515565b101561077c578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b60006115026002848418611793565b61150e9084841661173e565b9392505050565b8054600090810361152857506000919050565b8154829061153890600190611751565b8154811061154857611548611764565b90600052602060002001549050919050565b919050565b600060208083528351808285015260005b8181101561158c57858101830151858201604001528201611570565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461155a57600080fd5b6000806040838503121561160257600080fd5b61160b836115cb565b946020939093013593505050565b60008060006060848603121561162e57600080fd5b611637846115cb565b9250611645602085016115cb565b9150604084013590509250925092565b60006020828403121561166757600080fd5b5035919050565b60006020828403121561168057600080fd5b61150e826115cb565b6000806040838503121561169c57600080fd5b6116a5836115cb565b91506116b3602084016115cb565b90509250929050565b600181811c908216806116d057607f821691505b602082108103611709577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561042b5761042b61170f565b8181038181111561042b5761042b61170f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000826117c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea26469706673582212206bfb8e6600447f8fe0bc76cbbd08653884aa4fbd919bae3dc16f2da6ac77e18264736f6c63430008110033
Deployed ByteCode Sourcemap
45141:681:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24160:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26511:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;26511:201:0;1086:187:1;25280:108:0;25368:12;;25280:108;;;1424:25:1;;;1412:2;1397:18;25280:108:0;1278:177:1;27292:295:0;;;;;;:::i;:::-;;:::i;25122:93::-;;;25205:2;1935:36:1;;1923:2;1908:18;25122:93:0;1793:184:1;27996:238:0;;;;;;:::i;:::-;;:::i;45525:65::-;;;:::i;:::-;;44477:91;;;;;;:::i;:::-;;:::i;39999:266::-;;;;;;:::i;:::-;;:::i;14718:86::-;14789:7;;;;;;;14718:86;;25451:127;;;;;;:::i;:::-;25552:18;;25525:7;25552:18;;;;;;;;;;;;25451:127;17583:103;;;:::i;44887:164::-;;;;;;:::i;:::-;;:::i;45456:61::-;;;:::i;16935:87::-;17008:6;;16935:87;;17008:6;;;;2504:74:1;;2492:2;2477:18;16935:87:0;2358:226:1;24379:104:0;;;:::i;45381:67::-;;;:::i;40369:234::-;;;;;;:::i;:::-;;:::i;28737:436::-;;;;;;:::i;:::-;;:::i;25784:193::-;;;;;;:::i;:::-;;:::i;26040:151::-;;;;;;:::i;:::-;26156:18;;;;26129:7;26156:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26040:151;17841:201;;;;;;:::i;:::-;;:::i;24160:100::-;24214:13;24247:5;24240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24160:100;:::o;26511:201::-;26594:4;12911:10;26650:32;12911:10;26666:7;26675:6;26650:8;:32::i;:::-;26700:4;26693:11;;;26511:201;;;;;:::o;27292:295::-;27423:4;12911:10;27481:38;27497:4;12911:10;27512:6;27481:15;:38::i;:::-;27530:27;27540:4;27546:2;27550:6;27530:9;:27::i;:::-;-1:-1:-1;27575:4:0;;27292:295;-1:-1:-1;;;;27292:295:0:o;27996:238::-;12911:10;28084:4;26156:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;28084:4;;12911:10;28140:64;;12911:10;;26156:27;;28165:38;;28193:10;;28165:38;:::i;:::-;28140:8;:64::i;45525:65::-;16821:13;:11;:13::i;:::-;45572:10:::1;:8;:10::i;:::-;45525:65::o:0;44477:91::-;44533:27;12911:10;44553:6;44533:5;:27::i;:::-;44477:91;:::o;39999:266::-;40163:33;;;40086:7;40163:33;;;:24;:33;;;;;40086:7;;;;40142:55;;40151:10;;40142:8;:55::i;:::-;40106:91;;;;40217:11;:40;;25552:18;;;25525:7;25552:18;;;;;;;;;;;40217:40;;;40231:5;40217:40;40210:47;39999:266;-1:-1:-1;;;;;39999:266:0:o;17583:103::-;16821:13;:11;:13::i;:::-;17648:30:::1;17675:1;17648:18;:30::i;44887:164::-:0;44964:46;44980:7;12911:10;45003:6;44964:15;:46::i;:::-;45021:22;45027:7;45036:6;45021:5;:22::i;:::-;44887:164;;:::o;45456:61::-;16821:13;:11;:13::i;:::-;45501:8:::1;:6;:8::i;24379:104::-:0;24435:13;24468:7;24461:14;;;;;:::i;45381:67::-;16821:13;:11;:13::i;:::-;45429:11:::1;:9;:11::i;40369:234::-:0;40441:7;40462:16;40480:13;40497:43;40506:10;40518:21;40497:8;:43::i;:::-;40461:79;;;;40560:11;:35;;25368:12;;40560:35;;;40574:5;40560:35;40553:42;40369:234;-1:-1:-1;;;;40369:234:0:o;28737:436::-;12911:10;28830:4;26156:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;28830:4;;12911:10;28977:15;28957:16;:35;;28949:85;;;;;;;3817:2:1;28949:85:0;;;3799:21:1;3856:2;3836:18;;;3829:30;3895:34;3875:18;;;3868:62;3966:7;3946:18;;;3939:35;3991:19;;28949:85:0;;;;;;;;;29070:60;29079:5;29086:7;29114:15;29095:16;:34;29070:8;:60::i;25784:193::-;25863:4;12911:10;25919:28;12911:10;25936:2;25940:6;25919:9;:28::i;17841:201::-;16821:13;:11;:13::i;:::-;17930:22:::1;::::0;::::1;17922:73;;;::::0;::::1;::::0;;4223:2:1;17922:73:0::1;::::0;::::1;4205:21:1::0;4262:2;4242:18;;;4235:30;4301:34;4281:18;;;4274:62;4372:8;4352:18;;;4345:36;4398:19;;17922:73:0::1;4021:402:1::0;17922:73:0::1;18006:28;18025:8;18006:18;:28::i;40820:622::-:0;41024:18;;;41020:415;;41080:26;41103:2;41080:22;:26::i;:::-;41121:28;:26;:28::i;:::-;40820:622;;;:::o;41020:415::-;41171:16;;;41167:268;;41225:28;41248:4;41225:22;:28::i;41167:268::-;41354:28;41377:4;41354:22;:28::i;:::-;41397:26;41420:2;41397:22;:26::i;905:114::-;997:14;;905:114::o;32362:380::-;32498:19;;;32490:68;;;;;;;4630:2:1;32490:68:0;;;4612:21:1;4669:2;4649:18;;;4642:30;4708:34;4688:18;;;4681:62;4779:6;4759:18;;;4752:34;4803:19;;32490:68:0;4428:400:1;32490:68:0;32577:21;;;32569:68;;;;;;;5035:2:1;32569:68:0;;;5017:21:1;5074:2;5054:18;;;5047:30;5113:34;5093:18;;;5086:62;5184:4;5164:18;;;5157:32;5206:19;;32569:68:0;4833:398:1;32569:68:0;32650:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32702:32;;1424:25:1;;;32702:32:0;;1397:18:1;32702:32:0;;;;;;;32362:380;;;:::o;33033:453::-;26156:18;;;;33168:24;26156:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;33255:17;33235:37;;33231:248;;33317:6;33297:16;:26;;33289:68;;;;;;;5438:2:1;33289:68:0;;;5420:21:1;5477:2;5457:18;;;5450:30;5516:31;5496:18;;;5489:59;5565:18;;33289:68:0;5236:353:1;33289:68:0;33401:51;33410:5;33417:7;33445:6;33426:16;:25;33401:8;:51::i;:::-;33157:329;33033:453;;;:::o;29643:671::-;29774:18;;;29766:68;;;;;;;5796:2:1;29766:68:0;;;5778:21:1;5835:2;5815:18;;;5808:30;5874:34;5854:18;;;5847:62;5945:7;5925:18;;;5918:35;5970:19;;29766:68:0;5594:401:1;29766:68:0;29853:16;;;29845:64;;;;;;;6202:2:1;29845:64:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;6351:5;6331:18;;;6324:33;6374:19;;29845:64:0;6000:399:1;29845:64:0;29922:38;29943:4;29949:2;29953:6;29922:20;:38::i;:::-;29995:15;;;29973:19;29995:15;;;;;;;;;;;30029:21;;;;30021:72;;;;;;;6606:2:1;30021:72:0;;;6588:21:1;6645:2;6625:18;;;6618:30;6684:34;6664:18;;;6657:62;6755:8;6735:18;;;6728:36;6781:19;;30021:72:0;6404:402:1;30021:72:0;30129:15;;;;:9;:15;;;;;;;;;;;30147:20;;;30129:38;;30189:13;;;;;;;;:23;;30161:6;;30129:9;30189:23;;30161:6;;30189:23;:::i;:::-;;;;;;;;30245:2;30230:26;;30239:4;30230:26;;;30249:6;30230:26;;;;1424:25:1;;1412:2;1397:18;;1278:177;30230:26:0;;;;;;;;30269:37;40820:622;17100:132;17008:6;;17164:23;17008:6;12911:10;17164:23;17156:68;;;;;;;7013:2:1;17156:68:0;;;6995:21:1;;;7032:18;;;7025:30;7091:34;7071:18;;;7064:62;7143:18;;17156:68:0;6811:356:1;15573:120:0;14582:16;:14;:16::i;:::-;15632:7:::1;:15:::0;;;::::1;::::0;;15663:22:::1;12911:10:::0;15672:12:::1;15663:22;::::0;2534:42:1;2522:55;;;2504:74;;2492:2;2477:18;15663:22:0::1;;;;;;;15573:120::o:0;31333:591::-;31417:21;;;31409:67;;;;;;;7374:2:1;31409:67:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;7523:3;7503:18;;;7496:31;7544:19;;31409:67:0;7172:397:1;31409:67:0;31489:49;31510:7;31527:1;31531:6;31489:20;:49::i;:::-;31576:18;;;31551:22;31576:18;;;;;;;;;;;31613:24;;;;31605:71;;;;;;;7776:2:1;31605:71:0;;;7758:21:1;7815:2;7795:18;;;7788:30;7854:34;7834:18;;;7827:62;7925:4;7905:18;;;7898:32;7947:19;;31605:71:0;7574:398:1;31605:71:0;31712:18;;;:9;:18;;;;;;;;;;31733:23;;;31712:44;;31778:12;:22;;31750:6;;31712:9;31778:22;;31750:6;;31778:22;:::i;:::-;;;;-1:-1:-1;;31818:37:0;;1424:25:1;;;31844:1:0;;31818:37;;;;;;1412:2:1;1397:18;31818:37:0;;;;;;;40820:622;;;:::o;41450:1619::-;41539:4;41545:7;41586:1;41573:10;:14;41565:49;;;;;;;8312:2:1;41565:49:0;;;8294:21:1;8351:2;8331:18;;;8324:30;8390:24;8370:18;;;8363:52;8432:18;;41565:49:0;8110:346:1;41565:49:0;41647:23;:21;:23::i;:::-;41633:10;:37;;41625:79;;;;;;;8663:2:1;41625:79:0;;;8645:21:1;8702:2;8682:18;;;8675:30;8741:31;8721:18;;;8714:59;8790:18;;41625:79:0;8461:353:1;41625:79:0;42843:13;42859:40;:9;42888:10;42859:28;:40::i;:::-;42925:20;;42843:56;;-1:-1:-1;42916:29:0;;42912:150;;42970:5;42977:1;42962:17;;;;;;;42912:150;43020:4;43026:9;:16;;43043:5;43026:23;;;;;;;;:::i;:::-;;;;;;;;;43012:38;;;;;41450:1619;;;;;;:::o;18202:191::-;18295:6;;;;18312:17;;;;;;;;;;;18345:40;;18295:6;;;18312:17;18295:6;;18345:40;;18276:16;;18345:40;18265:128;18202:191;:::o;15314:118::-;14323:19;:17;:19::i;:::-;15374:7:::1;:14:::0;;;::::1;::::0;::::1;::::0;;15404:20:::1;15411:12;12911:10:::0;;12831:98;39471:223;39518:7;39538:30;:18;1116:19;;1134:1;1116:19;;;1027:127;39538:30;39581:17;39601:23;:21;:23::i;:::-;39581:43;;39640:19;39649:9;39640:19;;;;1424:25:1;;1412:2;1397:18;;1278:177;39640:19:0;;;;;;;;39677:9;39471:223;-1:-1:-1;39471:223:0:o;43077:146::-;43161:33;;;;;;;:24;:33;;;;;;;;25552:18;;;;;;;;43145:70;;43161:33;43145:15;:70::i;43196:18::-;43145:15;:70::i;43231:118::-;43288:53;43304:21;43327:13;25368:12;;;25280:108;45598:221;14323:19;:17;:19::i;:::-;45767:44:::1;45794:4;45800:2;45804:6;45767:26;:44::i;15062:108::-:0;14789:7;;;;;;;15121:41;;;;;;;9210:2:1;15121:41:0;;;9192:21:1;9249:2;9229:18;;;9222:30;9288:22;9268:18;;;9261:50;9328:18;;15121:41:0;9008:344:1;39760:127:0;39824:7;39851:28;:18;997:14;;905:114;39851:28;39844:35;;39760:127;:::o;11227:918::-;11340:12;;11316:7;;11340:17;;11336:58;;-1:-1:-1;11381:1:0;11374:8;;11336:58;11447:12;;11406:11;;11472:424;11485:4;11479:3;:10;11472:424;;;11506:11;11520:23;11533:3;11538:4;11520:12;:23::i;:::-;11506:37;;11777:7;11764:5;11770:3;11764:10;;;;;;;;:::i;:::-;;;;;;;;;:20;11760:125;;;11812:3;11805:10;;11760:125;;;11862:7;:3;11868:1;11862:7;:::i;:::-;11856:13;;11760:125;11491:405;11472:424;;;12022:1;12016:3;:7;:36;;;;-1:-1:-1;12045:7:0;12027:5;12033:7;12039:1;12033:3;:7;:::i;:::-;12027:14;;;;;;;;:::i;:::-;;;;;;;;;:25;12016:36;12012:126;;;12076:7;12082:1;12076:3;:7;:::i;:::-;12069:14;;;;;;12012:126;-1:-1:-1;12123:3:0;-1:-1:-1;12116:10:0;;14877:108;14789:7;;;;;;;14947:9;14939:38;;;;;;;9559:2:1;14939:38:0;;;9541:21:1;9598:2;9578:18;;;9571:30;9637:18;9617;;;9610:46;9673:18;;14939:38:0;9357:340:1;43357:310:0;43452:17;43472:23;:21;:23::i;:::-;43452:43;-1:-1:-1;43452:43:0;43510:30;43526:9;43510:15;:30::i;:::-;:42;43506:154;;;43569:29;;;;;;;;-1:-1:-1;43569:29:0;;;;;;;;;;;;;;43613:16;;;:35;;;;;;;;;;;;;;;43357:310::o;2362:156::-;2424:7;2499:11;2509:1;2500:5;;;2499:11;:::i;:::-;2489:21;;2490:5;;;2489:21;:::i;:::-;2482:28;2362:156;-1:-1:-1;;;2362:156:0:o;43675:212::-;43769:10;;43745:7;;43769:15;;43765:115;;-1:-1:-1;43808:1:0;;43675:212;-1:-1:-1;43675:212:0:o;43765:115::-;43853:10;;43849:3;;43853:14;;43866:1;;43853:14;:::i;:::-;43849:19;;;;;;;;:::i;:::-;;;;;;;;;43842:26;;43675:212;;;:::o;43765:115::-;43675:212;;;:::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;827:254;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:180::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;-1:-1:-1;2133:23:1;;1982:180;-1:-1:-1;1982:180:1:o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;2589:260::-;2657:6;2665;2718:2;2706:9;2697:7;2693:23;2689:32;2686:52;;;2734:1;2731;2724:12;2686:52;2757:29;2776:9;2757:29;:::i;:::-;2747:39;;2805:38;2839:2;2828:9;2824:18;2805:38;:::i;:::-;2795:48;;2589:260;;;;;:::o;2854:437::-;2933:1;2929:12;;;;2976;;;2997:61;;3051:4;3043:6;3039:17;3029:27;;2997:61;3104:2;3096:6;3093:14;3073:18;3070:38;3067:218;;3141:77;3138:1;3131:88;3242:4;3239:1;3232:15;3270:4;3267:1;3260:15;3067:218;;2854:437;;;:::o;3296:184::-;3348:77;3345:1;3338:88;3445:4;3442:1;3435:15;3469:4;3466:1;3459:15;3485:125;3550:9;;;3571:10;;;3568:36;;;3584:18;;:::i;7977:128::-;8044:9;;;8065:11;;;8062:37;;;8079:18;;:::i;8819:184::-;8871:77;8868:1;8861:88;8968:4;8965:1;8958:15;8992:4;8989:1;8982:15;9702:274;9742:1;9768;9758:189;;9803:77;9800:1;9793:88;9904:4;9901:1;9894:15;9932:4;9929:1;9922:15;9758:189;-1:-1:-1;9961:9:1;;9702:274::o
Swarm Source
ipfs://6bfb8e6600447f8fe0bc76cbbd08653884aa4fbd919bae3dc16f2da6ac77e182