Token Tixl Token
Overview ERC-20
Price
$0.05 @ 0.058287 MATIC (-6.52%)
Fully Diluted Market Cap
Total Supply:
1,365,032.037602 TXL
Holders:
307 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Tixl is an interoperable ecosystem for DeFi products and focuses on efficient financial transactions. At the core of the Tixl ecosystem is a layer 1 platform called “Autobahn Network” serving as a base platform allowing to transfer any digital asset instantly, with almost zero fees and even private.Market
Volume (24H) | : | $58,347.00 |
Market Capitalization | : | $6,413,004.00 |
Circulating Supply | : | 122,621,946.00 TXL |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TixlToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-29 */ // Sources flattened with hardhat v2.6.7 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @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) external; /** * @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) external; /** * @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) external; } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @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; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @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 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()); _; } /** * @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()); } } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File contracts/v2/utils/MyPausable.sol pragma solidity 0.8.4; /** * @title MyPausable * This contracts introduces pausability and access control to all smart contracts that inherit from it */ abstract contract MyPausable is AccessControl, Pausable { bytes32 public constant PAUSABILITY_ADMIN_ROLE = keccak256('PAUSABILITY_ADMIN_ROLE'); constructor() { // set up admin roles _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PAUSABILITY_ADMIN_ROLE, _msgSender()); } /** * @notice Pauses all contract functions that have the "whenNotPaused" modifier * * @dev can only be called by PAUSABILITY_ADMIN_ROLE */ function pause() external whenNotPaused { require( hasRole(PAUSABILITY_ADMIN_ROLE, _msgSender()), 'MyPausable: must have PAUSABILITY_ADMIN_ROLE to execute this function' ); Pausable._pause(); } /** * @notice Un-pauses/resumes all contract functions that have the "whenNotPaused" modifier * * @dev can only be called by PAUSABILITY_ADMIN_ROLE */ function unpause() external whenPaused { require( hasRole(PAUSABILITY_ADMIN_ROLE, _msgSender()), 'MyPausable: must have PAUSABILITY_ADMIN_ROLE to execute this function' ); Pausable._unpause(); } } // File contracts/v2/token/TixlToken.sol pragma solidity 0.8.4; /** * @title TixlToken */ contract TixlToken is ERC20Burnable, MyPausable, Ownable { bytes32 public constant MINTER_ROLE = keccak256('MINTER_ROLE'); string contractName; string contractSymbol; /** * @notice Constructor that sets name and symbol * @param name full name of the token * @param symbol token symbol */ constructor(string memory name, string memory symbol) ERC20(name, symbol) MyPausable() Ownable() { contractName = name; contractSymbol = symbol; // set up admin roles _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); } /** * @notice Mints (creates new) tokens and sends them to the given address * * @dev can only be called by MINTER_ROLE * @param to the address of the receiver the tokens should be minted to * @param amount the amount of tokens to be minted */ function mint(address to, uint256 amount) public whenNotPaused { require(hasRole(MINTER_ROLE, _msgSender()), 'TixlToken: must have MINTER_ROLE to mint'); _mint(to, amount); } /** * @notice This function (or hook) is called before every token transfer * * @dev for further information on hooks see https://docs.openzeppelin.com/contracts/3.x/extending-contracts#using-hooks * @param from the address of the sender of the token transfer * @param to the address of the recipient of the token transfer * @param amount the amount of tokens that will be transfered */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override whenNotPaused { super._beforeTokenTransfer(from, to, amount); } /** * @notice Returns the name of this token */ function name() public view override returns (string memory) { return contractName; } /** * @notice Returns the symbol of this token */ function symbol() public view override returns (string memory) { return contractSymbol; } /** * @notice Updates name and symbol of this token * can only be called by the owner of this token (=the LiquidityManager contract) * @dev to update a token's name and symbol, please use setNameAndSymbolOfLpToken() in LiquidityManager contract */ function setNameAndSymbol(string memory newName, string memory newSymbol) external onlyOwner { contractName = newName; contractSymbol = newSymbol; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSABILITY_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setNameAndSymbol","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200228838038062002288833981016040819052620000349162000388565b8151829082906200004d9060039060208501906200022f565b508051620000639060049060208401906200022f565b50506006805460ff19169055506200007d60003362000121565b620000a97feb1e30a2c040af5abdd7a3e1f8e000b5e5bd5504b85aa4a414f689173b958e513362000121565b620000b43362000131565b8151620000c99060079060208501906200022f565b508051620000df9060089060208401906200022f565b50620000ed60003362000121565b620001197f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000121565b505062000442565b6200012d82826200018b565b5050565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff166200012d5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001eb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200023d90620003ef565b90600052602060002090601f016020900481019282620002615760008555620002ac565b82601f106200027c57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ac5782518255916020019190600101906200028f565b50620002ba929150620002be565b5090565b5b80821115620002ba5760008155600101620002bf565b600082601f830112620002e6578081fd5b81516001600160401b03808211156200030357620003036200042c565b604051601f8301601f19908116603f011681019082821181831017156200032e576200032e6200042c565b816040528381526020925086838588010111156200034a578485fd5b8491505b838210156200036d57858201830151818301840152908201906200034e565b838211156200037e57848385830101525b9695505050505050565b600080604083850312156200039b578182fd5b82516001600160401b0380821115620003b2578384fd5b620003c086838701620002d5565b93506020850151915080821115620003d6578283fd5b50620003e585828601620002d5565b9150509250929050565b600181811c908216806200040457607f821691505b602082108114156200042657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e3680620004526000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb1161010457806395d89b41116100a2578063d539139311610071578063d53913931461041c578063d547741f14610443578063dd62ed3e14610456578063f2fde38b1461048f57600080fd5b806395d89b41146103e6578063a217fddf146103ee578063a457c2d7146103f6578063a9059cbb1461040957600080fd5b806379cc6790116100de57806379cc6790146103695780638456cb591461037c5780638da5cb5b1461038457806391d14854146103ad57600080fd5b80635c975abb1461032d57806370a0823114610338578063715018a61461036157600080fd5b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a146102ec57806340c10f19146102f457806342966c68146103075780635a4462151461031a57600080fd5b80632f2ff15d146102a2578063313ce567146102b757806336568abe146102c657806339509351146102d957600080fd5b806311b0c390116101b857806311b0c3901461022f57806318160ddd1461026457806323b872dd1461026c578063248a9ca31461027f57600080fd5b806301ffc9a7146101df57806306fdde0314610207578063095ea7b31461021c575b600080fd5b6101f26101ed366004611bb3565b6104a2565b60405190151581526020015b60405180910390f35b61020f61053b565b6040516101fe9190611cd5565b6101f261022a366004611b50565b6105cd565b6102567feb1e30a2c040af5abdd7a3e1f8e000b5e5bd5504b85aa4a414f689173b958e5181565b6040519081526020016101fe565b600254610256565b6101f261027a366004611b15565b6105e3565b61025661028d366004611b79565b60009081526005602052604090206001015490565b6102b56102b0366004611b91565b6106a7565b005b604051601281526020016101fe565b6102b56102d4366004611b91565b6106d2565b6101f26102e7366004611b50565b61075e565b6102b561079a565b6102b5610302366004611b50565b6108a0565b6102b5610315366004611b79565b61098c565b6102b5610328366004611bf3565b610999565b60065460ff166101f2565b610256610346366004611ac9565b6001600160a01b031660009081526020819052604090205490565b6102b5610a20565b6102b5610377366004611b50565b610a8a565b6102b5610b24565b60065461010090046001600160a01b03166040516001600160a01b0390911681526020016101fe565b6101f26103bb366004611b91565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61020f610c1c565b610256600081565b6101f2610404366004611b50565b610c2b565b6101f2610417366004611b50565b610cdc565b6102567f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102b5610451366004611b91565b610ce9565b610256610464366004611ae3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b561049d366004611ac9565b610d0f565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061053557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606007805461054a90611d99565b80601f016020809104026020016040519081016040528092919081815260200182805461057690611d99565b80156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b5050505050905090565b60006105da338484610df4565b50600192915050565b60006105f0848484610f4c565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561068f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61069c8533858403610df4565b506001949350505050565b6000828152600560205260409020600101546106c38133611170565b6106cd83836111f0565b505050565b6001600160a01b03811633146107505760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610686565b61075a8282611292565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105da918590610795908690611d08565b610df4565b60065460ff166107ec5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610686565b6108167feb1e30a2c040af5abdd7a3e1f8e000b5e5bd5504b85aa4a414f689173b958e51336103bb565b6108965760405162461bcd60e51b815260206004820152604560248201527f4d795061757361626c653a206d757374206861766520504155534142494c495460448201527f595f41444d494e5f524f4c4520746f206578656375746520746869732066756e60648201526431ba34b7b760d91b608482015260a401610686565b61089e611315565b565b60065460ff16156108e65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610686565b6109107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336103bb565b6109825760405162461bcd60e51b815260206004820152602860248201527f5469786c546f6b656e3a206d7573742068617665204d494e5445525f524f4c4560448201527f20746f206d696e740000000000000000000000000000000000000000000000006064820152608401610686565b61075a82826113b1565b610996338261149c565b50565b6006546001600160a01b036101009091041633146109f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610686565b8151610a0c90600790602085019061198d565b5080516106cd90600890602084019061198d565b6006546001600160a01b03610100909104163314610a805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610686565b61089e600061162d565b6000610a968333610464565b905081811015610b0d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610686565b610b1a8333848403610df4565b6106cd838361149c565b60065460ff1615610b6a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610686565b610b947feb1e30a2c040af5abdd7a3e1f8e000b5e5bd5504b85aa4a414f689173b958e51336103bb565b610c145760405162461bcd60e51b815260206004820152604560248201527f4d795061757361626c653a206d757374206861766520504155534142494c495460448201527f595f41444d494e5f524f4c4520746f206578656375746520746869732066756e60648201526431ba34b7b760d91b608482015260a401610686565b61089e61169e565b60606008805461054a90611d99565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cc55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610686565b610cd23385858403610df4565b5060019392505050565b60006105da338484610f4c565b600082815260056020526040902060010154610d058133611170565b6106cd8383611292565b6006546001600160a01b03610100909104163314610d6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610686565b6001600160a01b038116610deb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610686565b6109968161162d565b6001600160a01b038316610e6f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610686565b6001600160a01b038216610eeb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610686565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610fc85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610686565b6001600160a01b0382166110445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610686565b61104f838383611719565b6001600160a01b038316600090815260208190526040902054818110156110de5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610686565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611115908490611d08565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116191815260200190565b60405180910390a35b50505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff1661075a576111ae816001600160a01b0316601461175f565b6111b983602061175f565b6040516020016111ca929190611c54565b60408051601f198184030181529082905262461bcd60e51b825261068691600401611cd5565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff1661075a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561124e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff161561075a5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff166113675760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610686565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166114075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610686565b61141360008383611719565b80600260008282546114259190611d08565b90915550506001600160a01b03821660009081526020819052604081208054839290611452908490611d08565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166115185760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610686565b61152482600083611719565b6001600160a01b038216600090815260208190526040902054818110156115b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610686565b6001600160a01b03831660009081526020819052604081208383039055600280548492906115e2908490611d3f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600680546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff16156116e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610686565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113943390565b60065460ff16156106cd5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610686565b6060600061176e836002611d20565b611779906002611d08565b67ffffffffffffffff81111561179f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117c9576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061180e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061186757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061188b846002611d20565b611896906001611d08565b90505b6001811115611937577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106118e557634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061190957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361193081611d82565b9050611899565b5083156119865760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610686565b9392505050565b82805461199990611d99565b90600052602060002090601f0160209004810192826119bb5760008555611a01565b82601f106119d457805160ff1916838001178555611a01565b82800160010185558215611a01579182015b82811115611a015782518255916020019190600101906119e6565b50611a0d929150611a11565b5090565b5b80821115611a0d5760008155600101611a12565b80356001600160a01b0381168114611a3d57600080fd5b919050565b600082601f830112611a52578081fd5b813567ffffffffffffffff80821115611a6d57611a6d611dea565b604051601f8301601f19908116603f01168101908282118183101715611a9557611a95611dea565b81604052838152866020858801011115611aad578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611ada578081fd5b61198682611a26565b60008060408385031215611af5578081fd5b611afe83611a26565b9150611b0c60208401611a26565b90509250929050565b600080600060608486031215611b29578081fd5b611b3284611a26565b9250611b4060208501611a26565b9150604084013590509250925092565b60008060408385031215611b62578182fd5b611b6b83611a26565b946020939093013593505050565b600060208284031215611b8a578081fd5b5035919050565b60008060408385031215611ba3578182fd5b82359150611b0c60208401611a26565b600060208284031215611bc4578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611986578182fd5b60008060408385031215611c05578182fd5b823567ffffffffffffffff80821115611c1c578384fd5b611c2886838701611a42565b93506020850135915080821115611c3d578283fd5b50611c4a85828601611a42565b9150509250929050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611c8c816017850160208801611d56565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611cc9816028840160208801611d56565b01602801949350505050565b6020815260008251806020840152611cf4816040850160208701611d56565b601f01601f19169190910160400192915050565b60008219821115611d1b57611d1b611dd4565b500190565b6000816000190483118215151615611d3a57611d3a611dd4565b500290565b600082821015611d5157611d51611dd4565b500390565b60005b83811015611d71578181015183820152602001611d59565b8381111561116a5750506000910152565b600081611d9157611d91611dd4565b506000190190565b600181811c90821680611dad57607f821691505b60208210811415611dce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220ad99533b91a562e744df980c5695461771b2430a8d4c122c96bde0bf2e83fcd264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a5469786c20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354584c0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a5469786c20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354584c0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Tixl Token
Arg [1] : symbol (string): TXL
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 5469786c20546f6b656e00000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 54584c0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
37720:2554:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29365:204;;;;;;:::i;:::-;;:::i;:::-;;;4828:14:1;;4821:22;4803:41;;4791:2;4776:18;29365:204:0;;;;;;;;39546:99;;;:::i;:::-;;;;;;;:::i;8682:169::-;;;;;;:::i;:::-;;:::i;36492:84::-;;36541:35;36492:84;;;;;5001:25:1;;;4989:2;4974:18;36492:84:0;4956:76:1;7635:108:0;7723:12;;7635:108;;9333:480;;;;;;:::i;:::-;;:::i;30744:123::-;;;;;;:::i;:::-;30810:7;30837:12;;;:6;:12;;;;;:22;;;;30744:123;31129:147;;;;;;:::i;:::-;;:::i;:::-;;7477:93;;;7560:2;13285:36:1;;13273:2;13258:18;7477:93:0;13240:87:1;32177:218:0;;;;;;:::i;:::-;;:::i;10222:215::-;;;;;;:::i;:::-;;:::i;37356:252::-;;;:::i;38639:197::-;;;;;;:::i;:::-;;:::i;16921:91::-;;;;;;:::i;:::-;;:::i;40100:171::-;;;;;;:::i;:::-;;:::i;35031:86::-;35102:7;;;;35031:86;;7806:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7907:18:0;7880:7;7907:18;;;;;;;;;;;;7806:127;19345:94;;;:::i;17331:356::-;;;;;;:::i;:::-;;:::i;36923:251::-;;;:::i;18694:87::-;18767:6;;;;;-1:-1:-1;;;;;18767:6:0;18694:87;;-1:-1:-1;;;;;4596:55:1;;;4578:74;;4566:2;4551:18;18694:87:0;4533:125:1;29661:139:0;;;;;;:::i;:::-;29739:4;29763:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29763:29:0;;;;;;;;;;;;;;;29661:139;39718:103;;;:::i;28752:49::-;;28797:4;28752:49;;10940:401;;;;;;:::i;:::-;;:::i;8146:175::-;;;;;;:::i;:::-;;:::i;37784:62::-;;37822:24;37784:62;;31521:149;;;;;;:::i;:::-;;:::i;8384:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8500:18:0;;;8473:7;8500:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8384:151;19594:192;;;;;;:::i;:::-;;:::i;29365:204::-;29450:4;29474:47;;;29489:32;29474:47;;:87;;-1:-1:-1;26808:25:0;26793:40;;;;29525:36;29467:94;29365:204;-1:-1:-1;;29365:204:0:o;39546:99::-;39592:13;39625:12;39618:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39546:99;:::o;8682:169::-;8765:4;8782:39;4306:10;8805:7;8814:6;8782:8;:39::i;:::-;-1:-1:-1;8839:4:0;8682:169;;;;:::o;9333:480::-;9473:4;9490:36;9500:6;9508:9;9519:6;9490:9;:36::i;:::-;-1:-1:-1;;;;;9566:19:0;;9539:24;9566:19;;;:11;:19;;;;;;;;4306:10;9566:33;;;;;;;;9618:26;;;;9610:79;;;;-1:-1:-1;;;9610:79:0;;8706:2:1;9610:79:0;;;8688:21:1;8745:2;8725:18;;;8718:30;8784:34;8764:18;;;8757:62;8855:10;8835:18;;;8828:38;8883:19;;9610:79:0;;;;;;;;;9717:57;9726:6;4306:10;9767:6;9748:16;:25;9717:8;:57::i;:::-;-1:-1:-1;9801:4:0;;9333:480;-1:-1:-1;;;;9333:480:0:o;31129:147::-;30810:7;30837:12;;;:6;:12;;;;;:22;;;29243:30;29254:4;4306:10;29243;:30::i;:::-;31243:25:::1;31254:4;31260:7;31243:10;:25::i;:::-;31129:147:::0;;;:::o;32177:218::-;-1:-1:-1;;;;;32273:23:0;;4306:10;32273:23;32265:83;;;;-1:-1:-1;;;32265:83:0;;12387:2:1;32265:83:0;;;12369:21:1;12426:2;12406:18;;;12399:30;12465:34;12445:18;;;12438:62;12536:17;12516:18;;;12509:45;12571:19;;32265:83:0;12359:237:1;32265:83:0;32361:26;32373:4;32379:7;32361:11;:26::i;:::-;32177:218;;:::o;10222:215::-;4306:10;10310:4;10359:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10359:34:0;;;;;;;;;;10310:4;;10327:80;;10350:7;;10359:47;;10396:10;;10359:47;:::i;:::-;10327:8;:80::i;37356:252::-;35102:7;;;;35626:41;;;;-1:-1:-1;;;35626:41:0;;6392:2:1;35626:41:0;;;6374:21:1;6431:2;6411:18;;;6404:30;6470:22;6450:18;;;6443:50;6510:18;;35626:41:0;6364:170:1;35626:41:0;37428:45:::1;36541:35;4306:10:::0;29661:139;:::i;37428:45::-:1;37406:164;;;::::0;-1:-1:-1;;;37406:164:0;;10689:2:1;37406:164:0::1;::::0;::::1;10671:21:1::0;10728:2;10708:18;;;10701:30;10767:34;10747:18;;;10740:62;10838:34;10818:18;;;10811:62;-1:-1:-1;;;10889:19:1;;;10882:36;10935:19;;37406:164:0::1;10661:299:1::0;37406:164:0::1;37581:19;:17;:19::i;:::-;37356:252::o:0;38639:197::-;35102:7;;;;35356:9;35348:38;;;;-1:-1:-1;;;35348:38:0;;8361:2:1;35348:38:0;;;8343:21:1;8400:2;8380:18;;;8373:30;-1:-1:-1;;;8419:18:1;;;8412:46;8475:18;;35348:38:0;8333:166:1;35348:38:0;38721:34:::1;37822:24;4306:10:::0;29661:139;:::i;38721:34::-:1;38713:87;;;::::0;-1:-1:-1;;;38713:87:0;;11572:2:1;38713:87:0::1;::::0;::::1;11554:21:1::0;11611:2;11591:18;;;11584:30;11650:34;11630:18;;;11623:62;11721:10;11701:18;;;11694:38;11749:19;;38713:87:0::1;11544:230:1::0;38713:87:0::1;38811:17;38817:2;38821:6;38811:5;:17::i;16921:91::-:0;16977:27;4306:10;16997:6;16977:5;:27::i;:::-;16921:91;:::o;40100:171::-;18767:6;;-1:-1:-1;;;;;18767:6:0;;;;;4306:10;18914:23;18906:68;;;;-1:-1:-1;;;18906:68:0;;9115:2:1;18906:68:0;;;9097:21:1;;;9134:18;;;9127:30;9193:34;9173:18;;;9166:62;9245:18;;18906:68:0;9087:182:1;18906:68:0;40204:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;40237:26:0;;::::1;::::0;:14:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;19345:94::-:0;18767:6;;-1:-1:-1;;;;;18767:6:0;;;;;4306:10;18914:23;18906:68;;;;-1:-1:-1;;;18906:68:0;;9115:2:1;18906:68:0;;;9097:21:1;;;9134:18;;;9127:30;9193:34;9173:18;;;9166:62;9245:18;;18906:68:0;9087:182:1;18906:68:0;19410:21:::1;19428:1;19410:9;:21::i;17331:356::-:0;17408:24;17435:32;17445:7;4306:10;8384:151;:::i;17435:32::-;17408:59;;17506:6;17486:16;:26;;17478:75;;;;-1:-1:-1;;;17478:75:0;;9476:2:1;17478:75:0;;;9458:21:1;9515:2;9495:18;;;9488:30;9554:34;9534:18;;;9527:62;9625:6;9605:18;;;9598:34;9649:19;;17478:75:0;9448:226:1;17478:75:0;17581:58;17590:7;4306:10;17632:6;17613:16;:25;17581:8;:58::i;:::-;17657:22;17663:7;17672:6;17657:5;:22::i;36923:251::-;35102:7;;;;35356:9;35348:38;;;;-1:-1:-1;;;35348:38:0;;8361:2:1;35348:38:0;;;8343:21:1;8400:2;8380:18;;;8373:30;-1:-1:-1;;;8419:18:1;;;8412:46;8475:18;;35348:38:0;8333:166:1;35348:38:0;36996:45:::1;36541:35;4306:10:::0;29661:139;:::i;36996:45::-:1;36974:164;;;::::0;-1:-1:-1;;;36974:164:0;;10689:2:1;36974:164:0::1;::::0;::::1;10671:21:1::0;10728:2;10708:18;;;10701:30;10767:34;10747:18;;;10740:62;10838:34;10818:18;;;10811:62;-1:-1:-1;;;10889:19:1;;;10882:36;10935:19;;36974:164:0::1;10661:299:1::0;36974:164:0::1;37149:17;:15;:17::i;39718:103::-:0;39766:13;39799:14;39792:21;;;;;:::i;10940:401::-;4306:10;11033:4;11077:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11077:34:0;;;;;;;;;;11130:35;;;;11122:85;;;;-1:-1:-1;;;11122:85:0;;11981:2:1;11122:85:0;;;11963:21:1;12020:2;12000:18;;;11993:30;12059:34;12039:18;;;12032:62;12130:7;12110:18;;;12103:35;12155:19;;11122:85:0;11953:227:1;11122:85:0;11235:67;4306:10;11258:7;11286:15;11267:16;:34;11235:8;:67::i;:::-;-1:-1:-1;11329:4:0;;10940:401;-1:-1:-1;;;10940:401:0:o;8146:175::-;8232:4;8249:42;4306:10;8273:9;8284:6;8249:9;:42::i;31521:149::-;30810:7;30837:12;;;:6;:12;;;;;:22;;;29243:30;29254:4;4306:10;29243;:30::i;:::-;31636:26:::1;31648:4;31654:7;31636:11;:26::i;19594:192::-:0;18767:6;;-1:-1:-1;;;;;18767:6:0;;;;;4306:10;18914:23;18906:68;;;;-1:-1:-1;;;18906:68:0;;9115:2:1;18906:68:0;;;9097:21:1;;;9134:18;;;9127:30;9193:34;9173:18;;;9166:62;9245:18;;18906:68:0;9087:182:1;18906:68:0;-1:-1:-1;;;;;19683:22:0;::::1;19675:73;;;::::0;-1:-1:-1;;;19675:73:0;;7144:2:1;19675:73:0::1;::::0;::::1;7126:21:1::0;7183:2;7163:18;;;7156:30;7222:34;7202:18;;;7195:62;7293:8;7273:18;;;7266:36;7319:19;;19675:73:0::1;7116:228:1::0;19675:73:0::1;19759:19;19769:8;19759:9;:19::i;14588:380::-:0;-1:-1:-1;;;;;14724:19:0;;14716:68;;;;-1:-1:-1;;;14716:68:0;;11167:2:1;14716:68:0;;;11149:21:1;11206:2;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;11316:6;11296:18;;;11289:34;11340:19;;14716:68:0;11139:226:1;14716:68:0;-1:-1:-1;;;;;14803:21:0;;14795:68;;;;-1:-1:-1;;;14795:68:0;;7551:2:1;14795:68:0;;;7533:21:1;7590:2;7570:18;;;7563:30;7629:34;7609:18;;;7602:62;7700:4;7680:18;;;7673:32;7722:19;;14795:68:0;7523:224:1;14795:68:0;-1:-1:-1;;;;;14876:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14928:32;;5001:25:1;;;14928:32:0;;4974:18:1;14928:32:0;;;;;;;14588:380;;;:::o;11831:721::-;-1:-1:-1;;;;;11971:20:0;;11963:70;;;;-1:-1:-1;;;11963:70:0;;10283:2:1;11963:70:0;;;10265:21:1;10322:2;10302:18;;;10295:30;10361:34;10341:18;;;10334:62;10432:7;10412:18;;;10405:35;10457:19;;11963:70:0;10255:227:1;11963:70:0;-1:-1:-1;;;;;12052:23:0;;12044:71;;;;-1:-1:-1;;;12044:71:0;;5988:2:1;12044:71:0;;;5970:21:1;6027:2;6007:18;;;6000:30;6066:34;6046:18;;;6039:62;6137:5;6117:18;;;6110:33;6160:19;;12044:71:0;5960:225:1;12044:71:0;12128:47;12149:6;12157:9;12168:6;12128:20;:47::i;:::-;-1:-1:-1;;;;;12212:17:0;;12188:21;12212:17;;;;;;;;;;;12248:23;;;;12240:74;;;;-1:-1:-1;;;12240:74:0;;7954:2:1;12240:74:0;;;7936:21:1;7993:2;7973:18;;;7966:30;8032:34;8012:18;;;8005:62;8103:8;8083:18;;;8076:36;8129:19;;12240:74:0;7926:228:1;12240:74:0;-1:-1:-1;;;;;12342:17:0;;;:9;:17;;;;;;;;;;;12362:22;;;12342:42;;12402:20;;;;;;;;:30;;12378:6;;12342:9;12402:30;;12378:6;;12402:30;:::i;:::-;;;;;;;;12467:9;-1:-1:-1;;;;;12450:35:0;12459:6;-1:-1:-1;;;;;12450:35:0;;12478:6;12450:35;;;;5001:25:1;;4989:2;4974:18;;4956:76;12450:35:0;;;;;;;;12498:46;11831:721;;;;:::o;30090:465::-;29739:4;29763:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29763:29:0;;;;;;;;;;;;30166:382;;30343:41;30371:7;-1:-1:-1;;;;;30343:41:0;30381:2;30343:19;:41::i;:::-;30449:38;30477:4;30484:2;30449:19;:38::i;:::-;30256:250;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;30256:250:0;;;;;;;;;;-1:-1:-1;;;30210:326:0;;;;;;;:::i;33481:229::-;29739:4;29763:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29763:29:0;;;;;;;;;;;;33551:152;;33595:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;33595:29:0;;;;;;;;;:36;;-1:-1:-1;;33595:36:0;33627:4;33595:36;;;33678:12;4306:10;;4226:98;33678:12;-1:-1:-1;;;;;33651:40:0;33669:7;-1:-1:-1;;;;;33651:40:0;33663:4;33651:40;;;;;;;;;;33481:229;;:::o;33718:230::-;29739:4;29763:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29763:29:0;;;;;;;;;;;;33789:152;;;33864:5;33832:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;33832:29:0;;;;;;;;;;:37;;-1:-1:-1;;33832:37:0;;;33889:40;4306:10;;33832:12;;33889:40;;33864:5;33889:40;33718:230;;:::o;36090:120::-;35102:7;;;;35626:41;;;;-1:-1:-1;;;35626:41:0;;6392:2:1;35626:41:0;;;6374:21:1;6431:2;6411:18;;;6404:30;6470:22;6450:18;;;6443:50;6510:18;;35626:41:0;6364:170:1;35626:41:0;36149:7:::1;:15:::0;;-1:-1:-1;;36149:15:0::1;::::0;;36180:22:::1;4306:10:::0;36189:12:::1;36180:22;::::0;-1:-1:-1;;;;;4596:55:1;;;4578:74;;4566:2;4551:18;36180:22:0::1;;;;;;;36090:120::o:0;12839:399::-;-1:-1:-1;;;;;12923:21:0;;12915:65;;;;-1:-1:-1;;;12915:65:0;;12803:2:1;12915:65:0;;;12785:21:1;12842:2;12822:18;;;12815:30;12881:33;12861:18;;;12854:61;12932:18;;12915:65:0;12775:181:1;12915:65:0;12993:49;13022:1;13026:7;13035:6;12993:20;:49::i;:::-;13071:6;13055:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13088:18:0;;:9;:18;;;;;;;;;;:28;;13110:6;;13088:9;:28;;13110:6;;13088:28;:::i;:::-;;;;-1:-1:-1;;13132:37:0;;5001:25:1;;;-1:-1:-1;;;;;13132:37:0;;;13149:1;;13132:37;;4989:2:1;4974:18;13132:37:0;;;;;;;32177:218;;:::o;13571:579::-;-1:-1:-1;;;;;13655:21:0;;13647:67;;;;-1:-1:-1;;;13647:67:0;;9881:2:1;13647:67:0;;;9863:21:1;9920:2;9900:18;;;9893:30;9959:34;9939:18;;;9932:62;10030:3;10010:18;;;10003:31;10051:19;;13647:67:0;9853:223:1;13647:67:0;13727:49;13748:7;13765:1;13769:6;13727:20;:49::i;:::-;-1:-1:-1;;;;;13814:18:0;;13789:22;13814:18;;;;;;;;;;;13851:24;;;;13843:71;;;;-1:-1:-1;;;13843:71:0;;6741:2:1;13843:71:0;;;6723:21:1;6780:2;6760:18;;;6753:30;6819:34;6799:18;;;6792:62;6890:4;6870:18;;;6863:32;6912:19;;13843:71:0;6713:224:1;13843:71:0;-1:-1:-1;;;;;13942:18:0;;:9;:18;;;;;;;;;;13963:23;;;13942:44;;14004:12;:22;;13980:6;;13942:9;14004:22;;13980:6;;14004:22;:::i;:::-;;;;-1:-1:-1;;14044:37:0;;5001:25:1;;;14070:1:0;;-1:-1:-1;;;;;14044:37:0;;;;;4989:2:1;4974:18;14044:37:0;;;;;;;31129:147;;;:::o;19794:173::-;19869:6;;;-1:-1:-1;;;;;19886:17:0;;;19869:6;19886:17;;;;;;;;;;19919:40;;19869:6;;;;;;;;19919:40;;19850:16;;19919:40;19794:173;;:::o;35831:118::-;35102:7;;;;35356:9;35348:38;;;;-1:-1:-1;;;35348:38:0;;8361:2:1;35348:38:0;;;8343:21:1;8400:2;8380:18;;;8373:30;-1:-1:-1;;;8419:18:1;;;8412:46;8475:18;;35348:38:0;8333:166:1;35348:38:0;35891:7:::1;:14:::0;;-1:-1:-1;;35891:14:0::1;35901:4;35891:14;::::0;;35921:20:::1;35928:12;4306:10:::0;;4226:98;39266:209;35102:7;;;;35356:9;35348:38;;;;-1:-1:-1;;;35348:38:0;;8361:2:1;35348:38:0;;;8343:21:1;8400:2;8380:18;;;8373:30;-1:-1:-1;;;8419:18:1;;;8412:46;8475:18;;35348:38:0;8333:166:1;24573:451:0;24648:13;24674:19;24706:10;24710:6;24706:1;:10;:::i;:::-;:14;;24719:1;24706:14;:::i;:::-;24696:25;;;;;;-1:-1:-1;;;24696:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24696:25:0;;24674:47;;24732:15;:6;24739:1;24732:9;;;;;;-1:-1:-1;;;24732:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;24732:15:0;;;;;;;;;24758;:6;24765:1;24758:9;;;;;;-1:-1:-1;;;24758:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;24758:15:0;;;;;;;;-1:-1:-1;24789:9:0;24801:10;24805:6;24801:1;:10;:::i;:::-;:14;;24814:1;24801:14;:::i;:::-;24789:26;;24784:135;24821:1;24817;:5;24784:135;;;24856:12;24869:5;24877:3;24869:11;24856:25;;;;;-1:-1:-1;;;24856:25:0;;;;;;;;;;;;24844:6;24851:1;24844:9;;;;;;-1:-1:-1;;;24844:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;24844:37:0;;;;;;;;-1:-1:-1;24906:1:0;24896:11;;;;;24824:3;;;:::i;:::-;;;24784:135;;;-1:-1:-1;24937:10:0;;24929:55;;;;-1:-1:-1;;;24929:55:0;;5627:2:1;24929:55:0;;;5609:21:1;;;5646:18;;;5639:30;5705:34;5685:18;;;5678:62;5757:18;;24929:55:0;5599:182:1;24929:55:0;25009:6;24573:451;-1:-1:-1;;;24573:451:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:739::-;258:5;311:3;304:4;296:6;292:17;288:27;278:2;;333:5;326;319:20;278:2;373:6;360:20;399:18;436:2;432;429:10;426:2;;;442:18;;:::i;:::-;517:2;511:9;485:2;571:13;;-1:-1:-1;;567:22:1;;;591:2;563:31;559:40;547:53;;;615:18;;;635:22;;;612:46;609:2;;;661:18;;:::i;:::-;701:10;697:2;690:22;736:2;728:6;721:18;782:3;775:4;770:2;762:6;758:15;754:26;751:35;748:2;;;803:5;796;789:20;748:2;871;864:4;856:6;852:17;845:4;837:6;833:17;820:54;894:15;;;911:4;890:26;883:41;;;;-1:-1:-1;898:6:1;268:686;-1:-1:-1;;;268:686:1:o;959:196::-;1018:6;1071:2;1059:9;1050:7;1046:23;1042:32;1039:2;;;1092:6;1084;1077:22;1039:2;1120:29;1139:9;1120:29;:::i;1160:270::-;1228:6;1236;1289:2;1277:9;1268:7;1264:23;1260:32;1257:2;;;1310:6;1302;1295:22;1257:2;1338:29;1357:9;1338:29;:::i;:::-;1328:39;;1386:38;1420:2;1409:9;1405:18;1386:38;:::i;:::-;1376:48;;1247:183;;;;;:::o;1435:338::-;1512:6;1520;1528;1581:2;1569:9;1560:7;1556:23;1552:32;1549:2;;;1602:6;1594;1587:22;1549:2;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1539:234;;;;;:::o;1778:264::-;1846:6;1854;1907:2;1895:9;1886:7;1882:23;1878:32;1875:2;;;1928:6;1920;1913:22;1875:2;1956:29;1975:9;1956:29;:::i;:::-;1946:39;2032:2;2017:18;;;;2004:32;;-1:-1:-1;;;1865:177:1:o;2047:190::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:2;;;2180:6;2172;2165:22;2127:2;-1:-1:-1;2208:23:1;;2117:120;-1:-1:-1;2117:120:1:o;2242:264::-;2310:6;2318;2371:2;2359:9;2350:7;2346:23;2342:32;2339:2;;;2392:6;2384;2377:22;2339:2;2433:9;2420:23;2410:33;;2462:38;2496:2;2485:9;2481:18;2462:38;:::i;2511:352::-;2569:6;2622:2;2610:9;2601:7;2597:23;2593:32;2590:2;;;2643:6;2635;2628:22;2590:2;2687:9;2674:23;2737:66;2730:5;2726:78;2719:5;2716:89;2706:2;;2824:6;2816;2809:22;2868:573;2956:6;2964;3017:2;3005:9;2996:7;2992:23;2988:32;2985:2;;;3038:6;3030;3023:22;2985:2;3083:9;3070:23;3112:18;3153:2;3145:6;3142:14;3139:2;;;3174:6;3166;3159:22;3139:2;3202:50;3244:7;3235:6;3224:9;3220:22;3202:50;:::i;:::-;3192:60;;3305:2;3294:9;3290:18;3277:32;3261:48;;3334:2;3324:8;3321:16;3318:2;;;3355:6;3347;3340:22;3318:2;;3383:52;3427:7;3416:8;3405:9;3401:24;3383:52;:::i;:::-;3373:62;;;2975:466;;;;;:::o;3641:786::-;4052:25;4047:3;4040:38;4022:3;4107:6;4101:13;4123:62;4178:6;4173:2;4168:3;4164:12;4157:4;4149:6;4145:17;4123:62;:::i;:::-;4249:19;4244:2;4204:16;;;4236:11;;;4229:40;4294:13;;4316:63;4294:13;4365:2;4357:11;;4350:4;4338:17;;4316:63;:::i;:::-;4399:17;4418:2;4395:26;;4030:397;-1:-1:-1;;;;4030:397:1:o;5037:383::-;5186:2;5175:9;5168:21;5149:4;5218:6;5212:13;5261:6;5256:2;5245:9;5241:18;5234:34;5277:66;5336:6;5331:2;5320:9;5316:18;5311:2;5303:6;5299:15;5277:66;:::i;:::-;5404:2;5383:15;-1:-1:-1;;5379:29:1;5364:45;;;;5411:2;5360:54;;5158:262;-1:-1:-1;;5158:262:1:o;13332:128::-;13372:3;13403:1;13399:6;13396:1;13393:13;13390:2;;;13409:18;;:::i;:::-;-1:-1:-1;13445:9:1;;13380:80::o;13465:168::-;13505:7;13571:1;13567;13563:6;13559:14;13556:1;13553:21;13548:1;13541:9;13534:17;13530:45;13527:2;;;13578:18;;:::i;:::-;-1:-1:-1;13618:9:1;;13517:116::o;13638:125::-;13678:4;13706:1;13703;13700:8;13697:2;;;13711:18;;:::i;:::-;-1:-1:-1;13748:9:1;;13687:76::o;13768:258::-;13840:1;13850:113;13864:6;13861:1;13858:13;13850:113;;;13940:11;;;13934:18;13921:11;;;13914:39;13886:2;13879:10;13850:113;;;13981:6;13978:1;13975:13;13972:2;;;-1:-1:-1;;14016:1:1;13998:16;;13991:27;13821:205::o;14031:136::-;14070:3;14098:5;14088:2;;14107:18;;:::i;:::-;-1:-1:-1;;;14143:18:1;;14078:89::o;14172:437::-;14251:1;14247:12;;;;14294;;;14315:2;;14369:4;14361:6;14357:17;14347:27;;14315:2;14422;14414:6;14411:14;14391:18;14388:38;14385:2;;;-1:-1:-1;;;14456:1:1;14449:88;14560:4;14557:1;14550:15;14588:4;14585:1;14578:15;14385:2;;14227:382;;;:::o;14614:184::-;-1:-1:-1;;;14663:1:1;14656:88;14763:4;14760:1;14753:15;14787:4;14784:1;14777:15;14803:184;-1:-1:-1;;;14852:1:1;14845:88;14952:4;14949:1;14942:15;14976:4;14973:1;14966:15
Swarm Source
ipfs://ad99533b91a562e744df980c5695461771b2430a8d4c122c96bde0bf2e83fcd2