Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
350,000,000 FIAS
Holders
2,737
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,295.24 FIASValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Fias
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-13 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity 0.8.26; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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-upgradeable/proxy/utils/Initializable.sol // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } } // File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors { /// @custom:storage-location erc7201:openzeppelin.storage.ERC20 struct ERC20Storage { mapping(address account => uint256) _balances; mapping(address account => mapping(address spender => uint256)) _allowances; uint256 _totalSupply; string _name; string _symbol; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC20")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00; function _getERC20Storage() private pure returns (ERC20Storage storage $) { assembly { $.slot := ERC20StorageLocation } } /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { ERC20Storage storage $ = _getERC20Storage(); $._name = name_; $._symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); return $._name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { ERC20Storage storage $ = _getERC20Storage(); if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows $._totalSupply += value; } else { uint256 fromBalance = $._balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. $._balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. $._totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. $._balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { ERC20Storage storage $ = _getERC20Storage(); if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } $._allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: contracts/Fias.sol pragma solidity 0.8.26; contract Fias is ERC20Upgradeable { //Limit constants are integers (multplied by 10^18 in the mint() function) uint256 public constant GLOBAL_LIMIT = 350000000; address public constant FOREVVER_MINTER = 0xA9f2Cf92b207D8aB3C37f8586e5659C0Ff52dDCA; uint256 public constant FOREVVER_LIMIT = 175000000; address public constant LITCRAFT_MINTER = 0x9910435497F7dCe57f0AefBfa4CB473c79Bdf4B6; uint256 public constant LITCRAFT_LIMIT = 175000000; address public constant CONTRACT_ADMIN = 0x83b3B323DE7D7A91702E173A903ef9Ea104b66c5; function initialize() public initializer { __ERC20_init("Fias", "FIAS"); _mint(LITCRAFT_MINTER, LITCRAFT_LIMIT*(10**18)); _mint(FOREVVER_MINTER, FOREVVER_LIMIT*(10**18)); } function multiTransfer(address[] memory recipients, uint256[] memory amounts) public { require(recipients.length > 0, "No recipients listed."); require(recipients.length == amounts.length, "Amount and recipient lengths do not match."); uint256 totalAmount = 0; for (uint256 i = 0; i < recipients.length; i++) { require(amounts[i] > 0, "Every amount must be positive."); totalAmount += amounts[i]; } require(totalAmount <= balanceOf(msg.sender), "Sender does not have enough Fias tokens."); for (uint256 i = 0; i < recipients.length; i++) { this.transferFrom(msg.sender, recipients[i], amounts[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"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":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_ADMIN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOREVVER_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOREVVER_MINTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GLOBAL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LITCRAFT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LITCRAFT_MINTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052348015600e575f80fd5b50611e478061001c5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c80638129fc1c116100a057806395d89b411161006f57806395d89b4114610295578063a9059cbb146102b3578063cc9338a3146102e3578063dd62ed3e14610301578063f64bdbc01461033157610109565b80638129fc1c146102315780638ad9403f1461023b5780638dae9318146102595780638fc590141461027757610109565b80631e89d545116100dc5780631e89d5451461019757806323b872dd146101b3578063313ce567146101e357806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b578063178bc9d51461015b57806318160ddd14610179575b5f80fd5b61011561034f565b6040516101229190611288565b60405180910390f35b61014560048036038101906101409190611346565b6103ed565b604051610152919061139e565b60405180910390f35b61016361040f565b60405161017091906113c6565b60405180910390f35b610181610427565b60405161018e91906113ee565b60405180910390f35b6101b160048036038101906101ac9190611607565b61043e565b005b6101cd60048036038101906101c8919061167d565b61067e565b6040516101da919061139e565b60405180910390f35b6101eb6106ac565b6040516101f891906116e8565b60405180910390f35b61021b60048036038101906102169190611701565b6106b4565b60405161022891906113ee565b60405180910390f35b610239610707565b005b61024361095c565b60405161025091906113ee565b60405180910390f35b610261610964565b60405161026e91906113ee565b60405180910390f35b61027f61096c565b60405161028c91906113c6565b60405180910390f35b61029d610984565b6040516102aa9190611288565b60405180910390f35b6102cd60048036038101906102c89190611346565b610a22565b6040516102da919061139e565b60405180910390f35b6102eb610a44565b6040516102f891906113c6565b60405180910390f35b61031b6004803603810190610316919061172c565b610a5c565b60405161032891906113ee565b60405180910390f35b610339610aec565b60405161034691906113ee565b60405180910390f35b60605f61035a610af4565b905080600301805461036b90611797565b80601f016020809104026020016040519081016040528092919081815260200182805461039790611797565b80156103e25780601f106103b9576101008083540402835291602001916103e2565b820191905f5260205f20905b8154815290600101906020018083116103c557829003601f168201915b505050505091505090565b5f806103f7610b1b565b9050610404818585610b22565b600191505092915050565b73a9f2cf92b207d8ab3c37f8586e5659c0ff52ddca81565b5f80610431610af4565b9050806002015491505090565b5f825111610481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047890611811565b60405180910390fd5b80518251146104c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bc9061189f565b60405180910390fd5b5f805b8351811015610562575f8382815181106104e5576104e46118bd565b5b60200260200101511161052d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052490611934565b60405180910390fd5b8281815181106105405761053f6118bd565b5b602002602001015182610553919061197f565b915080806001019150506104c8565b5061056c336106b4565b8111156105ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a590611a22565b60405180910390fd5b5f5b8351811015610678573073ffffffffffffffffffffffffffffffffffffffff166323b872dd338684815181106105e9576105e86118bd565b5b6020026020010151868581518110610604576106036118bd565b5b60200260200101516040518463ffffffff1660e01b815260040161062a93929190611a40565b6020604051808303815f875af1158015610646573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066a9190611a9f565b5080806001019150506105b0565b50505050565b5f80610688610b1b565b9050610695858285610b34565b6106a0858585610bc6565b60019150509392505050565b5f6012905090565b5f806106be610af4565b9050805f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050919050565b5f610710610cb6565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff161480156107585750825b90505f60018367ffffffffffffffff1614801561078b57505f3073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610799575080155b156107d0576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550831561081d576001855f0160086101000a81548160ff0219169083151502179055505b6108916040518060400160405280600481526020017f46696173000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4649415300000000000000000000000000000000000000000000000000000000815250610cdd565b6108c6739910435497f7dce57f0aefbfa4cb473c79bdf4b6670de0b6b3a7640000630a6e49c06108c19190611aca565b610cf3565b6108fb73a9f2cf92b207d8ab3c37f8586e5659c0ff52ddca670de0b6b3a7640000630a6e49c06108f69190611aca565b610cf3565b8315610955575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2600160405161094c9190611b60565b60405180910390a15b5050505050565b630a6e49c081565b6314dc938081565b7383b3b323de7d7a91702e173a903ef9ea104b66c581565b60605f61098f610af4565b90508060040180546109a090611797565b80601f01602080910402602001604051908101604052809291908181526020018280546109cc90611797565b8015610a175780601f106109ee57610100808354040283529160200191610a17565b820191905f5260205f20905b8154815290600101906020018083116109fa57829003601f168201915b505050505091505090565b5f80610a2c610b1b565b9050610a39818585610bc6565b600191505092915050565b739910435497f7dce57f0aefbfa4cb473c79bdf4b681565b5f80610a66610af4565b9050806001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b630a6e49c081565b5f7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00905090565b5f33905090565b610b2f8383836001610d72565b505050565b5f610b3f8484610a5c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bc05781811015610bb1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ba893929190611b79565b60405180910390fd5b610bbf84848484035f610d72565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c36575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c2d91906113c6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c9d91906113c6565b60405180910390fd5b610cb1838383610f4f565b505050565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b610ce561117e565b610cef82826111be565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d63575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d5a91906113c6565b60405180910390fd5b610d6e5f8383610f4f565b5050565b5f610d7b610af4565b90505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ded575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610de491906113c6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e5d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e5491906113c6565b60405180910390fd5b82816001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508115610f48578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610f3f91906113ee565b60405180910390a35b5050505050565b5f610f58610af4565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fac5781816002015f828254610fa0919061197f565b9250508190555061107e565b5f815f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611037578481846040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161102e93929190611b79565b60405180910390fd5b828103825f015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110c75781816002015f8282540392505081905550611113565b81815f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117091906113ee565b60405180910390a350505050565b6111866111fa565b6111bc576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6111c661117e565b5f6111cf610af4565b9050828160030190816111e29190611d42565b50818160040190816111f49190611d42565b50505050565b5f611203610cb6565b5f0160089054906101000a900460ff16905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61125a82611218565b6112648185611222565b9350611274818560208601611232565b61127d81611240565b840191505092915050565b5f6020820190508181035f8301526112a08184611250565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112e2826112b9565b9050919050565b6112f2816112d8565b81146112fc575f80fd5b50565b5f8135905061130d816112e9565b92915050565b5f819050919050565b61132581611313565b811461132f575f80fd5b50565b5f813590506113408161131c565b92915050565b5f806040838503121561135c5761135b6112b1565b5b5f611369858286016112ff565b925050602061137a85828601611332565b9150509250929050565b5f8115159050919050565b61139881611384565b82525050565b5f6020820190506113b15f83018461138f565b92915050565b6113c0816112d8565b82525050565b5f6020820190506113d95f8301846113b7565b92915050565b6113e881611313565b82525050565b5f6020820190506114015f8301846113df565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61144182611240565b810181811067ffffffffffffffff821117156114605761145f61140b565b5b80604052505050565b5f6114726112a8565b905061147e8282611438565b919050565b5f67ffffffffffffffff82111561149d5761149c61140b565b5b602082029050602081019050919050565b5f80fd5b5f6114c46114bf84611483565b611469565b905080838252602082019050602084028301858111156114e7576114e66114ae565b5b835b8181101561151057806114fc88826112ff565b8452602084019350506020810190506114e9565b5050509392505050565b5f82601f83011261152e5761152d611407565b5b813561153e8482602086016114b2565b91505092915050565b5f67ffffffffffffffff8211156115615761156061140b565b5b602082029050602081019050919050565b5f61158461157f84611547565b611469565b905080838252602082019050602084028301858111156115a7576115a66114ae565b5b835b818110156115d057806115bc8882611332565b8452602084019350506020810190506115a9565b5050509392505050565b5f82601f8301126115ee576115ed611407565b5b81356115fe848260208601611572565b91505092915050565b5f806040838503121561161d5761161c6112b1565b5b5f83013567ffffffffffffffff81111561163a576116396112b5565b5b6116468582860161151a565b925050602083013567ffffffffffffffff811115611667576116666112b5565b5b611673858286016115da565b9150509250929050565b5f805f60608486031215611694576116936112b1565b5b5f6116a1868287016112ff565b93505060206116b2868287016112ff565b92505060406116c386828701611332565b9150509250925092565b5f60ff82169050919050565b6116e2816116cd565b82525050565b5f6020820190506116fb5f8301846116d9565b92915050565b5f60208284031215611716576117156112b1565b5b5f611723848285016112ff565b91505092915050565b5f8060408385031215611742576117416112b1565b5b5f61174f858286016112ff565b9250506020611760858286016112ff565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117ae57607f821691505b6020821081036117c1576117c061176a565b5b50919050565b7f4e6f20726563697069656e7473206c69737465642e00000000000000000000005f82015250565b5f6117fb601583611222565b9150611806826117c7565b602082019050919050565b5f6020820190508181035f830152611828816117ef565b9050919050565b7f416d6f756e7420616e6420726563697069656e74206c656e6774687320646f205f8201527f6e6f74206d617463682e00000000000000000000000000000000000000000000602082015250565b5f611889602a83611222565b91506118948261182f565b604082019050919050565b5f6020820190508181035f8301526118b68161187d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f457665727920616d6f756e74206d75737420626520706f7369746976652e00005f82015250565b5f61191e601e83611222565b9150611929826118ea565b602082019050919050565b5f6020820190508181035f83015261194b81611912565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61198982611313565b915061199483611313565b92508282019050808211156119ac576119ab611952565b5b92915050565b7f53656e64657220646f6573206e6f74206861766520656e6f75676820466961735f8201527f20746f6b656e732e000000000000000000000000000000000000000000000000602082015250565b5f611a0c602883611222565b9150611a17826119b2565b604082019050919050565b5f6020820190508181035f830152611a3981611a00565b9050919050565b5f606082019050611a535f8301866113b7565b611a6060208301856113b7565b611a6d60408301846113df565b949350505050565b611a7e81611384565b8114611a88575f80fd5b50565b5f81519050611a9981611a75565b92915050565b5f60208284031215611ab457611ab36112b1565b5b5f611ac184828501611a8b565b91505092915050565b5f611ad482611313565b9150611adf83611313565b9250828202611aed81611313565b91508282048414831517611b0457611b03611952565b5b5092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f611b4a611b45611b4084611b0b565b611b27565b611b14565b9050919050565b611b5a81611b30565b82525050565b5f602082019050611b735f830184611b51565b92915050565b5f606082019050611b8c5f8301866113b7565b611b9960208301856113df565b611ba660408301846113df565b949350505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611c0a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611bcf565b611c148683611bcf565b95508019841693508086168417925050509392505050565b5f611c46611c41611c3c84611313565b611b27565b611313565b9050919050565b5f819050919050565b611c5f83611c2c565b611c73611c6b82611c4d565b848454611bdb565b825550505050565b5f90565b611c87611c7b565b611c92818484611c56565b505050565b5b81811015611cb557611caa5f82611c7f565b600181019050611c98565b5050565b601f821115611cfa57611ccb81611bae565b611cd484611bc0565b81016020851015611ce3578190505b611cf7611cef85611bc0565b830182611c97565b50505b505050565b5f82821c905092915050565b5f611d1a5f1984600802611cff565b1980831691505092915050565b5f611d328383611d0b565b9150826002028217905092915050565b611d4b82611218565b67ffffffffffffffff811115611d6457611d6361140b565b5b611d6e8254611797565b611d79828285611cb9565b5f60209050601f831160018114611daa575f8415611d98578287015190505b611da28582611d27565b865550611e09565b601f198416611db886611bae565b5f5b82811015611ddf57848901518255600182019150602085019450602081019050611dba565b86831015611dfc5784890151611df8601f891682611d0b565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220849706be338fe1718d1d2704401dc14b4d2aeb4327e4dea2ace825a8e2b6c21a64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c80638129fc1c116100a057806395d89b411161006f57806395d89b4114610295578063a9059cbb146102b3578063cc9338a3146102e3578063dd62ed3e14610301578063f64bdbc01461033157610109565b80638129fc1c146102315780638ad9403f1461023b5780638dae9318146102595780638fc590141461027757610109565b80631e89d545116100dc5780631e89d5451461019757806323b872dd146101b3578063313ce567146101e357806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b578063178bc9d51461015b57806318160ddd14610179575b5f80fd5b61011561034f565b6040516101229190611288565b60405180910390f35b61014560048036038101906101409190611346565b6103ed565b604051610152919061139e565b60405180910390f35b61016361040f565b60405161017091906113c6565b60405180910390f35b610181610427565b60405161018e91906113ee565b60405180910390f35b6101b160048036038101906101ac9190611607565b61043e565b005b6101cd60048036038101906101c8919061167d565b61067e565b6040516101da919061139e565b60405180910390f35b6101eb6106ac565b6040516101f891906116e8565b60405180910390f35b61021b60048036038101906102169190611701565b6106b4565b60405161022891906113ee565b60405180910390f35b610239610707565b005b61024361095c565b60405161025091906113ee565b60405180910390f35b610261610964565b60405161026e91906113ee565b60405180910390f35b61027f61096c565b60405161028c91906113c6565b60405180910390f35b61029d610984565b6040516102aa9190611288565b60405180910390f35b6102cd60048036038101906102c89190611346565b610a22565b6040516102da919061139e565b60405180910390f35b6102eb610a44565b6040516102f891906113c6565b60405180910390f35b61031b6004803603810190610316919061172c565b610a5c565b60405161032891906113ee565b60405180910390f35b610339610aec565b60405161034691906113ee565b60405180910390f35b60605f61035a610af4565b905080600301805461036b90611797565b80601f016020809104026020016040519081016040528092919081815260200182805461039790611797565b80156103e25780601f106103b9576101008083540402835291602001916103e2565b820191905f5260205f20905b8154815290600101906020018083116103c557829003601f168201915b505050505091505090565b5f806103f7610b1b565b9050610404818585610b22565b600191505092915050565b73a9f2cf92b207d8ab3c37f8586e5659c0ff52ddca81565b5f80610431610af4565b9050806002015491505090565b5f825111610481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047890611811565b60405180910390fd5b80518251146104c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bc9061189f565b60405180910390fd5b5f805b8351811015610562575f8382815181106104e5576104e46118bd565b5b60200260200101511161052d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052490611934565b60405180910390fd5b8281815181106105405761053f6118bd565b5b602002602001015182610553919061197f565b915080806001019150506104c8565b5061056c336106b4565b8111156105ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a590611a22565b60405180910390fd5b5f5b8351811015610678573073ffffffffffffffffffffffffffffffffffffffff166323b872dd338684815181106105e9576105e86118bd565b5b6020026020010151868581518110610604576106036118bd565b5b60200260200101516040518463ffffffff1660e01b815260040161062a93929190611a40565b6020604051808303815f875af1158015610646573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066a9190611a9f565b5080806001019150506105b0565b50505050565b5f80610688610b1b565b9050610695858285610b34565b6106a0858585610bc6565b60019150509392505050565b5f6012905090565b5f806106be610af4565b9050805f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050919050565b5f610710610cb6565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff161480156107585750825b90505f60018367ffffffffffffffff1614801561078b57505f3073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610799575080155b156107d0576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550831561081d576001855f0160086101000a81548160ff0219169083151502179055505b6108916040518060400160405280600481526020017f46696173000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4649415300000000000000000000000000000000000000000000000000000000815250610cdd565b6108c6739910435497f7dce57f0aefbfa4cb473c79bdf4b6670de0b6b3a7640000630a6e49c06108c19190611aca565b610cf3565b6108fb73a9f2cf92b207d8ab3c37f8586e5659c0ff52ddca670de0b6b3a7640000630a6e49c06108f69190611aca565b610cf3565b8315610955575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2600160405161094c9190611b60565b60405180910390a15b5050505050565b630a6e49c081565b6314dc938081565b7383b3b323de7d7a91702e173a903ef9ea104b66c581565b60605f61098f610af4565b90508060040180546109a090611797565b80601f01602080910402602001604051908101604052809291908181526020018280546109cc90611797565b8015610a175780601f106109ee57610100808354040283529160200191610a17565b820191905f5260205f20905b8154815290600101906020018083116109fa57829003601f168201915b505050505091505090565b5f80610a2c610b1b565b9050610a39818585610bc6565b600191505092915050565b739910435497f7dce57f0aefbfa4cb473c79bdf4b681565b5f80610a66610af4565b9050806001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b630a6e49c081565b5f7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00905090565b5f33905090565b610b2f8383836001610d72565b505050565b5f610b3f8484610a5c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bc05781811015610bb1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ba893929190611b79565b60405180910390fd5b610bbf84848484035f610d72565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c36575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c2d91906113c6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c9d91906113c6565b60405180910390fd5b610cb1838383610f4f565b505050565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b610ce561117e565b610cef82826111be565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d63575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d5a91906113c6565b60405180910390fd5b610d6e5f8383610f4f565b5050565b5f610d7b610af4565b90505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ded575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610de491906113c6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e5d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e5491906113c6565b60405180910390fd5b82816001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508115610f48578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610f3f91906113ee565b60405180910390a35b5050505050565b5f610f58610af4565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fac5781816002015f828254610fa0919061197f565b9250508190555061107e565b5f815f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611037578481846040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161102e93929190611b79565b60405180910390fd5b828103825f015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110c75781816002015f8282540392505081905550611113565b81815f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117091906113ee565b60405180910390a350505050565b6111866111fa565b6111bc576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6111c661117e565b5f6111cf610af4565b9050828160030190816111e29190611d42565b50818160040190816111f49190611d42565b50505050565b5f611203610cb6565b5f0160089054906101000a900460ff16905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61125a82611218565b6112648185611222565b9350611274818560208601611232565b61127d81611240565b840191505092915050565b5f6020820190508181035f8301526112a08184611250565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112e2826112b9565b9050919050565b6112f2816112d8565b81146112fc575f80fd5b50565b5f8135905061130d816112e9565b92915050565b5f819050919050565b61132581611313565b811461132f575f80fd5b50565b5f813590506113408161131c565b92915050565b5f806040838503121561135c5761135b6112b1565b5b5f611369858286016112ff565b925050602061137a85828601611332565b9150509250929050565b5f8115159050919050565b61139881611384565b82525050565b5f6020820190506113b15f83018461138f565b92915050565b6113c0816112d8565b82525050565b5f6020820190506113d95f8301846113b7565b92915050565b6113e881611313565b82525050565b5f6020820190506114015f8301846113df565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61144182611240565b810181811067ffffffffffffffff821117156114605761145f61140b565b5b80604052505050565b5f6114726112a8565b905061147e8282611438565b919050565b5f67ffffffffffffffff82111561149d5761149c61140b565b5b602082029050602081019050919050565b5f80fd5b5f6114c46114bf84611483565b611469565b905080838252602082019050602084028301858111156114e7576114e66114ae565b5b835b8181101561151057806114fc88826112ff565b8452602084019350506020810190506114e9565b5050509392505050565b5f82601f83011261152e5761152d611407565b5b813561153e8482602086016114b2565b91505092915050565b5f67ffffffffffffffff8211156115615761156061140b565b5b602082029050602081019050919050565b5f61158461157f84611547565b611469565b905080838252602082019050602084028301858111156115a7576115a66114ae565b5b835b818110156115d057806115bc8882611332565b8452602084019350506020810190506115a9565b5050509392505050565b5f82601f8301126115ee576115ed611407565b5b81356115fe848260208601611572565b91505092915050565b5f806040838503121561161d5761161c6112b1565b5b5f83013567ffffffffffffffff81111561163a576116396112b5565b5b6116468582860161151a565b925050602083013567ffffffffffffffff811115611667576116666112b5565b5b611673858286016115da565b9150509250929050565b5f805f60608486031215611694576116936112b1565b5b5f6116a1868287016112ff565b93505060206116b2868287016112ff565b92505060406116c386828701611332565b9150509250925092565b5f60ff82169050919050565b6116e2816116cd565b82525050565b5f6020820190506116fb5f8301846116d9565b92915050565b5f60208284031215611716576117156112b1565b5b5f611723848285016112ff565b91505092915050565b5f8060408385031215611742576117416112b1565b5b5f61174f858286016112ff565b9250506020611760858286016112ff565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117ae57607f821691505b6020821081036117c1576117c061176a565b5b50919050565b7f4e6f20726563697069656e7473206c69737465642e00000000000000000000005f82015250565b5f6117fb601583611222565b9150611806826117c7565b602082019050919050565b5f6020820190508181035f830152611828816117ef565b9050919050565b7f416d6f756e7420616e6420726563697069656e74206c656e6774687320646f205f8201527f6e6f74206d617463682e00000000000000000000000000000000000000000000602082015250565b5f611889602a83611222565b91506118948261182f565b604082019050919050565b5f6020820190508181035f8301526118b68161187d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f457665727920616d6f756e74206d75737420626520706f7369746976652e00005f82015250565b5f61191e601e83611222565b9150611929826118ea565b602082019050919050565b5f6020820190508181035f83015261194b81611912565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61198982611313565b915061199483611313565b92508282019050808211156119ac576119ab611952565b5b92915050565b7f53656e64657220646f6573206e6f74206861766520656e6f75676820466961735f8201527f20746f6b656e732e000000000000000000000000000000000000000000000000602082015250565b5f611a0c602883611222565b9150611a17826119b2565b604082019050919050565b5f6020820190508181035f830152611a3981611a00565b9050919050565b5f606082019050611a535f8301866113b7565b611a6060208301856113b7565b611a6d60408301846113df565b949350505050565b611a7e81611384565b8114611a88575f80fd5b50565b5f81519050611a9981611a75565b92915050565b5f60208284031215611ab457611ab36112b1565b5b5f611ac184828501611a8b565b91505092915050565b5f611ad482611313565b9150611adf83611313565b9250828202611aed81611313565b91508282048414831517611b0457611b03611952565b5b5092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f611b4a611b45611b4084611b0b565b611b27565b611b14565b9050919050565b611b5a81611b30565b82525050565b5f602082019050611b735f830184611b51565b92915050565b5f606082019050611b8c5f8301866113b7565b611b9960208301856113df565b611ba660408301846113df565b949350505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611c0a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611bcf565b611c148683611bcf565b95508019841693508086168417925050509392505050565b5f611c46611c41611c3c84611313565b611b27565b611313565b9050919050565b5f819050919050565b611c5f83611c2c565b611c73611c6b82611c4d565b848454611bdb565b825550505050565b5f90565b611c87611c7b565b611c92818484611c56565b505050565b5b81811015611cb557611caa5f82611c7f565b600181019050611c98565b5050565b601f821115611cfa57611ccb81611bae565b611cd484611bc0565b81016020851015611ce3578190505b611cf7611cef85611bc0565b830182611c97565b50505b505050565b5f82821c905092915050565b5f611d1a5f1984600802611cff565b1980831691505092915050565b5f611d328383611d0b565b9150826002028217905092915050565b611d4b82611218565b67ffffffffffffffff811115611d6457611d6361140b565b5b611d6e8254611797565b611d79828285611cb9565b5f60209050601f831160018114611daa575f8415611d98578287015190505b611da28582611d27565b865550611e09565b601f198416611db886611bae565b5f5b82811015611ddf57848901518255600182019150602085019450602081019050611dba565b86831015611dfc5784890151611df8601f891682611d0b565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220849706be338fe1718d1d2704401dc14b4d2aeb4327e4dea2ace825a8e2b6c21a64736f6c634300081a0033
Deployed Bytecode Sourcemap
33311:1496:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23517:147;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26090:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33487:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24731:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34087:717;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26858:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24582:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24949:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33875:204;;;:::i;:::-;;33726:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33432:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33783:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23783:151;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25328:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33635:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25573:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33578:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23517:147;23562:13;23588:22;23613:18;:16;:18::i;:::-;23588:43;;23649:1;:7;;23642:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23517:147;:::o;26090:190::-;26163:4;26180:13;26196:12;:10;:12::i;:::-;26180:28;;26219:31;26228:5;26235:7;26244:5;26219:8;:31::i;:::-;26268:4;26261:11;;;26090:190;;;;:::o;33487:84::-;33529:42;33487:84;:::o;24731:155::-;24783:7;24803:22;24828:18;:16;:18::i;:::-;24803:43;;24864:1;:14;;;24857:21;;;24731:155;:::o;34087:717::-;34211:1;34191:10;:17;:21;34183:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34278:7;:14;34257:10;:17;:35;34249:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;34350:19;34389:9;34384:172;34408:10;:17;34404:1;:21;34384:172;;;34468:1;34455:7;34463:1;34455:10;;;;;;;;:::i;:::-;;;;;;;;:14;34447:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34534:7;34542:1;34534:10;;;;;;;;:::i;:::-;;;;;;;;34519:25;;;;;:::i;:::-;;;34427:3;;;;;;;34384:172;;;;34589:21;34599:10;34589:9;:21::i;:::-;34574:11;:36;;34566:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;34671:9;34666:131;34690:10;:17;34686:1;:21;34666:131;;;34729:4;:17;;;34747:10;34759;34770:1;34759:13;;;;;;;;:::i;:::-;;;;;;;;34774:7;34782:1;34774:10;;;;;;;;:::i;:::-;;;;;;;;34729:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34709:3;;;;;;;34666:131;;;;34172:632;34087:717;;:::o;26858:249::-;26945:4;26962:15;26980:12;:10;:12::i;:::-;26962:30;;27003:37;27019:4;27025:7;27034:5;27003:15;:37::i;:::-;27051:26;27061:4;27067:2;27071:5;27051:9;:26::i;:::-;27095:4;27088:11;;;26858:249;;;;;:::o;24582:84::-;24631:5;24656:2;24649:9;;24582:84;:::o;24949:174::-;25014:7;25034:22;25059:18;:16;:18::i;:::-;25034:43;;25095:1;:11;;:20;25107:7;25095:20;;;;;;;;;;;;;;;;25088:27;;;24949:174;;;:::o;33875:204::-;7949:30;7982:26;:24;:26::i;:::-;7949:59;;8073:19;8096:1;:15;;;;;;;;;;;;8095:16;8073:38;;8122:18;8143:1;:14;;;;;;;;;;;;8122:35;;8508:17;8543:1;8528:11;:16;;;:34;;;;;8548:14;8528:34;8508:54;;8573:17;8608:1;8593:11;:16;;;:50;;;;;8642:1;8621:4;8613:25;;;:30;8593:50;8573:70;;8661:12;8660:13;:30;;;;;8678:12;8677:13;8660:30;8656:93;;;8714:23;;;;;;;;;;;;;;8656:93;8776:1;8759;:14;;;:18;;;;;;;;;;;;;;;;;;8792:14;8788:69;;;8841:4;8823:1;:15;;;:22;;;;;;;;;;;;;;;;;;8788:69;33927:28:::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:28::i;:::-;33966:47;33677:42;34005:6;33767:9;33989:23;;;;:::i;:::-;33966:5;:47::i;:::-;34024;33529:42;34063:6;33619:9;34047:23;;;;:::i;:::-;34024:5;:47::i;:::-;8883:14:::0;8879:104;;;8932:5;8914:1;:15;;;:23;;;;;;;;;;;;;;;;;;8957:14;8969:1;8957:14;;;;;;:::i;:::-;;;;;;;;8879:104;7881:1109;;;;;33875:204::o;33726:50::-;33767:9;33726:50;:::o;33432:48::-;33471:9;33432:48;:::o;33783:83::-;33824:42;33783:83;:::o;23783:151::-;23830:13;23856:22;23881:18;:16;:18::i;:::-;23856:43;;23917:1;:9;;23910:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23783:151;:::o;25328:182::-;25397:4;25414:13;25430:12;:10;:12::i;:::-;25414:28;;25453:27;25463:5;25470:2;25474:5;25453:9;:27::i;:::-;25498:4;25491:11;;;25328:182;;;;:::o;33635:84::-;33677:42;33635:84;:::o;25573:198::-;25653:7;25673:22;25698:18;:16;:18::i;:::-;25673:43;;25734:1;:13;;:20;25748:5;25734:20;;;;;;;;;;;;;;;:29;25755:7;25734:29;;;;;;;;;;;;;;;;25727:36;;;25573:198;;;;:::o;33578:50::-;33619:9;33578:50;:::o;22723:157::-;22773:22;22842:20;22832:30;;22723:157;:::o;13718:98::-;13771:7;13798:10;13791:17;;13718:98;:::o;30981:130::-;31066:37;31075:5;31082:7;31091:5;31098:4;31066:8;:37::i;:::-;30981:130;;;:::o;32753:487::-;32853:24;32880:25;32890:5;32897:7;32880:9;:25::i;:::-;32853:52;;32940:17;32920:16;:37;32916:317;;32997:5;32978:16;:24;32974:132;;;33057:7;33066:16;33084:5;33030:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;32974:132;33149:57;33158:5;33165:7;33193:5;33174:16;:24;33200:5;33149:8;:57::i;:::-;32916:317;32842:398;32753:487;;;:::o;27492:308::-;27592:1;27576:18;;:4;:18;;;27572:88;;27645:1;27618:30;;;;;;;;;;;:::i;:::-;;;;;;;;27572:88;27688:1;27674:16;;:2;:16;;;27670:88;;27743:1;27714:32;;;;;;;;;;;:::i;:::-;;;;;;;;27670:88;27768:24;27776:4;27782:2;27786:5;27768:7;:24::i;:::-;27492:308;;;:::o;12645:174::-;12703:30;12780:21;12770:31;;12645:174;:::o;23070:149::-;10787:20;:18;:20::i;:::-;23173:38:::1;23196:5;23203:7;23173:22;:38::i;:::-;23070:149:::0;;:::o;29676:213::-;29766:1;29747:21;;:7;:21;;;29743:93;;29821:1;29792:32;;;;;;;;;;;:::i;:::-;;;;;;;;29743:93;29846:35;29862:1;29866:7;29875:5;29846:7;:35::i;:::-;29676:213;;:::o;31962:499::-;32071:22;32096:18;:16;:18::i;:::-;32071:43;;32146:1;32129:19;;:5;:19;;;32125:91;;32201:1;32172:32;;;;;;;;;;;:::i;:::-;;;;;;;;32125:91;32249:1;32230:21;;:7;:21;;;32226:92;;32303:1;32275:31;;;;;;;;;;;:::i;:::-;;;;;;;;32226:92;32360:5;32328:1;:13;;:20;32342:5;32328:20;;;;;;;;;;;;;;;:29;32349:7;32328:29;;;;;;;;;;;;;;;:37;;;;32380:9;32376:78;;;32427:7;32411:31;;32420:5;32411:31;;;32436:5;32411:31;;;;;;:::i;:::-;;;;;;;;32376:78;32060:401;31962:499;;;;:::o;28124:1199::-;28210:22;28235:18;:16;:18::i;:::-;28210:43;;28284:1;28268:18;;:4;:18;;;28264:558;;28424:5;28406:1;:14;;;:23;;;;;;;:::i;:::-;;;;;;;;28264:558;;;28462:19;28484:1;:11;;:17;28496:4;28484:17;;;;;;;;;;;;;;;;28462:39;;28534:5;28520:11;:19;28516:117;;;28592:4;28598:11;28611:5;28567:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;28516:117;28790:5;28776:11;:19;28756:1;:11;;:17;28768:4;28756:17;;;;;;;;;;;;;;;:39;;;;28447:375;28264:558;28852:1;28838:16;;:2;:16;;;28834:439;;29022:5;29004:1;:14;;;:23;;;;;;;;;;;28834:439;;;29241:5;29222:1;:11;;:15;29234:2;29222:15;;;;;;;;;;;;;;;;:24;;;;;;;;;;;28834:439;29305:2;29290:25;;29299:4;29290:25;;;29309:5;29290:25;;;;;;:::i;:::-;;;;;;;;28199:1124;28124:1199;;;:::o;10947:145::-;11015:17;:15;:17::i;:::-;11010:75;;11056:17;;;;;;;;;;;;;;11010:75;10947:145::o;23227:220::-;10787:20;:18;:20::i;:::-;23340:22:::1;23365:18;:16;:18::i;:::-;23340:43;;23404:5;23394:1;:7;;:15;;;;;;:::i;:::-;;23432:7;23420:1;:9;;:19;;;;;;:::i;:::-;;23329:118;23227:220:::0;;:::o;12387:122::-;12437:4;12461:26;:24;:26::i;:::-;:40;;;;;;;;;;;;12454:47;;12387:122;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:118::-;3778:24;3796:5;3778:24;:::i;:::-;3773:3;3766:37;3691:118;;:::o;3815:222::-;3908:4;3946:2;3935:9;3931:18;3923:26;;3959:71;4027:1;4016:9;4012:17;4003:6;3959:71;:::i;:::-;3815:222;;;;:::o;4043:117::-;4152:1;4149;4142:12;4166:180;4214:77;4211:1;4204:88;4311:4;4308:1;4301:15;4335:4;4332:1;4325:15;4352:281;4435:27;4457:4;4435:27;:::i;:::-;4427:6;4423:40;4565:6;4553:10;4550:22;4529:18;4517:10;4514:34;4511:62;4508:88;;;4576:18;;:::i;:::-;4508:88;4616:10;4612:2;4605:22;4395:238;4352:281;;:::o;4639:129::-;4673:6;4700:20;;:::i;:::-;4690:30;;4729:33;4757:4;4749:6;4729:33;:::i;:::-;4639:129;;;:::o;4774:311::-;4851:4;4941:18;4933:6;4930:30;4927:56;;;4963:18;;:::i;:::-;4927:56;5013:4;5005:6;5001:17;4993:25;;5073:4;5067;5063:15;5055:23;;4774:311;;;:::o;5091:117::-;5200:1;5197;5190:12;5231:710;5327:5;5352:81;5368:64;5425:6;5368:64;:::i;:::-;5352:81;:::i;:::-;5343:90;;5453:5;5482:6;5475:5;5468:21;5516:4;5509:5;5505:16;5498:23;;5569:4;5561:6;5557:17;5549:6;5545:30;5598:3;5590:6;5587:15;5584:122;;;5617:79;;:::i;:::-;5584:122;5732:6;5715:220;5749:6;5744:3;5741:15;5715:220;;;5824:3;5853:37;5886:3;5874:10;5853:37;:::i;:::-;5848:3;5841:50;5920:4;5915:3;5911:14;5904:21;;5791:144;5775:4;5770:3;5766:14;5759:21;;5715:220;;;5719:21;5333:608;;5231:710;;;;;:::o;5964:370::-;6035:5;6084:3;6077:4;6069:6;6065:17;6061:27;6051:122;;6092:79;;:::i;:::-;6051:122;6209:6;6196:20;6234:94;6324:3;6316:6;6309:4;6301:6;6297:17;6234:94;:::i;:::-;6225:103;;6041:293;5964:370;;;;:::o;6340:311::-;6417:4;6507:18;6499:6;6496:30;6493:56;;;6529:18;;:::i;:::-;6493:56;6579:4;6571:6;6567:17;6559:25;;6639:4;6633;6629:15;6621:23;;6340:311;;;:::o;6674:710::-;6770:5;6795:81;6811:64;6868:6;6811:64;:::i;:::-;6795:81;:::i;:::-;6786:90;;6896:5;6925:6;6918:5;6911:21;6959:4;6952:5;6948:16;6941:23;;7012:4;7004:6;7000:17;6992:6;6988:30;7041:3;7033:6;7030:15;7027:122;;;7060:79;;:::i;:::-;7027:122;7175:6;7158:220;7192:6;7187:3;7184:15;7158:220;;;7267:3;7296:37;7329:3;7317:10;7296:37;:::i;:::-;7291:3;7284:50;7363:4;7358:3;7354:14;7347:21;;7234:144;7218:4;7213:3;7209:14;7202:21;;7158:220;;;7162:21;6776:608;;6674:710;;;;;:::o;7407:370::-;7478:5;7527:3;7520:4;7512:6;7508:17;7504:27;7494:122;;7535:79;;:::i;:::-;7494:122;7652:6;7639:20;7677:94;7767:3;7759:6;7752:4;7744:6;7740:17;7677:94;:::i;:::-;7668:103;;7484:293;7407:370;;;;:::o;7783:894::-;7901:6;7909;7958:2;7946:9;7937:7;7933:23;7929:32;7926:119;;;7964:79;;:::i;:::-;7926:119;8112:1;8101:9;8097:17;8084:31;8142:18;8134:6;8131:30;8128:117;;;8164:79;;:::i;:::-;8128:117;8269:78;8339:7;8330:6;8319:9;8315:22;8269:78;:::i;:::-;8259:88;;8055:302;8424:2;8413:9;8409:18;8396:32;8455:18;8447:6;8444:30;8441:117;;;8477:79;;:::i;:::-;8441:117;8582:78;8652:7;8643:6;8632:9;8628:22;8582:78;:::i;:::-;8572:88;;8367:303;7783:894;;;;;:::o;8683:619::-;8760:6;8768;8776;8825:2;8813:9;8804:7;8800:23;8796:32;8793:119;;;8831:79;;:::i;:::-;8793:119;8951:1;8976:53;9021:7;9012:6;9001:9;8997:22;8976:53;:::i;:::-;8966:63;;8922:117;9078:2;9104:53;9149:7;9140:6;9129:9;9125:22;9104:53;:::i;:::-;9094:63;;9049:118;9206:2;9232:53;9277:7;9268:6;9257:9;9253:22;9232:53;:::i;:::-;9222:63;;9177:118;8683:619;;;;;:::o;9308:86::-;9343:7;9383:4;9376:5;9372:16;9361:27;;9308:86;;;:::o;9400:112::-;9483:22;9499:5;9483:22;:::i;:::-;9478:3;9471:35;9400:112;;:::o;9518:214::-;9607:4;9645:2;9634:9;9630:18;9622:26;;9658:67;9722:1;9711:9;9707:17;9698:6;9658:67;:::i;:::-;9518:214;;;;:::o;9738:329::-;9797:6;9846:2;9834:9;9825:7;9821:23;9817:32;9814:119;;;9852:79;;:::i;:::-;9814:119;9972:1;9997:53;10042:7;10033:6;10022:9;10018:22;9997:53;:::i;:::-;9987:63;;9943:117;9738:329;;;;:::o;10073:474::-;10141:6;10149;10198:2;10186:9;10177:7;10173:23;10169:32;10166:119;;;10204:79;;:::i;:::-;10166:119;10324:1;10349:53;10394:7;10385:6;10374:9;10370:22;10349:53;:::i;:::-;10339:63;;10295:117;10451:2;10477:53;10522:7;10513:6;10502:9;10498:22;10477:53;:::i;:::-;10467:63;;10422:118;10073:474;;;;;:::o;10553:180::-;10601:77;10598:1;10591:88;10698:4;10695:1;10688:15;10722:4;10719:1;10712:15;10739:320;10783:6;10820:1;10814:4;10810:12;10800:22;;10867:1;10861:4;10857:12;10888:18;10878:81;;10944:4;10936:6;10932:17;10922:27;;10878:81;11006:2;10998:6;10995:14;10975:18;10972:38;10969:84;;11025:18;;:::i;:::-;10969:84;10790:269;10739:320;;;:::o;11065:171::-;11205:23;11201:1;11193:6;11189:14;11182:47;11065:171;:::o;11242:366::-;11384:3;11405:67;11469:2;11464:3;11405:67;:::i;:::-;11398:74;;11481:93;11570:3;11481:93;:::i;:::-;11599:2;11594:3;11590:12;11583:19;;11242:366;;;:::o;11614:419::-;11780:4;11818:2;11807:9;11803:18;11795:26;;11867:9;11861:4;11857:20;11853:1;11842:9;11838:17;11831:47;11895:131;12021:4;11895:131;:::i;:::-;11887:139;;11614:419;;;:::o;12039:229::-;12179:34;12175:1;12167:6;12163:14;12156:58;12248:12;12243:2;12235:6;12231:15;12224:37;12039:229;:::o;12274:366::-;12416:3;12437:67;12501:2;12496:3;12437:67;:::i;:::-;12430:74;;12513:93;12602:3;12513:93;:::i;:::-;12631:2;12626:3;12622:12;12615:19;;12274:366;;;:::o;12646:419::-;12812:4;12850:2;12839:9;12835:18;12827:26;;12899:9;12893:4;12889:20;12885:1;12874:9;12870:17;12863:47;12927:131;13053:4;12927:131;:::i;:::-;12919:139;;12646:419;;;:::o;13071:180::-;13119:77;13116:1;13109:88;13216:4;13213:1;13206:15;13240:4;13237:1;13230:15;13257:180;13397:32;13393:1;13385:6;13381:14;13374:56;13257:180;:::o;13443:366::-;13585:3;13606:67;13670:2;13665:3;13606:67;:::i;:::-;13599:74;;13682:93;13771:3;13682:93;:::i;:::-;13800:2;13795:3;13791:12;13784:19;;13443:366;;;:::o;13815:419::-;13981:4;14019:2;14008:9;14004:18;13996:26;;14068:9;14062:4;14058:20;14054:1;14043:9;14039:17;14032:47;14096:131;14222:4;14096:131;:::i;:::-;14088:139;;13815:419;;;:::o;14240:180::-;14288:77;14285:1;14278:88;14385:4;14382:1;14375:15;14409:4;14406:1;14399:15;14426:191;14466:3;14485:20;14503:1;14485:20;:::i;:::-;14480:25;;14519:20;14537:1;14519:20;:::i;:::-;14514:25;;14562:1;14559;14555:9;14548:16;;14583:3;14580:1;14577:10;14574:36;;;14590:18;;:::i;:::-;14574:36;14426:191;;;;:::o;14623:227::-;14763:34;14759:1;14751:6;14747:14;14740:58;14832:10;14827:2;14819:6;14815:15;14808:35;14623:227;:::o;14856:366::-;14998:3;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15095:93;15184:3;15095:93;:::i;:::-;15213:2;15208:3;15204:12;15197:19;;14856:366;;;:::o;15228:419::-;15394:4;15432:2;15421:9;15417:18;15409:26;;15481:9;15475:4;15471:20;15467:1;15456:9;15452:17;15445:47;15509:131;15635:4;15509:131;:::i;:::-;15501:139;;15228:419;;;:::o;15653:442::-;15802:4;15840:2;15829:9;15825:18;15817:26;;15853:71;15921:1;15910:9;15906:17;15897:6;15853:71;:::i;:::-;15934:72;16002:2;15991:9;15987:18;15978:6;15934:72;:::i;:::-;16016;16084:2;16073:9;16069:18;16060:6;16016:72;:::i;:::-;15653:442;;;;;;:::o;16101:116::-;16171:21;16186:5;16171:21;:::i;:::-;16164:5;16161:32;16151:60;;16207:1;16204;16197:12;16151:60;16101:116;:::o;16223:137::-;16277:5;16308:6;16302:13;16293:22;;16324:30;16348:5;16324:30;:::i;:::-;16223:137;;;;:::o;16366:345::-;16433:6;16482:2;16470:9;16461:7;16457:23;16453:32;16450:119;;;16488:79;;:::i;:::-;16450:119;16608:1;16633:61;16686:7;16677:6;16666:9;16662:22;16633:61;:::i;:::-;16623:71;;16579:125;16366:345;;;;:::o;16717:410::-;16757:7;16780:20;16798:1;16780:20;:::i;:::-;16775:25;;16814:20;16832:1;16814:20;:::i;:::-;16809:25;;16869:1;16866;16862:9;16891:30;16909:11;16891:30;:::i;:::-;16880:41;;17070:1;17061:7;17057:15;17054:1;17051:22;17031:1;17024:9;17004:83;16981:139;;17100:18;;:::i;:::-;16981:139;16765:362;16717:410;;;;:::o;17133:85::-;17178:7;17207:5;17196:16;;17133:85;;;:::o;17224:101::-;17260:7;17300:18;17293:5;17289:30;17278:41;;17224:101;;;:::o;17331:60::-;17359:3;17380:5;17373:12;;17331:60;;;:::o;17397:156::-;17454:9;17487:60;17504:42;17513:32;17539:5;17513:32;:::i;:::-;17504:42;:::i;:::-;17487:60;:::i;:::-;17474:73;;17397:156;;;:::o;17559:145::-;17653:44;17691:5;17653:44;:::i;:::-;17648:3;17641:57;17559:145;;:::o;17710:236::-;17810:4;17848:2;17837:9;17833:18;17825:26;;17861:78;17936:1;17925:9;17921:17;17912:6;17861:78;:::i;:::-;17710:236;;;;:::o;17952:442::-;18101:4;18139:2;18128:9;18124:18;18116:26;;18152:71;18220:1;18209:9;18205:17;18196:6;18152:71;:::i;:::-;18233:72;18301:2;18290:9;18286:18;18277:6;18233:72;:::i;:::-;18315;18383:2;18372:9;18368:18;18359:6;18315:72;:::i;:::-;17952:442;;;;;;:::o;18400:141::-;18449:4;18472:3;18464:11;;18495:3;18492:1;18485:14;18529:4;18526:1;18516:18;18508:26;;18400:141;;;:::o;18547:93::-;18584:6;18631:2;18626;18619:5;18615:14;18611:23;18601:33;;18547:93;;;:::o;18646:107::-;18690:8;18740:5;18734:4;18730:16;18709:37;;18646:107;;;;:::o;18759:393::-;18828:6;18878:1;18866:10;18862:18;18901:97;18931:66;18920:9;18901:97;:::i;:::-;19019:39;19049:8;19038:9;19019:39;:::i;:::-;19007:51;;19091:4;19087:9;19080:5;19076:21;19067:30;;19140:4;19130:8;19126:19;19119:5;19116:30;19106:40;;18835:317;;18759:393;;;;;:::o;19158:142::-;19208:9;19241:53;19259:34;19268:24;19286:5;19268:24;:::i;:::-;19259:34;:::i;:::-;19241:53;:::i;:::-;19228:66;;19158:142;;;:::o;19306:75::-;19349:3;19370:5;19363:12;;19306:75;;;:::o;19387:269::-;19497:39;19528:7;19497:39;:::i;:::-;19558:91;19607:41;19631:16;19607:41;:::i;:::-;19599:6;19592:4;19586:11;19558:91;:::i;:::-;19552:4;19545:105;19463:193;19387:269;;;:::o;19662:73::-;19707:3;19662:73;:::o;19741:189::-;19818:32;;:::i;:::-;19859:65;19917:6;19909;19903:4;19859:65;:::i;:::-;19794:136;19741:189;;:::o;19936:186::-;19996:120;20013:3;20006:5;20003:14;19996:120;;;20067:39;20104:1;20097:5;20067:39;:::i;:::-;20040:1;20033:5;20029:13;20020:22;;19996:120;;;19936:186;;:::o;20128:543::-;20229:2;20224:3;20221:11;20218:446;;;20263:38;20295:5;20263:38;:::i;:::-;20347:29;20365:10;20347:29;:::i;:::-;20337:8;20333:44;20530:2;20518:10;20515:18;20512:49;;;20551:8;20536:23;;20512:49;20574:80;20630:22;20648:3;20630:22;:::i;:::-;20620:8;20616:37;20603:11;20574:80;:::i;:::-;20233:431;;20218:446;20128:543;;;:::o;20677:117::-;20731:8;20781:5;20775:4;20771:16;20750:37;;20677:117;;;;:::o;20800:169::-;20844:6;20877:51;20925:1;20921:6;20913:5;20910:1;20906:13;20877:51;:::i;:::-;20873:56;20958:4;20952;20948:15;20938:25;;20851:118;20800:169;;;;:::o;20974:295::-;21050:4;21196:29;21221:3;21215:4;21196:29;:::i;:::-;21188:37;;21258:3;21255:1;21251:11;21245:4;21242:21;21234:29;;20974:295;;;;:::o;21274:1395::-;21391:37;21424:3;21391:37;:::i;:::-;21493:18;21485:6;21482:30;21479:56;;;21515:18;;:::i;:::-;21479:56;21559:38;21591:4;21585:11;21559:38;:::i;:::-;21644:67;21704:6;21696;21690:4;21644:67;:::i;:::-;21738:1;21762:4;21749:17;;21794:2;21786:6;21783:14;21811:1;21806:618;;;;22468:1;22485:6;22482:77;;;22534:9;22529:3;22525:19;22519:26;22510:35;;22482:77;22585:67;22645:6;22638:5;22585:67;:::i;:::-;22579:4;22572:81;22441:222;21776:887;;21806:618;21858:4;21854:9;21846:6;21842:22;21892:37;21924:4;21892:37;:::i;:::-;21951:1;21965:208;21979:7;21976:1;21973:14;21965:208;;;22058:9;22053:3;22049:19;22043:26;22035:6;22028:42;22109:1;22101:6;22097:14;22087:24;;22156:2;22145:9;22141:18;22128:31;;22002:4;21999:1;21995:12;21990:17;;21965:208;;;22201:6;22192:7;22189:19;22186:179;;;22259:9;22254:3;22250:19;22244:26;22302:48;22344:4;22336:6;22332:17;22321:9;22302:48;:::i;:::-;22294:6;22287:64;22209:156;22186:179;22411:1;22407;22399:6;22395:14;22391:22;22385:4;22378:36;21813:611;;;21776:887;;21366:1303;;;21274:1395;;:::o
Swarm Source
ipfs://849706be338fe1718d1d2704401dc14b4d2aeb4327e4dea2ace825a8e2b6c21a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.