Overview ERC-20
Price
$0.00 @ 0.000000 FTM
Fully Diluted Market Cap
Total Supply:
976,052,050 FS
Holders:
4,068 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
The FantomStarter launchpad provides logistics on more than one chain. It supports Fantom (FTM), Binance Smart Chain (BSC), Ethereum (ETH), and Polygon (Matic) and many others.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FSTFantomStarterFixedSupply
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-22 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success,) = recipient.call{value : amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value : value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } modifier isAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Account is not in the admin list"); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } /** * @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 { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } contract FSTFantomStarterFixedSupply is ERC20Burnable, AccessControl { uint256 public constant MAX_SUPPLY_TOKENS = 1_000_000_000_000_000_000_000_000_000; constructor() ERC20("FantomStarter", "FS") { // There is no max supply _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _mint(msg.sender, MAX_SUPPLY_TOKENS); } }
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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f46616e746f6d53746172746572000000000000000000000000000000000000008152506040518060400160405280600281526020017f4653000000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003e9565b508060049080519060200190620000af929190620003e9565b505050620000c76000801b33620000eb60201b60201c565b620000e5336b033b2e3c9fd0803ce80000006200010160201b60201c565b62000645565b620000fd82826200027a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b90620004fa565b60405180910390fd5b62000188600083836200036c60201b60201c565b80600260008282546200019c919062000555565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f3919062000555565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025a9190620005c3565b60405180910390a362000276600083836200037160201b60201c565b5050565b6200028c82826200037660201b60201c565b620003685760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200030d620003e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620003f7906200060f565b90600052602060002090601f0160209004810192826200041b576000855562000467565b82601f106200043657805160ff191683800117855562000467565b8280016001018555821562000467579182015b828111156200046657825182559160200191906001019062000449565b5b5090506200047691906200047a565b5090565b5b80821115620004955760008160009055506001016200047b565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620004e2601f8362000499565b9150620004ef82620004aa565b602082019050919050565b600060208201905081810360008301526200051581620004d3565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000562826200051c565b91506200056f836200051c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a757620005a662000526565b5b828201905092915050565b620005bd816200051c565b82525050565b6000602082019050620005da6000830184620005b2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062857607f821691505b602082108114156200063f576200063e620005e0565b5b50919050565b61254480620006556000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80633e201d76116100b857806395d89b411161007c57806395d89b4114610374578063a217fddf14610392578063a457c2d7146103b0578063a9059cbb146103e0578063d547741f14610410578063dd62ed3e1461042c57610137565b80633e201d76146102be57806342966c68146102dc57806370a08231146102f857806379cc67901461032857806391d148541461034457610137565b8063248a9ca3116100ff578063248a9ca3146102085780632f2ff15d14610238578063313ce5671461025457806336568abe14610272578063395093511461028e57610137565b806301ffc9a71461013c57806306fdde031461016c578063095ea7b31461018a57806318160ddd146101ba57806323b872dd146101d8575b600080fd5b61015660048036038101906101519190611745565b61045c565b604051610163919061178d565b60405180910390f35b6101746104d6565b6040516101819190611841565b60405180910390f35b6101a4600480360381019061019f91906118f7565b610568565b6040516101b1919061178d565b60405180910390f35b6101c2610586565b6040516101cf9190611946565b60405180910390f35b6101f260048036038101906101ed9190611961565b610590565b6040516101ff919061178d565b60405180910390f35b610222600480360381019061021d91906119ea565b610688565b60405161022f9190611a26565b60405180910390f35b610252600480360381019061024d9190611a41565b6106a8565b005b61025c6106d1565b6040516102699190611a9d565b60405180910390f35b61028c60048036038101906102879190611a41565b6106da565b005b6102a860048036038101906102a391906118f7565b61075d565b6040516102b5919061178d565b60405180910390f35b6102c6610809565b6040516102d39190611946565b60405180910390f35b6102f660048036038101906102f19190611ab8565b610819565b005b610312600480360381019061030d9190611ae5565b61082d565b60405161031f9190611946565b60405180910390f35b610342600480360381019061033d91906118f7565b610875565b005b61035e60048036038101906103599190611a41565b6108f0565b60405161036b919061178d565b60405180910390f35b61037c61095b565b6040516103899190611841565b60405180910390f35b61039a6109ed565b6040516103a79190611a26565b60405180910390f35b6103ca60048036038101906103c591906118f7565b6109f4565b6040516103d7919061178d565b60405180910390f35b6103fa60048036038101906103f591906118f7565b610adf565b604051610407919061178d565b60405180910390f35b61042a60048036038101906104259190611a41565b610afd565b005b61044660048036038101906104419190611b12565b610b26565b6040516104539190611946565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cf57506104ce82610bad565b5b9050919050565b6060600380546104e590611b81565b80601f016020809104026020016040519081016040528092919081815260200182805461051190611b81565b801561055e5780601f106105335761010080835404028352916020019161055e565b820191906000526020600020905b81548152906001019060200180831161054157829003601f168201915b5050505050905090565b600061057c610575610c17565b8484610c1f565b6001905092915050565b6000600254905090565b600061059d848484610dea565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e8610c17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f90611c25565b60405180910390fd5b61067c85610674610c17565b858403610c1f565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6106b182610688565b6106c2816106bd610c17565b61106b565b6106cc8383611108565b505050565b60006012905090565b6106e2610c17565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690611cb7565b60405180910390fd5b61075982826111e9565b5050565b60006107ff61076a610c17565b848460016000610778610c17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107fa9190611d06565b610c1f565b6001905092915050565b6b033b2e3c9fd0803ce800000081565b61082a610824610c17565b826112cb565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061088883610883610c17565b610b26565b9050818110156108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490611dce565b60405180910390fd5b6108e1836108d9610c17565b848403610c1f565b6108eb83836112cb565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461096a90611b81565b80601f016020809104026020016040519081016040528092919081815260200182805461099690611b81565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b6000801b81565b60008060016000610a03610c17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611e60565b60405180910390fd5b610ad4610acb610c17565b85858403610c1f565b600191505092915050565b6000610af3610aec610c17565b8484610dea565b6001905092915050565b610b0682610688565b610b1781610b12610c17565b61106b565b610b2183836111e9565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690611ef2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611f84565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ddd9190611946565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190612016565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906120a8565b60405180910390fd5b610ed58383836114a2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061213a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fee9190611d06565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110529190611946565b60405180910390a36110658484846114a7565b50505050565b61107582826108f0565b6111045761109a8173ffffffffffffffffffffffffffffffffffffffff1660146114ac565b6110a88360001c60206114ac565b6040516020016110b992919061222e565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb9190611841565b60405180910390fd5b5050565b61111282826108f0565b6111e55760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061118a610c17565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6111f382826108f0565b156112c75760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061126c610c17565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906122da565b60405180910390fd5b611347826000836114a2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c49061236c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611424919061238c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114899190611946565b60405180910390a361149d836000846114a7565b505050565b505050565b505050565b6060600060028360026114bf91906123c0565b6114c99190611d06565b67ffffffffffffffff8111156114e2576114e161241a565b5b6040519080825280601f01601f1916602001820160405280156115145781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061154c5761154b612449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106115b0576115af612449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026115f091906123c0565b6115fa9190611d06565b90505b600181111561169a577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061163c5761163b612449565b5b1a60f81b82828151811061165357611652612449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061169390612478565b90506115fd565b50600084146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d5906124ee565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611722816116ed565b811461172d57600080fd5b50565b60008135905061173f81611719565b92915050565b60006020828403121561175b5761175a6116e8565b5b600061176984828501611730565b91505092915050565b60008115159050919050565b61178781611772565b82525050565b60006020820190506117a2600083018461177e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117e25780820151818401526020810190506117c7565b838111156117f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000611813826117a8565b61181d81856117b3565b935061182d8185602086016117c4565b611836816117f7565b840191505092915050565b6000602082019050818103600083015261185b8184611808565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061188e82611863565b9050919050565b61189e81611883565b81146118a957600080fd5b50565b6000813590506118bb81611895565b92915050565b6000819050919050565b6118d4816118c1565b81146118df57600080fd5b50565b6000813590506118f1816118cb565b92915050565b6000806040838503121561190e5761190d6116e8565b5b600061191c858286016118ac565b925050602061192d858286016118e2565b9150509250929050565b611940816118c1565b82525050565b600060208201905061195b6000830184611937565b92915050565b60008060006060848603121561197a576119796116e8565b5b6000611988868287016118ac565b9350506020611999868287016118ac565b92505060406119aa868287016118e2565b9150509250925092565b6000819050919050565b6119c7816119b4565b81146119d257600080fd5b50565b6000813590506119e4816119be565b92915050565b600060208284031215611a00576119ff6116e8565b5b6000611a0e848285016119d5565b91505092915050565b611a20816119b4565b82525050565b6000602082019050611a3b6000830184611a17565b92915050565b60008060408385031215611a5857611a576116e8565b5b6000611a66858286016119d5565b9250506020611a77858286016118ac565b9150509250929050565b600060ff82169050919050565b611a9781611a81565b82525050565b6000602082019050611ab26000830184611a8e565b92915050565b600060208284031215611ace57611acd6116e8565b5b6000611adc848285016118e2565b91505092915050565b600060208284031215611afb57611afa6116e8565b5b6000611b09848285016118ac565b91505092915050565b60008060408385031215611b2957611b286116e8565b5b6000611b37858286016118ac565b9250506020611b48858286016118ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b9957607f821691505b60208210811415611bad57611bac611b52565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611c0f6028836117b3565b9150611c1a82611bb3565b604082019050919050565b60006020820190508181036000830152611c3e81611c02565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611ca1602f836117b3565b9150611cac82611c45565b604082019050919050565b60006020820190508181036000830152611cd081611c94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d11826118c1565b9150611d1c836118c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d5157611d50611cd7565b5b828201905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611db86024836117b3565b9150611dc382611d5c565b604082019050919050565b60006020820190508181036000830152611de781611dab565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e4a6025836117b3565b9150611e5582611dee565b604082019050919050565b60006020820190508181036000830152611e7981611e3d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611edc6024836117b3565b9150611ee782611e80565b604082019050919050565b60006020820190508181036000830152611f0b81611ecf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6e6022836117b3565b9150611f7982611f12565b604082019050919050565b60006020820190508181036000830152611f9d81611f61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120006025836117b3565b915061200b82611fa4565b604082019050919050565b6000602082019050818103600083015261202f81611ff3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120926023836117b3565b915061209d82612036565b604082019050919050565b600060208201905081810360008301526120c181612085565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121246026836117b3565b915061212f826120c8565b604082019050919050565b6000602082019050818103600083015261215381612117565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061219b60178361215a565b91506121a682612165565b601782019050919050565b60006121bc826117a8565b6121c6818561215a565b93506121d68185602086016117c4565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061221860118361215a565b9150612223826121e2565b601182019050919050565b60006122398261218e565b915061224582856121b1565b91506122508261220b565b915061225c82846121b1565b91508190509392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006122c46021836117b3565b91506122cf82612268565b604082019050919050565b600060208201905081810360008301526122f3816122b7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123566022836117b3565b9150612361826122fa565b604082019050919050565b6000602082019050818103600083015261238581612349565b9050919050565b6000612397826118c1565b91506123a2836118c1565b9250828210156123b5576123b4611cd7565b5b828203905092915050565b60006123cb826118c1565b91506123d6836118c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561240f5761240e611cd7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612483826118c1565b9150600082141561249757612496611cd7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006124d86020836117b3565b91506124e3826124a2565b602082019050919050565b60006020820190508181036000830152612507816124cb565b905091905056fea2646970667358221220e3da46569f097ca7df2963383a827c22364d9087807737dac69ce47f82d6773b64736f6c63430008090033
Deployed ByteCode Sourcemap
37516:357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31774:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17699:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19866:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18819:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20517:480;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33538:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18661:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34586:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21406:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37594:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36743:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18990:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37153:356;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32070:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17918:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29904:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22124:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19330:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33930:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19568:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31774:204;31859:4;31898:32;31883:47;;;:11;:47;;;;:87;;;;31934:36;31958:11;31934:23;:36::i;:::-;31883:87;31876:94;;31774:204;;;:::o;17699:100::-;17753:13;17786:5;17779:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17699:100;:::o;19866:169::-;19949:4;19966:39;19975:12;:10;:12::i;:::-;19989:7;19998:6;19966:8;:39::i;:::-;20023:4;20016:11;;19866:169;;;;:::o;18819:108::-;18880:7;18907:12;;18900:19;;18819:108;:::o;20517:480::-;20657:4;20674:36;20684:6;20692:9;20703:6;20674:9;:36::i;:::-;20723:24;20750:11;:19;20762:6;20750:19;;;;;;;;;;;;;;;:33;20770:12;:10;:12::i;:::-;20750:33;;;;;;;;;;;;;;;;20723:60;;20822:6;20802:16;:26;;20794:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;20901:57;20910:6;20918:12;:10;:12::i;:::-;20951:6;20932:16;:25;20901:8;:57::i;:::-;20985:4;20978:11;;;20517:480;;;;;:::o;33153:123::-;33219:7;33246:6;:12;33253:4;33246:12;;;;;;;;;;;:22;;;33239:29;;33153:123;;;:::o;33538:147::-;33621:18;33634:4;33621:12;:18::i;:::-;31508:30;31519:4;31525:12;:10;:12::i;:::-;31508:10;:30::i;:::-;33652:25:::1;33663:4;33669:7;33652:10;:25::i;:::-;33538:147:::0;;;:::o;18661:93::-;18719:5;18744:2;18737:9;;18661:93;:::o;34586:218::-;34693:12;:10;:12::i;:::-;34682:23;;:7;:23;;;34674:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;34770:26;34782:4;34788:7;34770:11;:26::i;:::-;34586:218;;:::o;21406:215::-;21494:4;21511:80;21520:12;:10;:12::i;:::-;21534:7;21580:10;21543:11;:25;21555:12;:10;:12::i;:::-;21543:25;;;;;;;;;;;;;;;:34;21569:7;21543:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;21511:8;:80::i;:::-;21609:4;21602:11;;21406:215;;;;:::o;37594:81::-;37638:37;37594:81;:::o;36743:91::-;36799:27;36805:12;:10;:12::i;:::-;36819:6;36799:5;:27::i;:::-;36743:91;:::o;18990:127::-;19064:7;19091:9;:18;19101:7;19091:18;;;;;;;;;;;;;;;;19084:25;;18990:127;;;:::o;37153:356::-;37230:24;37257:32;37267:7;37276:12;:10;:12::i;:::-;37257:9;:32::i;:::-;37230:59;;37328:6;37308:16;:26;;37300:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37403:58;37412:7;37421:12;:10;:12::i;:::-;37454:6;37435:16;:25;37403:8;:58::i;:::-;37479:22;37485:7;37494:6;37479:5;:22::i;:::-;37219:290;37153:356;;:::o;32070:139::-;32148:4;32172:6;:12;32179:4;32172:12;;;;;;;;;;;:20;;:29;32193:7;32172:29;;;;;;;;;;;;;;;;;;;;;;;;;32165:36;;32070:139;;;;:::o;17918:104::-;17974:13;18007:7;18000:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17918:104;:::o;29904:49::-;29949:4;29904:49;;;:::o;22124:401::-;22217:4;22234:24;22261:11;:25;22273:12;:10;:12::i;:::-;22261:25;;;;;;;;;;;;;;;:34;22287:7;22261:34;;;;;;;;;;;;;;;;22234:61;;22334:15;22314:16;:35;;22306:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;22419:67;22428:12;:10;:12::i;:::-;22442:7;22470:15;22451:16;:34;22419:8;:67::i;:::-;22513:4;22506:11;;;22124:401;;;;:::o;19330:175::-;19416:4;19433:42;19443:12;:10;:12::i;:::-;19457:9;19468:6;19433:9;:42::i;:::-;19493:4;19486:11;;19330:175;;;;:::o;33930:149::-;34014:18;34027:4;34014:12;:18::i;:::-;31508:30;31519:4;31525:12;:10;:12::i;:::-;31508:10;:30::i;:::-;34045:26:::1;34057:4;34063:7;34045:11;:26::i;:::-;33930:149:::0;;;:::o;19568:151::-;19657:7;19684:11;:18;19696:5;19684:18;;;;;;;;;;;;;;;:27;19703:7;19684:27;;;;;;;;;;;;;;;;19677:34;;19568:151;;;;:::o;2266:157::-;2351:4;2390:25;2375:40;;;:11;:40;;;;2368:47;;2266:157;;;:::o;602:98::-;655:7;682:10;675:17;;602:98;:::o;25772:380::-;25925:1;25908:19;;:5;:19;;;;25900:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26006:1;25987:21;;:7;:21;;;;25979:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26090:6;26060:11;:18;26072:5;26060:18;;;;;;;;;;;;;;;:27;26079:7;26060:27;;;;;;;;;;;;;;;:36;;;;26128:7;26112:32;;26121:5;26112:32;;;26137:6;26112:32;;;;;;:::i;:::-;;;;;;;;25772:380;;;:::o;23015:721::-;23173:1;23155:20;;:6;:20;;;;23147:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;23257:1;23236:23;;:9;:23;;;;23228:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23312:47;23333:6;23341:9;23352:6;23312:20;:47::i;:::-;23372:21;23396:9;:17;23406:6;23396:17;;;;;;;;;;;;;;;;23372:41;;23449:6;23432:13;:23;;23424:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23562:6;23546:13;:22;23526:9;:17;23536:6;23526:17;;;;;;;;;;;;;;;:42;;;;23610:6;23586:9;:20;23596:9;23586:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;23651:9;23634:35;;23643:6;23634:35;;;23662:6;23634:35;;;;;;:::i;:::-;;;;;;;;23682:46;23702:6;23710:9;23721:6;23682:19;:46::i;:::-;23136:600;23015:721;;;:::o;32499:465::-;32580:22;32588:4;32594:7;32580;:22::i;:::-;32575:382;;32752:41;32780:7;32752:41;;32790:2;32752:19;:41::i;:::-;32858:38;32886:4;32878:13;;32893:2;32858:19;:38::i;:::-;32665:250;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32619:326;;;;;;;;;;;:::i;:::-;;;;;;;;32575:382;32499:465;;:::o;35890:229::-;35965:22;35973:4;35979:7;35965;:22::i;:::-;35960:152;;36036:4;36004:6;:12;36011:4;36004:12;;;;;;;;;;;:20;;:29;36025:7;36004:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;36087:12;:10;:12::i;:::-;36060:40;;36078:7;36060:40;;36072:4;36060:40;;;;;;;;;;35960:152;35890:229;;:::o;36127:230::-;36202:22;36210:4;36216:7;36202;:22::i;:::-;36198:152;;;36273:5;36241:6;:12;36248:4;36241:12;;;;;;;;;;;:20;;:29;36262:7;36241:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;36325:12;:10;:12::i;:::-;36298:40;;36316:7;36298:40;;36310:4;36298:40;;;;;;;;;;36198:152;36127:230;;:::o;24755:579::-;24858:1;24839:21;;:7;:21;;;;24831:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24911:49;24932:7;24949:1;24953:6;24911:20;:49::i;:::-;24973:22;24998:9;:18;25008:7;24998:18;;;;;;;;;;;;;;;;24973:43;;25053:6;25035:14;:24;;25027:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25164:6;25147:14;:23;25126:9;:18;25136:7;25126:18;;;;;;;;;;;;;;;:44;;;;25204:6;25188:12;;:22;;;;;;;:::i;:::-;;;;;;;;25254:1;25228:37;;25237:7;25228:37;;;25258:6;25228:37;;;;;;:::i;:::-;;;;;;;;25278:48;25298:7;25315:1;25319:6;25278:19;:48::i;:::-;24820:514;24755:579;;:::o;26752:125::-;;;;:::o;27481:124::-;;;;:::o;3957:451::-;4032:13;4058:19;4103:1;4094:6;4090:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;4080:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4058:47;;4116:15;:6;4123:1;4116:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;4142;:6;4149:1;4142:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;4173:9;4198:1;4189:6;4185:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;4173:26;;4168:135;4205:1;4201;:5;4168:135;;;4240:12;4261:3;4253:5;:11;4240:25;;;;;;;:::i;:::-;;;;;4228:6;4235:1;4228:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;4290:1;4280:11;;;;;4208:3;;;;:::i;:::-;;;4168:135;;;;4330:1;4321:5;:10;4313:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4393:6;4379:21;;;3957:451;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:::-;7575:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:119;;;7630:79;;:::i;:::-;7592:119;7750:1;7775:53;7820:7;7811:6;7800:9;7796:22;7775:53;:::i;:::-;7765:63;;7721:117;7516:329;;;;:::o;7851:474::-;7919:6;7927;7976:2;7964:9;7955:7;7951:23;7947:32;7944:119;;;7982:79;;:::i;:::-;7944:119;8102:1;8127:53;8172:7;8163:6;8152:9;8148:22;8127:53;:::i;:::-;8117:63;;8073:117;8229:2;8255:53;8300:7;8291:6;8280:9;8276:22;8255:53;:::i;:::-;8245:63;;8200:118;7851:474;;;;;:::o;8331:180::-;8379:77;8376:1;8369:88;8476:4;8473:1;8466:15;8500:4;8497:1;8490:15;8517:320;8561:6;8598:1;8592:4;8588:12;8578:22;;8645:1;8639:4;8635:12;8666:18;8656:81;;8722:4;8714:6;8710:17;8700:27;;8656:81;8784:2;8776:6;8773:14;8753:18;8750:38;8747:84;;;8803:18;;:::i;:::-;8747:84;8568:269;8517:320;;;:::o;8843:227::-;8983:34;8979:1;8971:6;8967:14;8960:58;9052:10;9047:2;9039:6;9035:15;9028:35;8843:227;:::o;9076:366::-;9218:3;9239:67;9303:2;9298:3;9239:67;:::i;:::-;9232:74;;9315:93;9404:3;9315:93;:::i;:::-;9433:2;9428:3;9424:12;9417:19;;9076:366;;;:::o;9448:419::-;9614:4;9652:2;9641:9;9637:18;9629:26;;9701:9;9695:4;9691:20;9687:1;9676:9;9672:17;9665:47;9729:131;9855:4;9729:131;:::i;:::-;9721:139;;9448:419;;;:::o;9873:234::-;10013:34;10009:1;10001:6;9997:14;9990:58;10082:17;10077:2;10069:6;10065:15;10058:42;9873:234;:::o;10113:366::-;10255:3;10276:67;10340:2;10335:3;10276:67;:::i;:::-;10269:74;;10352:93;10441:3;10352:93;:::i;:::-;10470:2;10465:3;10461:12;10454:19;;10113:366;;;:::o;10485:419::-;10651:4;10689:2;10678:9;10674:18;10666:26;;10738:9;10732:4;10728:20;10724:1;10713:9;10709:17;10702:47;10766:131;10892:4;10766:131;:::i;:::-;10758:139;;10485:419;;;:::o;10910:180::-;10958:77;10955:1;10948:88;11055:4;11052:1;11045:15;11079:4;11076:1;11069:15;11096:305;11136:3;11155:20;11173:1;11155:20;:::i;:::-;11150:25;;11189:20;11207:1;11189:20;:::i;:::-;11184:25;;11343:1;11275:66;11271:74;11268:1;11265:81;11262:107;;;11349:18;;:::i;:::-;11262:107;11393:1;11390;11386:9;11379:16;;11096:305;;;;:::o;11407:223::-;11547:34;11543:1;11535:6;11531:14;11524:58;11616:6;11611:2;11603:6;11599:15;11592:31;11407:223;:::o;11636:366::-;11778:3;11799:67;11863:2;11858:3;11799:67;:::i;:::-;11792:74;;11875:93;11964:3;11875:93;:::i;:::-;11993:2;11988:3;11984:12;11977:19;;11636:366;;;:::o;12008:419::-;12174:4;12212:2;12201:9;12197:18;12189:26;;12261:9;12255:4;12251:20;12247:1;12236:9;12232:17;12225:47;12289:131;12415:4;12289:131;:::i;:::-;12281:139;;12008:419;;;:::o;12433:224::-;12573:34;12569:1;12561:6;12557:14;12550:58;12642:7;12637:2;12629:6;12625:15;12618:32;12433:224;:::o;12663:366::-;12805:3;12826:67;12890:2;12885:3;12826:67;:::i;:::-;12819:74;;12902:93;12991:3;12902:93;:::i;:::-;13020:2;13015:3;13011:12;13004:19;;12663:366;;;:::o;13035:419::-;13201:4;13239:2;13228:9;13224:18;13216:26;;13288:9;13282:4;13278:20;13274:1;13263:9;13259:17;13252:47;13316:131;13442:4;13316:131;:::i;:::-;13308:139;;13035:419;;;:::o;13460:223::-;13600:34;13596:1;13588:6;13584:14;13577:58;13669:6;13664:2;13656:6;13652:15;13645:31;13460:223;:::o;13689:366::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:419::-;14227:4;14265:2;14254:9;14250:18;14242:26;;14314:9;14308:4;14304:20;14300:1;14289:9;14285:17;14278:47;14342:131;14468:4;14342:131;:::i;:::-;14334:139;;14061:419;;;:::o;14486:221::-;14626:34;14622:1;14614:6;14610:14;14603:58;14695:4;14690:2;14682:6;14678:15;14671:29;14486:221;:::o;14713:366::-;14855:3;14876:67;14940:2;14935:3;14876:67;:::i;:::-;14869:74;;14952:93;15041:3;14952:93;:::i;:::-;15070:2;15065:3;15061:12;15054:19;;14713:366;;;:::o;15085:419::-;15251:4;15289:2;15278:9;15274:18;15266:26;;15338:9;15332:4;15328:20;15324:1;15313:9;15309:17;15302:47;15366:131;15492:4;15366:131;:::i;:::-;15358:139;;15085:419;;;:::o;15510:224::-;15650:34;15646:1;15638:6;15634:14;15627:58;15719:7;15714:2;15706:6;15702:15;15695:32;15510:224;:::o;15740:366::-;15882:3;15903:67;15967:2;15962:3;15903:67;:::i;:::-;15896:74;;15979:93;16068:3;15979:93;:::i;:::-;16097:2;16092:3;16088:12;16081:19;;15740:366;;;:::o;16112:419::-;16278:4;16316:2;16305:9;16301:18;16293:26;;16365:9;16359:4;16355:20;16351:1;16340:9;16336:17;16329:47;16393:131;16519:4;16393:131;:::i;:::-;16385:139;;16112:419;;;:::o;16537:222::-;16677:34;16673:1;16665:6;16661:14;16654:58;16746:5;16741:2;16733:6;16729:15;16722:30;16537:222;:::o;16765:366::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:419::-;17303:4;17341:2;17330:9;17326:18;17318:26;;17390:9;17384:4;17380:20;17376:1;17365:9;17361:17;17354:47;17418:131;17544:4;17418:131;:::i;:::-;17410:139;;17137:419;;;:::o;17562:225::-;17702:34;17698:1;17690:6;17686:14;17679:58;17771:8;17766:2;17758:6;17754:15;17747:33;17562:225;:::o;17793:366::-;17935:3;17956:67;18020:2;18015:3;17956:67;:::i;:::-;17949:74;;18032:93;18121:3;18032:93;:::i;:::-;18150:2;18145:3;18141:12;18134:19;;17793:366;;;:::o;18165:419::-;18331:4;18369:2;18358:9;18354:18;18346:26;;18418:9;18412:4;18408:20;18404:1;18393:9;18389:17;18382:47;18446:131;18572:4;18446:131;:::i;:::-;18438:139;;18165:419;;;:::o;18590:148::-;18692:11;18729:3;18714:18;;18590:148;;;;:::o;18744:173::-;18884:25;18880:1;18872:6;18868:14;18861:49;18744:173;:::o;18923:402::-;19083:3;19104:85;19186:2;19181:3;19104:85;:::i;:::-;19097:92;;19198:93;19287:3;19198:93;:::i;:::-;19316:2;19311:3;19307:12;19300:19;;18923:402;;;:::o;19331:377::-;19437:3;19465:39;19498:5;19465:39;:::i;:::-;19520:89;19602:6;19597:3;19520:89;:::i;:::-;19513:96;;19618:52;19663:6;19658:3;19651:4;19644:5;19640:16;19618:52;:::i;:::-;19695:6;19690:3;19686:16;19679:23;;19441:267;19331:377;;;;:::o;19714:167::-;19854:19;19850:1;19842:6;19838:14;19831:43;19714:167;:::o;19887:402::-;20047:3;20068:85;20150:2;20145:3;20068:85;:::i;:::-;20061:92;;20162:93;20251:3;20162:93;:::i;:::-;20280:2;20275:3;20271:12;20264:19;;19887:402;;;:::o;20295:967::-;20677:3;20699:148;20843:3;20699:148;:::i;:::-;20692:155;;20864:95;20955:3;20946:6;20864:95;:::i;:::-;20857:102;;20976:148;21120:3;20976:148;:::i;:::-;20969:155;;21141:95;21232:3;21223:6;21141:95;:::i;:::-;21134:102;;21253:3;21246:10;;20295:967;;;;;:::o;21268:220::-;21408:34;21404:1;21396:6;21392:14;21385:58;21477:3;21472:2;21464:6;21460:15;21453:28;21268:220;:::o;21494:366::-;21636:3;21657:67;21721:2;21716:3;21657:67;:::i;:::-;21650:74;;21733:93;21822:3;21733:93;:::i;:::-;21851:2;21846:3;21842:12;21835:19;;21494:366;;;:::o;21866:419::-;22032:4;22070:2;22059:9;22055:18;22047:26;;22119:9;22113:4;22109:20;22105:1;22094:9;22090:17;22083:47;22147:131;22273:4;22147:131;:::i;:::-;22139:139;;21866:419;;;:::o;22291:221::-;22431:34;22427:1;22419:6;22415:14;22408:58;22500:4;22495:2;22487:6;22483:15;22476:29;22291:221;:::o;22518:366::-;22660:3;22681:67;22745:2;22740:3;22681:67;:::i;:::-;22674:74;;22757:93;22846:3;22757:93;:::i;:::-;22875:2;22870:3;22866:12;22859:19;;22518:366;;;:::o;22890:419::-;23056:4;23094:2;23083:9;23079:18;23071:26;;23143:9;23137:4;23133:20;23129:1;23118:9;23114:17;23107:47;23171:131;23297:4;23171:131;:::i;:::-;23163:139;;22890:419;;;:::o;23315:191::-;23355:4;23375:20;23393:1;23375:20;:::i;:::-;23370:25;;23409:20;23427:1;23409:20;:::i;:::-;23404:25;;23448:1;23445;23442:8;23439:34;;;23453:18;;:::i;:::-;23439:34;23498:1;23495;23491:9;23483:17;;23315:191;;;;:::o;23512:348::-;23552:7;23575:20;23593:1;23575:20;:::i;:::-;23570:25;;23609:20;23627:1;23609:20;:::i;:::-;23604:25;;23797:1;23729:66;23725:74;23722:1;23719:81;23714:1;23707:9;23700:17;23696:105;23693:131;;;23804:18;;:::i;:::-;23693:131;23852:1;23849;23845:9;23834:20;;23512:348;;;;:::o;23866:180::-;23914:77;23911:1;23904:88;24011:4;24008:1;24001:15;24035:4;24032:1;24025:15;24052:180;24100:77;24097:1;24090:88;24197:4;24194:1;24187:15;24221:4;24218:1;24211:15;24238:171;24277:3;24300:24;24318:5;24300:24;:::i;:::-;24291:33;;24346:4;24339:5;24336:15;24333:41;;;24354:18;;:::i;:::-;24333:41;24401:1;24394:5;24390:13;24383:20;;24238:171;;;:::o;24415:182::-;24555:34;24551:1;24543:6;24539:14;24532:58;24415:182;:::o;24603:366::-;24745:3;24766:67;24830:2;24825:3;24766:67;:::i;:::-;24759:74;;24842:93;24931:3;24842:93;:::i;:::-;24960:2;24955:3;24951:12;24944:19;;24603:366;;;:::o;24975:419::-;25141:4;25179:2;25168:9;25164:18;25156:26;;25228:9;25222:4;25218:20;25214:1;25203:9;25199:17;25192:47;25256:131;25382:4;25256:131;:::i;:::-;25248:139;;24975:419;;;:::o
Swarm Source
ipfs://e3da46569f097ca7df2963383a827c22364d9087807737dac69ce47f82d6773b