ERC-20
Source Code
Overview
Max Total Supply
3.19625 OMC
Holders
4 (0.00%)
Transfers
-
0
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
omChain
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-05-09
*/
// SPDX-License-Identifier: aGPL-3.0
// File: node_modules\@openzeppelin\contracts\access\IAccessControl.sol
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: node_modules\@openzeppelin\contracts\utils\Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: node_modules\@openzeppelin\contracts\utils\Strings.sol
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: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol
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: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol
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\AccessControl.sol
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: contracts\abstract\Guarded.sol
pragma solidity ^0.8.7;
/**
* @dev Guard contract that adds extra functionality to the {AccessControl} contract
*
* Defines `ADMIN_ROLE`, `MINTER_ROLE`, `BURNER_ROLE`
* adds `onlyOwner`, `onlyAdmin`, `onlyMinter`, `onlyBurner`, `nonPaused`, `paused` modifiers
*
* */
abstract contract Guarded is AccessControl {
bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
address private _owner;
bool private _paused;
modifier onlyOwner() {
require(_owner == _msgSender(), "Guard: not owner");
_;
}
modifier onlyAdmin() {
require(hasRole(ADMIN_ROLE, _msgSender()), "Guard: not admin");
_;
}
modifier onlyMinter() {
require(hasRole(MINTER_ROLE, _msgSender()), "Guard: not minter");
_;
}
modifier nonPaused() {
require(!_paused, "Guard: contract paused");
_;
}
modifier paused() {
require(_paused, "Guard: contract is not paused");
_;
}
constructor() {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(ADMIN_ROLE, _msgSender());
_owner = _msgSender();
_paused = false;
}
function pause() public onlyAdmin nonPaused returns (bool) {
_paused = true;
emit ContractPaused(block.number, _msgSender());
return true;
}
function unpause() public onlyAdmin paused returns (bool) {
_paused = false;
emit ContractUnpaused(block.number, _msgSender());
return true;
}
function isPaused() public view returns (bool) {
return _paused;
}
function transferOwner(address owner) public onlyOwner returns (bool) {
grantRole(DEFAULT_ADMIN_ROLE, owner);
grantRole(ADMIN_ROLE, owner);
revokeRole(DEFAULT_ADMIN_ROLE, _owner);
revokeRole(ADMIN_ROLE, _owner);
emit OwnerChanged(_owner, owner);
_owner = owner;
return true;
}
function setRoleAdmin(bytes32 role, bytes32 adminRole) public onlyOwner {
_setRoleAdmin(role, adminRole);
}
event ContractPaused(uint256 blockHeight, address admin);
event ContractUnpaused(uint256 blockHeight, address admin);
event OwnerChanged(address previousOwner, address currentOwner);
}
// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol
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: node_modules\@openzeppelin\contracts\utils\Address.sol
pragma solidity ^0.8.0;
/**
* @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);
}
}
}
}
// File: @openzeppelin\contracts\token\ERC20\utils\SafeERC20.sol
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(
token,
abi.encodeWithSelector(token.transfer.selector, to, value)
);
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(
token,
abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
);
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(
oldAllowance >= value,
"SafeERC20: decreased allowance below zero"
);
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(
data,
"SafeERC20: low-level call failed"
);
if (returndata.length > 0) {
// Return data is optional
require(
abi.decode(returndata, (bool)),
"SafeERC20: ERC20 operation did not succeed"
);
}
}
}
// File: contracts\abstract\TokenRecover.sol
pragma solidity ^0.8.7;
abstract contract TokenRecover is Guarded {
using SafeERC20 for IERC20;
function recoverERC20(
address token,
address recipient,
uint256 amount
) public onlyOwner returns (bool) {
IERC20(token).safeTransfer(recipient, amount);
emit ERC20Recovered(token, recipient, amount);
return true;
}
event ERC20Recovered(address token, address recipient, uint256 amount);
}
// File: contracts\abstract\Blacklistable.sol
pragma solidity ^0.8.7;
/**
* @dev Blacklist module that allows receivers or transaction senders
* to be blacklisted.
*/
abstract contract Blacklistable is Guarded {
address public _blacklister;
mapping(address => bool) internal _blacklisted;
/**
* @dev Modifier that checks the msg.sender for blacklisting related operations
*/
modifier onlyBlacklister() {
require(
_blacklister == _msgSender(),
"Blacklistable: account is not blacklister"
);
_;
}
/**
* @dev Modifier that checks the account is not blacklisted
* @param account The address to be checked
*/
modifier notBlacklisted(address account) {
require(
!_blacklisted[account],
"Blacklistable: account is blacklisted"
);
_;
}
/**
* @dev Function that checks if an address is blacklisted
* @param account The address to be checked
* @return bool, true if account is blacklisted, false if not
*/
function isBlacklisted(address account) public view returns (bool) {
return _blacklisted[account];
}
/**
* @dev Function that blacklists an account
* Emits {Blacklisted} event.
*
* @notice can only be called by blacklister
* @param account The address to be blacklisted
*/
function blacklist(address account) public onlyBlacklister {
_blacklisted[account] = true;
emit Blacklisted(account);
}
/**
* @dev Function that removes an address from blacklist
* Emits {UnBlacklisted} event
*
* @notice can only be called by blacklister
* @param account to be unblacklisted
*/
function unBlacklist(address account) public onlyBlacklister {
_blacklisted[account] = false;
emit UnBlacklisted(account);
}
/**
* @dev Function that updates the current blacklister account
* Emits {BlacklisterChanged} event
*
* @notice can only be called by the owner of the contract
* @param newBlacklister address that will be the new blacklister
*/
function updateBlacklister(address newBlacklister) external onlyOwner {
require(
newBlacklister != address(0),
"Blacklistable: new blacklister is the zero address"
);
_blacklister = newBlacklister;
emit BlacklisterChanged(newBlacklister);
}
event Blacklisted(address indexed account);
event UnBlacklisted(address indexed account);
event BlacklisterChanged(address indexed newBlacklister);
}
// File: node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin\contracts\token\ERC20\ERC20.sol
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: contracts\interfaces\ILToken.sol
pragma solidity ^0.8.7;
// Author: Osman Kuzucu
// https://github.com/open-money
// [email protected]
interface ILToken is IERC20 {
function masterMint(address account, uint256 amount)
external
returns (bool);
function mintTo(address account, uint256 amount) external returns (bool);
function burnFrom(address account, uint256 amount) external returns (bool);
event TokenMinted(address account, uint256 amount);
event TokenBurned(address account, uint256 amount);
}
// File: contracts\tokens\LToken.sol
pragma solidity ^0.8.7;
contract omChain is Guarded, TokenRecover, Blacklistable, ERC20, ILToken {
uint8 private _decimals;
constructor(
string memory name,
string memory symbol,
uint8 decimals_
) TokenRecover() ERC20(name, symbol) {
_decimals = decimals_;
_blacklister = msg.sender;
}
function decimals() public view override returns (uint8) {
return _decimals;
}
function masterMint(address account, uint256 amount)
public
override
onlyOwner
returns (bool)
{
_mint(account, amount);
emit TokenMinted(account, amount);
return true;
}
function mintTo(address account, uint256 amount)
public
override
onlyMinter
nonPaused
notBlacklisted(account)
returns (bool)
{
_mint(account, amount);
emit TokenMinted(account, amount);
return true;
}
function burnFrom(address account, uint256 amount)
public
override
nonPaused
returns (bool)
{
uint256 currentAllowance = allowance(account, _msgSender());
require(
currentAllowance >= amount,
"ERC20: burn amount exceeds allowance"
);
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
emit TokenBurned(account, amount);
return true;
}
function transfer(address recipient, uint256 amount)
public
override(ERC20, IERC20)
nonPaused
returns (bool)
{
require(
(!isBlacklisted(recipient) && !isBlacklisted(msg.sender)),
"LToken: receiver or sender blacklisted"
);
return ERC20.transfer(recipient, amount);
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public override(ERC20, IERC20) nonPaused returns (bool) {
require(
(!isBlacklisted(recipient) &&
!isBlacklisted(msg.sender) &&
!isBlacklisted(sender)),
"LToken: receiver or sender blacklisted"
);
return ERC20.transferFrom(sender, recipient, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"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":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockHeight","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"ContractPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockHeight","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"ContractUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":false,"internalType":"address","name":"currentOwner","type":"address"}],"name":"OwnerChanged","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenMinted","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":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"_blacklister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"masterMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"bytes32","name":"adminRole","type":"bytes32"}],"name":"setRoleAdmin","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":"owner","type":"address"}],"name":"transferOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlacklister","type":"address"}],"name":"updateBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162002492380380620024928339810160408190526200003491620002ec565b828262000043600033620000df565b6200006f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533620000df565b600180546001600160a81b031916331790558151620000969060079060208501906200018f565b508051620000ac9060089060208401906200018f565b50506009805460ff90931660ff19909316929092179091555050600280546001600160a01b0319163317905550620003c4565b620000eb8282620000ef565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620000eb576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200014b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200019d9062000371565b90600052602060002090601f016020900481019282620001c157600085556200020c565b82601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b5b808211156200021a57600081556001016200021f565b600082601f8301126200024757600080fd5b81516001600160401b0380821115620002645762000264620003ae565b604051601f8301601f19908116603f011681019082821181831017156200028f576200028f620003ae565b81604052838152602092508683858801011115620002ac57600080fd5b600091505b83821015620002d05785820183015181830184015290820190620002b1565b83821115620002e25760008385830101525b9695505050505050565b6000806000606084860312156200030257600080fd5b83516001600160401b03808211156200031a57600080fd5b620003288783880162000235565b945060208601519150808211156200033f57600080fd5b506200034e8682870162000235565b925050604084015160ff811681146200036657600080fd5b809150509250925092565b600181811c908216806200038657607f821691505b60208210811415620003a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6120be80620003d46000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a457c2d7116100ad578063d53913931161007c578063d53913931461045f578063d547741f14610486578063dd62ed3e14610499578063f9f92be4146104d2578063fe575a87146104e557600080fd5b8063a457c2d714610414578063a9059cbb14610427578063ad38bf221461043a578063b187bd261461044d57600080fd5b806391b4af05116100e957806391b4af05146103c657806391d14854146103f157806395d89b4114610404578063a217fddf1461040c57600080fd5b806370a082311461036d57806375b238fc1461039657806379cc6790146103ab5780638456cb59146103be57600080fd5b806323b872dd1161019d57806336568abe1161016c57806336568abe14610319578063395093511461032c5780633f4ba83a1461033f578063449a52f8146103475780634fb2e45d1461035a57600080fd5b806323b872dd146102bb578063248a9ca3146102ce5780632f2ff15d146102f1578063313ce5671461030457600080fd5b806318160ddd116101d957806318160ddd1461026e5780631a895266146102805780631b96b2f9146102955780631e4e0091146102a857600080fd5b806301ffc9a71461020b57806306fdde0314610233578063095ea7b3146102485780631171bda91461025b575b600080fd5b61021e610219366004611d83565b6104f8565b60405190151581526020015b60405180910390f35b61023b61052f565b60405161022a9190611e3e565b61021e610256366004611cd9565b6105c1565b61021e610269366004611c9d565b6105d7565b6006545b60405190815260200161022a565b61029361028e366004611c4f565b610678565b005b61021e6102a3366004611cd9565b6106eb565b6102936102b6366004611d61565b61076d565b61021e6102c9366004611c9d565b6107a5565b6102726102dc366004611d25565b60009081526020819052604090206001015490565b6102936102ff366004611d3e565b61082f565b60095460405160ff909116815260200161022a565b610293610327366004611d3e565b61085a565b61021e61033a366004611cd9565b6108d4565b61021e610910565b61021e610355366004611cd9565b610a19565b61021e610368366004611c4f565b610b7e565b61027261037b366004611c4f565b6001600160a01b031660009081526004602052604090205490565b61027260008051602061206983398151915281565b61021e6103b9366004611cd9565b610c74565b61021e610d62565b6002546103d9906001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b61021e6103ff366004611d3e565b610e21565b61023b610e4a565b610272600081565b61021e610422366004611cd9565b610e59565b61021e610435366004611cd9565b610ef2565b610293610448366004611c4f565b610f61565b600154600160a01b900460ff1661021e565b6102727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610293610494366004611d3e565b611046565b6102726104a7366004611c6a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6102936104e0366004611c4f565b61106c565b61021e6104f3366004611c4f565b6110e2565b60006001600160e01b03198216637965db0b60e01b148061052957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606007805461053e90611feb565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611feb565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b60006105ce338484611100565b50600192915050565b6001546000906001600160a01b0316331461060d5760405162461bcd60e51b815260040161060490611f30565b60405180910390fd5b6106216001600160a01b0385168484611224565b604080516001600160a01b038087168252851660208201529081018390527faca8fb252cde442184e5f10e0f2e6e4029e8cd7717cae63559079610702436aa906060015b60405180910390a15060015b9392505050565b6002546001600160a01b031633146106a25760405162461bcd60e51b815260040161060490611ea1565b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6001546000906001600160a01b031633146107185760405162461bcd60e51b815260040161060490611f30565b6107228383611276565b604080516001600160a01b0385168152602081018490527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a150600192915050565b6001546001600160a01b031633146107975760405162461bcd60e51b815260040161060490611f30565b6107a18282611355565b5050565b600154600090600160a01b900460ff16156107d25760405162461bcd60e51b815260040161060490611e71565b6107db836110e2565b1580156107ee57506107ec336110e2565b155b801561080057506107fe846110e2565b155b61081c5760405162461bcd60e51b815260040161060490611eea565b6108278484846113a0565b949350505050565b60008281526020819052604090206001015461084b8133611447565b61085583836114ab565b505050565b6001600160a01b03811633146108ca5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610604565b6107a1828261152f565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ce91859061090b908690611f5a565b611100565b600061092a60008051602061206983398151915233610e21565b6109695760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610604565b600154600160a01b900460ff166109c25760405162461bcd60e51b815260206004820152601d60248201527f47756172643a20636f6e7472616374206973206e6f74207061757365640000006044820152606401610604565b6001805460ff60a01b191690557f1e7a7234ad01ed7353bf129217f5c162773639a6cb22773e84bcd5a2b0ef362e43335b604080519283526001600160a01b0390911660208301520160405180910390a150600190565b6000610a457f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610e21565b610a855760405162461bcd60e51b815260206004820152601160248201527023bab0b9321d103737ba1036b4b73a32b960791b6044820152606401610604565b600154600160a01b900460ff1615610aaf5760405162461bcd60e51b815260040161060490611e71565b6001600160a01b038316600090815260036020526040902054839060ff1615610b285760405162461bcd60e51b815260206004820152602560248201527f426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c6044820152641a5cdd195960da1b6064820152608401610604565b610b328484611276565b604080516001600160a01b0386168152602081018590527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a15060019392505050565b6001546000906001600160a01b03163314610bab5760405162461bcd60e51b815260040161060490611f30565b610bb660008361082f565b610bce6000805160206120698339815191528361082f565b600154610be6906000906001600160a01b0316611046565b600154610c0b90600080516020612069833981519152906001600160a01b0316611046565b600154604080516001600160a01b03928316815291841660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a150600180546001600160a01b0319166001600160a01b0383161781555b919050565b600154600090600160a01b900460ff1615610ca15760405162461bcd60e51b815260040161060490611e71565b6000610cad84336104a7565b905082811015610d0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610604565b610d1984335b858403611100565b610d238484611594565b604080516001600160a01b0386168152602081018590527f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa29101610665565b6000610d7c60008051602061206983398151915233610e21565b610dbb5760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610604565b600154600160a01b900460ff1615610de55760405162461bcd60e51b815260040161060490611e71565b6001805460ff60a01b1916600160a01b1790557fd8c9c5623123df8e137854c59a08f9084b75609fe24584228d44ffdce5ab920a436109f33390565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606008805461053e90611feb565b3360009081526005602090815260408083206001600160a01b038616845290915281205482811015610edb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610604565b610ee83385858403611100565b5060019392505050565b600154600090600160a01b900460ff1615610f1f5760405162461bcd60e51b815260040161060490611e71565b610f28836110e2565b158015610f3b5750610f39336110e2565b155b610f575760405162461bcd60e51b815260040161060490611eea565b61067183836116e2565b6001546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161060490611f30565b6001600160a01b038116610ffc5760405162461bcd60e51b815260206004820152603260248201527f426c61636b6c69737461626c653a206e657720626c61636b6c697374657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610604565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b6000828152602081905260409020600101546110628133611447565b610855838361152f565b6002546001600160a01b031633146110965760405162461bcd60e51b815260040161060490611ea1565b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b031660009081526003602052604090205460ff1690565b6001600160a01b0383166111625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610604565b6001600160a01b0382166111c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610604565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108559084906116ef565b6001600160a01b0382166112cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610604565b80600660008282546112de9190611f5a565b90915550506001600160a01b0382166000908152600460205260408120805483929061130b908490611f5a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60006113ad8484846117c1565b6001600160a01b0384166000908152600560209081526040808320338452909152902054828110156114325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610604565b61143c8533610d11565b506001949350505050565b6114518282610e21565b6107a157611469816001600160a01b03166014611991565b611474836020611991565b604051602001611485929190611dc9565b60408051601f198184030181529082905262461bcd60e51b825261060491600401611e3e565b6114b58282610e21565b6107a1576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556114eb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115398282610e21565b156107a1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166115f45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610604565b6001600160a01b038216600090815260046020526040902054818110156116685760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610604565b6001600160a01b0383166000908152600460205260408120838303905560068054849290611697908490611f91565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006105ce3384846117c1565b6000611744826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611b2d9092919063ffffffff16565b80519091501561085557808060200190518101906117629190611d03565b6108555760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610604565b6001600160a01b0383166118255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610604565b6001600160a01b0382166118875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610604565b6001600160a01b038316600090815260046020526040902054818110156118ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610604565b6001600160a01b03808516600090815260046020526040808220858503905591851681529081208054849290611936908490611f5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161198291815260200190565b60405180910390a35b50505050565b606060006119a0836002611f72565b6119ab906002611f5a565b67ffffffffffffffff8111156119c3576119c3612052565b6040519080825280601f01601f1916602001820160405280156119ed576020820181803683370190505b509050600360fc1b81600081518110611a0857611a0861203c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a3757611a3761203c565b60200101906001600160f81b031916908160001a9053506000611a5b846002611f72565b611a66906001611f5a565b90505b6001811115611ade576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a9a57611a9a61203c565b1a60f81b828281518110611ab057611ab061203c565b60200101906001600160f81b031916908160001a90535060049490941c93611ad781611fd4565b9050611a69565b5083156106715760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610604565b6060610827848460008585843b611b865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610604565b600080866001600160a01b03168587604051611ba29190611dad565b60006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5091509150611bf4828286611bff565b979650505050505050565b60608315611c0e575081610671565b825115611c1e5782518084602001fd5b8160405162461bcd60e51b81526004016106049190611e3e565b80356001600160a01b0381168114610c6f57600080fd5b600060208284031215611c6157600080fd5b61067182611c38565b60008060408385031215611c7d57600080fd5b611c8683611c38565b9150611c9460208401611c38565b90509250929050565b600080600060608486031215611cb257600080fd5b611cbb84611c38565b9250611cc960208501611c38565b9150604084013590509250925092565b60008060408385031215611cec57600080fd5b611cf583611c38565b946020939093013593505050565b600060208284031215611d1557600080fd5b8151801515811461067157600080fd5b600060208284031215611d3757600080fd5b5035919050565b60008060408385031215611d5157600080fd5b82359150611c9460208401611c38565b60008060408385031215611d7457600080fd5b50508035926020909101359150565b600060208284031215611d9557600080fd5b81356001600160e01b03198116811461067157600080fd5b60008251611dbf818460208701611fa8565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611e01816017850160208801611fa8565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e32816028840160208801611fa8565b01602801949350505050565b6020815260008251806020840152611e5d816040850160208701611fa8565b601f01601f19169190910160400192915050565b60208082526016908201527511dd585c990e8818dbdb9d1c9858dd081c185d5cd95960521b604082015260600190565b60208082526029908201527f426c61636b6c69737461626c653a206163636f756e74206973206e6f7420626c60408201526830b1b5b634b9ba32b960b91b606082015260800190565b60208082526026908201527f4c546f6b656e3a207265636569766572206f722073656e64657220626c61636b6040820152651b1a5cdd195960d21b606082015260800190565b60208082526010908201526f23bab0b9321d103737ba1037bbb732b960811b604082015260600190565b60008219821115611f6d57611f6d612026565b500190565b6000816000190483118215151615611f8c57611f8c612026565b500290565b600082821015611fa357611fa3612026565b500390565b60005b83811015611fc3578181015183820152602001611fab565b8381111561198b5750506000910152565b600081611fe357611fe3612026565b506000190190565b600181811c90821680611fff57607f821691505b6020821081141561202057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a26469706673582212204ec83d976fe2b1ac433bf6949fc253e754bec2e6c88a8fbafee9450f83131e3964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000076f6d436861696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f4d430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a457c2d7116100ad578063d53913931161007c578063d53913931461045f578063d547741f14610486578063dd62ed3e14610499578063f9f92be4146104d2578063fe575a87146104e557600080fd5b8063a457c2d714610414578063a9059cbb14610427578063ad38bf221461043a578063b187bd261461044d57600080fd5b806391b4af05116100e957806391b4af05146103c657806391d14854146103f157806395d89b4114610404578063a217fddf1461040c57600080fd5b806370a082311461036d57806375b238fc1461039657806379cc6790146103ab5780638456cb59146103be57600080fd5b806323b872dd1161019d57806336568abe1161016c57806336568abe14610319578063395093511461032c5780633f4ba83a1461033f578063449a52f8146103475780634fb2e45d1461035a57600080fd5b806323b872dd146102bb578063248a9ca3146102ce5780632f2ff15d146102f1578063313ce5671461030457600080fd5b806318160ddd116101d957806318160ddd1461026e5780631a895266146102805780631b96b2f9146102955780631e4e0091146102a857600080fd5b806301ffc9a71461020b57806306fdde0314610233578063095ea7b3146102485780631171bda91461025b575b600080fd5b61021e610219366004611d83565b6104f8565b60405190151581526020015b60405180910390f35b61023b61052f565b60405161022a9190611e3e565b61021e610256366004611cd9565b6105c1565b61021e610269366004611c9d565b6105d7565b6006545b60405190815260200161022a565b61029361028e366004611c4f565b610678565b005b61021e6102a3366004611cd9565b6106eb565b6102936102b6366004611d61565b61076d565b61021e6102c9366004611c9d565b6107a5565b6102726102dc366004611d25565b60009081526020819052604090206001015490565b6102936102ff366004611d3e565b61082f565b60095460405160ff909116815260200161022a565b610293610327366004611d3e565b61085a565b61021e61033a366004611cd9565b6108d4565b61021e610910565b61021e610355366004611cd9565b610a19565b61021e610368366004611c4f565b610b7e565b61027261037b366004611c4f565b6001600160a01b031660009081526004602052604090205490565b61027260008051602061206983398151915281565b61021e6103b9366004611cd9565b610c74565b61021e610d62565b6002546103d9906001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b61021e6103ff366004611d3e565b610e21565b61023b610e4a565b610272600081565b61021e610422366004611cd9565b610e59565b61021e610435366004611cd9565b610ef2565b610293610448366004611c4f565b610f61565b600154600160a01b900460ff1661021e565b6102727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610293610494366004611d3e565b611046565b6102726104a7366004611c6a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6102936104e0366004611c4f565b61106c565b61021e6104f3366004611c4f565b6110e2565b60006001600160e01b03198216637965db0b60e01b148061052957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606007805461053e90611feb565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611feb565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b60006105ce338484611100565b50600192915050565b6001546000906001600160a01b0316331461060d5760405162461bcd60e51b815260040161060490611f30565b60405180910390fd5b6106216001600160a01b0385168484611224565b604080516001600160a01b038087168252851660208201529081018390527faca8fb252cde442184e5f10e0f2e6e4029e8cd7717cae63559079610702436aa906060015b60405180910390a15060015b9392505050565b6002546001600160a01b031633146106a25760405162461bcd60e51b815260040161060490611ea1565b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6001546000906001600160a01b031633146107185760405162461bcd60e51b815260040161060490611f30565b6107228383611276565b604080516001600160a01b0385168152602081018490527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a150600192915050565b6001546001600160a01b031633146107975760405162461bcd60e51b815260040161060490611f30565b6107a18282611355565b5050565b600154600090600160a01b900460ff16156107d25760405162461bcd60e51b815260040161060490611e71565b6107db836110e2565b1580156107ee57506107ec336110e2565b155b801561080057506107fe846110e2565b155b61081c5760405162461bcd60e51b815260040161060490611eea565b6108278484846113a0565b949350505050565b60008281526020819052604090206001015461084b8133611447565b61085583836114ab565b505050565b6001600160a01b03811633146108ca5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610604565b6107a1828261152f565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ce91859061090b908690611f5a565b611100565b600061092a60008051602061206983398151915233610e21565b6109695760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610604565b600154600160a01b900460ff166109c25760405162461bcd60e51b815260206004820152601d60248201527f47756172643a20636f6e7472616374206973206e6f74207061757365640000006044820152606401610604565b6001805460ff60a01b191690557f1e7a7234ad01ed7353bf129217f5c162773639a6cb22773e84bcd5a2b0ef362e43335b604080519283526001600160a01b0390911660208301520160405180910390a150600190565b6000610a457f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610e21565b610a855760405162461bcd60e51b815260206004820152601160248201527023bab0b9321d103737ba1036b4b73a32b960791b6044820152606401610604565b600154600160a01b900460ff1615610aaf5760405162461bcd60e51b815260040161060490611e71565b6001600160a01b038316600090815260036020526040902054839060ff1615610b285760405162461bcd60e51b815260206004820152602560248201527f426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c6044820152641a5cdd195960da1b6064820152608401610604565b610b328484611276565b604080516001600160a01b0386168152602081018590527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a15060019392505050565b6001546000906001600160a01b03163314610bab5760405162461bcd60e51b815260040161060490611f30565b610bb660008361082f565b610bce6000805160206120698339815191528361082f565b600154610be6906000906001600160a01b0316611046565b600154610c0b90600080516020612069833981519152906001600160a01b0316611046565b600154604080516001600160a01b03928316815291841660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a150600180546001600160a01b0319166001600160a01b0383161781555b919050565b600154600090600160a01b900460ff1615610ca15760405162461bcd60e51b815260040161060490611e71565b6000610cad84336104a7565b905082811015610d0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610604565b610d1984335b858403611100565b610d238484611594565b604080516001600160a01b0386168152602081018590527f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa29101610665565b6000610d7c60008051602061206983398151915233610e21565b610dbb5760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610604565b600154600160a01b900460ff1615610de55760405162461bcd60e51b815260040161060490611e71565b6001805460ff60a01b1916600160a01b1790557fd8c9c5623123df8e137854c59a08f9084b75609fe24584228d44ffdce5ab920a436109f33390565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606008805461053e90611feb565b3360009081526005602090815260408083206001600160a01b038616845290915281205482811015610edb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610604565b610ee83385858403611100565b5060019392505050565b600154600090600160a01b900460ff1615610f1f5760405162461bcd60e51b815260040161060490611e71565b610f28836110e2565b158015610f3b5750610f39336110e2565b155b610f575760405162461bcd60e51b815260040161060490611eea565b61067183836116e2565b6001546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161060490611f30565b6001600160a01b038116610ffc5760405162461bcd60e51b815260206004820152603260248201527f426c61636b6c69737461626c653a206e657720626c61636b6c697374657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610604565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b6000828152602081905260409020600101546110628133611447565b610855838361152f565b6002546001600160a01b031633146110965760405162461bcd60e51b815260040161060490611ea1565b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b031660009081526003602052604090205460ff1690565b6001600160a01b0383166111625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610604565b6001600160a01b0382166111c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610604565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108559084906116ef565b6001600160a01b0382166112cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610604565b80600660008282546112de9190611f5a565b90915550506001600160a01b0382166000908152600460205260408120805483929061130b908490611f5a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60006113ad8484846117c1565b6001600160a01b0384166000908152600560209081526040808320338452909152902054828110156114325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610604565b61143c8533610d11565b506001949350505050565b6114518282610e21565b6107a157611469816001600160a01b03166014611991565b611474836020611991565b604051602001611485929190611dc9565b60408051601f198184030181529082905262461bcd60e51b825261060491600401611e3e565b6114b58282610e21565b6107a1576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556114eb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115398282610e21565b156107a1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166115f45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610604565b6001600160a01b038216600090815260046020526040902054818110156116685760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610604565b6001600160a01b0383166000908152600460205260408120838303905560068054849290611697908490611f91565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006105ce3384846117c1565b6000611744826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611b2d9092919063ffffffff16565b80519091501561085557808060200190518101906117629190611d03565b6108555760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610604565b6001600160a01b0383166118255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610604565b6001600160a01b0382166118875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610604565b6001600160a01b038316600090815260046020526040902054818110156118ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610604565b6001600160a01b03808516600090815260046020526040808220858503905591851681529081208054849290611936908490611f5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161198291815260200190565b60405180910390a35b50505050565b606060006119a0836002611f72565b6119ab906002611f5a565b67ffffffffffffffff8111156119c3576119c3612052565b6040519080825280601f01601f1916602001820160405280156119ed576020820181803683370190505b509050600360fc1b81600081518110611a0857611a0861203c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a3757611a3761203c565b60200101906001600160f81b031916908160001a9053506000611a5b846002611f72565b611a66906001611f5a565b90505b6001811115611ade576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a9a57611a9a61203c565b1a60f81b828281518110611ab057611ab061203c565b60200101906001600160f81b031916908160001a90535060049490941c93611ad781611fd4565b9050611a69565b5083156106715760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610604565b6060610827848460008585843b611b865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610604565b600080866001600160a01b03168587604051611ba29190611dad565b60006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5091509150611bf4828286611bff565b979650505050505050565b60608315611c0e575081610671565b825115611c1e5782518084602001fd5b8160405162461bcd60e51b81526004016106049190611e3e565b80356001600160a01b0381168114610c6f57600080fd5b600060208284031215611c6157600080fd5b61067182611c38565b60008060408385031215611c7d57600080fd5b611c8683611c38565b9150611c9460208401611c38565b90509250929050565b600080600060608486031215611cb257600080fd5b611cbb84611c38565b9250611cc960208501611c38565b9150604084013590509250925092565b60008060408385031215611cec57600080fd5b611cf583611c38565b946020939093013593505050565b600060208284031215611d1557600080fd5b8151801515811461067157600080fd5b600060208284031215611d3757600080fd5b5035919050565b60008060408385031215611d5157600080fd5b82359150611c9460208401611c38565b60008060408385031215611d7457600080fd5b50508035926020909101359150565b600060208284031215611d9557600080fd5b81356001600160e01b03198116811461067157600080fd5b60008251611dbf818460208701611fa8565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611e01816017850160208801611fa8565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e32816028840160208801611fa8565b01602801949350505050565b6020815260008251806020840152611e5d816040850160208701611fa8565b601f01601f19169190910160400192915050565b60208082526016908201527511dd585c990e8818dbdb9d1c9858dd081c185d5cd95960521b604082015260600190565b60208082526029908201527f426c61636b6c69737461626c653a206163636f756e74206973206e6f7420626c60408201526830b1b5b634b9ba32b960b91b606082015260800190565b60208082526026908201527f4c546f6b656e3a207265636569766572206f722073656e64657220626c61636b6040820152651b1a5cdd195960d21b606082015260800190565b60208082526010908201526f23bab0b9321d103737ba1037bbb732b960811b604082015260600190565b60008219821115611f6d57611f6d612026565b500190565b6000816000190483118215151615611f8c57611f8c612026565b500290565b600082821015611fa357611fa3612026565b500390565b60005b83811015611fc3578181015183820152602001611fab565b8381111561198b5750506000910152565b600081611fe357611fe3612026565b506000190190565b600181811c90821680611fff57607f821691505b6020821081141561202057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a26469706673582212204ec83d976fe2b1ac433bf6949fc253e754bec2e6c88a8fbafee9450f83131e3964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000076f6d436861696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f4d430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): omChain
Arg [1] : symbol (string): OMC
Arg [2] : decimals_ (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 6f6d436861696e00000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4f4d430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
49826:2357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10496:280;;;;;;:::i;:::-;;:::i;:::-;;;4921:14:1;;4914:22;4896:41;;4884:2;4869:18;10496:280:0;;;;;;;;38814:100;;;:::i;:::-;;;;;;;:::i;41122:210::-;;;;;;:::i;:::-;;:::i;32988:280::-;;;;;;:::i;:::-;;:::i;39934:108::-;40022:12;;39934:108;;;5094:25:1;;;5082:2;5067:18;39934:108:0;4948:177:1;35184:147:0;;;;;;:::i;:::-;;:::i;:::-;;50262:242;;;;;;:::i;:::-;;:::i;17528:121::-;;;;;;:::i;:::-;;:::i;51730:450::-;;;;;;:::i;:::-;;:::i;12024:123::-;;;;;;:::i;:::-;12090:7;12117:12;;;;;;;;;;:22;;;;12024:123;12409:188;;;;;;:::i;:::-;;:::i;50162:92::-;50237:9;;50162:92;;50237:9;;;;15871:36:1;;15859:2;15844:18;50162:92:0;15729:184:1;13539:287:0;;;;;;:::i;:::-;;:::i;42752:297::-;;;;;;:::i;:::-;;:::i;16898:174::-;;;:::i;50512:291::-;;;;;;:::i;:::-;;:::i;17168:352::-;;;;;;:::i;:::-;;:::i;40105:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;40256:18:0;40224:7;40256:18;;;:9;:18;;;;;;;40105:177;15765:60;;-1:-1:-1;;;;;;;;;;;15765:60:0;;50811:538;;;;;;:::i;:::-;;:::i;16718:172::-;;;:::i;33586:27::-;;;;;-1:-1:-1;;;;;33586:27:0;;;;;;-1:-1:-1;;;;;3744:32:1;;;3726:51;;3714:2;3699:18;33586:27:0;3580:203:1;10868:180:0;;;;;;:::i;:::-;;:::i;39033:104::-;;;:::i;9883:49::-;;9928:4;9883:49;;43552:482;;;;;;:::i;:::-;;:::i;51357:365::-;;;;;;:::i;:::-;;:::i;35608:307::-;;;;;;:::i;:::-;;:::i;17080:80::-;17145:7;;-1:-1:-1;;;17145:7:0;;;;17080:80;;15832:62;;15870:24;15832:62;;12842:190;;;;;;:::i;:::-;;:::i;40774:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;40940:18:0;;;40908:7;40940:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;40774:201;34818:142;;;;;;:::i;:::-;;:::i;34483:114::-;;;;;;:::i;:::-;;:::i;10496:280::-;10626:4;-1:-1:-1;;;;;;10668:47:0;;-1:-1:-1;;;10668:47:0;;:100;;-1:-1:-1;;;;;;;;;;7938:40:0;;;10732:36;10648:120;10496:280;-1:-1:-1;;10496:280:0:o;38814:100::-;38868:13;38901:5;38894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38814:100;:::o;41122:210::-;41241:4;41263:39;3871:10;41286:7;41295:6;41263:8;:39::i;:::-;-1:-1:-1;41320:4:0;41122:210;;;;:::o;32988:280::-;16001:6;;33120:4;;-1:-1:-1;;;;;16001:6:0;3871:10;16001:22;15993:51;;;;-1:-1:-1;;;15993:51:0;;;;;;;:::i;:::-;;;;;;;;;33137:45:::1;-1:-1:-1::0;;;;;33137:26:0;::::1;33164:9:::0;33175:6;33137:26:::1;:45::i;:::-;33198:40;::::0;;-1:-1:-1;;;;;4355:15:1;;;4337:34;;4407:15;;4402:2;4387:18;;4380:43;4439:18;;;4432:34;;;33198:40:0::1;::::0;4287:2:1;4272:18;33198:40:0::1;;;;;;;;-1:-1:-1::0;33256:4:0::1;16055:1;32988:280:::0;;;;;:::o;35184:147::-;33840:12;;-1:-1:-1;;;;;33840:12:0;3871:10;33840:28;33818:119;;;;-1:-1:-1;;;33818:119:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35256:21:0;::::1;35280:5;35256:21:::0;;;:12:::1;:21;::::0;;;;;:29;;-1:-1:-1;;35256:29:0::1;::::0;;35301:22;::::1;::::0;35280:5;35301:22:::1;35184:147:::0;:::o;50262:242::-;16001:6;;50386:4;;-1:-1:-1;;;;;16001:6:0;3871:10;16001:22;15993:51;;;;-1:-1:-1;;;15993:51:0;;;;;;;:::i;:::-;50408:22:::1;50414:7;50423:6;50408:5;:22::i;:::-;50446:28;::::0;;-1:-1:-1;;;;;4669:32:1;;4651:51;;4733:2;4718:18;;4711:34;;;50446:28:0::1;::::0;4624:18:1;50446:28:0::1;;;;;;;-1:-1:-1::0;50492:4:0::1;50262:242:::0;;;;:::o;17528:121::-;16001:6;;-1:-1:-1;;;;;16001:6:0;3871:10;16001:22;15993:51;;;;-1:-1:-1;;;15993:51:0;;;;;;;:::i;:::-;17611:30:::1;17625:4;17631:9;17611:13;:30::i;:::-;17528:121:::0;;:::o;51730:450::-;16360:7;;51887:4;;-1:-1:-1;;;16360:7:0;;;;16359:8;16351:43;;;;-1:-1:-1;;;16351:43:0;;;;;;;:::i;:::-;51928:24:::1;51942:9;51928:13;:24::i;:::-;51927:25;:72;;;;;51974:25;51988:10;51974:13;:25::i;:::-;51973:26;51927:72;:115;;;;;52021:21;52035:6;52021:13;:21::i;:::-;52020:22;51927:115;51904:205;;;;-1:-1:-1::0;;;51904:205:0::1;;;;;;;:::i;:::-;52127:45;52146:6;52154:9;52165:6;52127:18;:45::i;:::-;52120:52:::0;51730:450;-1:-1:-1;;;;51730:450:0:o;12409:188::-;12090:7;12117:12;;;;;;;;;;:22;;;10374:30;10385:4;3871:10;10374;:30::i;:::-;12564:25:::1;12575:4;12581:7;12564:10;:25::i;:::-;12409:188:::0;;;:::o;13539:287::-;-1:-1:-1;;;;;13681:23:0;;3871:10;13681:23;13659:120;;;;-1:-1:-1;;;13659:120:0;;14694:2:1;13659:120:0;;;14676:21:1;14733:2;14713:18;;;14706:30;14772:34;14752:18;;;14745:62;-1:-1:-1;;;14823:18:1;;;14816:45;14878:19;;13659:120:0;14492:411:1;13659:120:0;13792:26;13804:4;13810:7;13792:11;:26::i;42752:297::-;3871:10;42867:4;42961:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;42961:34:0;;;;;;;;;;42867:4;;42889:130;;42939:7;;42961:47;;42998:10;;42961:47;:::i;:::-;42889:8;:130::i;16898:174::-;16950:4;16112:33;-1:-1:-1;;;;;;;;;;;3871:10:0;10868:180;:::i;16112:33::-;16104:62;;;;-1:-1:-1;;;16104:62:0;;8756:2:1;16104:62:0;;;8738:21:1;8795:2;8775:18;;;8768:30;-1:-1:-1;;;8814:18:1;;;8807:46;8870:18;;16104:62:0;8554:340:1;16104:62:0;16459:7:::1;::::0;-1:-1:-1;;;16459:7:0;::::1;;;16451:49;;;::::0;-1:-1:-1;;;16451:49:0;;5720:2:1;16451:49:0::1;::::0;::::1;5702:21:1::0;5759:2;5739:18;;;5732:30;5798:31;5778:18;;;5771:59;5847:18;;16451:49:0::1;5518:353:1::0;16451:49:0::1;16967:7:::2;:15:::0;;-1:-1:-1;;;;16967:15:0::2;::::0;;16998:44:::2;17015:12;3871:10:::0;17029:12:::2;16998:44;::::0;;15624:25:1;;;-1:-1:-1;;;;;15685:32:1;;;15680:2;15665:18;;15658:60;15597:18;16998:44:0::2;;;;;;;-1:-1:-1::0;17060:4:0::2;16898:174:::0;:::o;50512:291::-;50685:4;16235:34;15870:24;3871:10;10868:180;:::i;16235:34::-;16227:64;;;;-1:-1:-1;;;16227:64:0;;8007:2:1;16227:64:0;;;7989:21:1;8046:2;8026:18;;;8019:30;-1:-1:-1;;;8065:18:1;;;8058:47;8122:18;;16227:64:0;7805:341:1;16227:64:0;16360:7:::1;::::0;-1:-1:-1;;;16360:7:0;::::1;;;16359:8;16351:43;;;;-1:-1:-1::0;;;16351:43:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34172:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;50658:7;;34172:21:::2;;34171:22;34149:109;;;::::0;-1:-1:-1;;;34149:109:0;;13882:2:1;34149:109:0::2;::::0;::::2;13864:21:1::0;13921:2;13901:18;;;13894:30;13960:34;13940:18;;;13933:62;-1:-1:-1;;;14011:18:1;;;14004:35;14056:19;;34149:109:0::2;13680:401:1::0;34149:109:0::2;50707:22:::3;50713:7;50722:6;50707:5;:22::i;:::-;50745:28;::::0;;-1:-1:-1;;;;;4669:32:1;;4651:51;;4733:2;4718:18;;4711:34;;;50745:28:0::3;::::0;4624:18:1;50745:28:0::3;;;;;;;-1:-1:-1::0;50791:4:0::3;::::0;50512:291;-1:-1:-1;;;50512:291:0:o;17168:352::-;16001:6;;17232:4;;-1:-1:-1;;;;;16001:6:0;3871:10;16001:22;15993:51;;;;-1:-1:-1;;;15993:51:0;;;;;;;:::i;:::-;17249:36:::1;9928:4;17279:5:::0;17249:9:::1;:36::i;:::-;17296:28;-1:-1:-1::0;;;;;;;;;;;17318:5:0::1;17296:9;:28::i;:::-;17368:6;::::0;17337:38:::1;::::0;9928:4:::1;::::0;-1:-1:-1;;;;;17368:6:0::1;17337:10;:38::i;:::-;17409:6;::::0;17386:30:::1;::::0;-1:-1:-1;;;;;;;;;;;15802:23:0;-1:-1:-1;;;;;17409:6:0::1;17386:10;:30::i;:::-;17447:6;::::0;17434:27:::1;::::0;;-1:-1:-1;;;;;17447:6:0;;::::1;4000:34:1::0;;4070:15;;;4065:2;4050:18;;4043:43;17434:27:0::1;::::0;3935:18:1;17434:27:0::1;;;;;;;-1:-1:-1::0;17474:6:0::1;:14:::0;;-1:-1:-1;;;;;;17474:14:0::1;-1:-1:-1::0;;;;;17474:14:0;::::1;;::::0;;16055:1:::1;17168:352:::0;;;:::o;50811:538::-;16360:7;;50933:4;;-1:-1:-1;;;16360:7:0;;;;16359:8;16351:43;;;;-1:-1:-1;;;16351:43:0;;;;;;;:::i;:::-;50955:24:::1;50982:32;50992:7:::0;3871:10;40774:201;:::i;50982:32::-:1;50955:59;;51067:6;51047:16;:26;;51025:112;;;::::0;-1:-1:-1;;;51025:112:0;;10731:2:1;51025:112:0::1;::::0;::::1;10713:21:1::0;10770:2;10750:18;;;10743:30;10809:34;10789:18;;;10782:62;-1:-1:-1;;;10860:18:1;;;10853:34;10904:19;;51025:112:0::1;10529:400:1::0;51025:112:0::1;51173:58;51182:7:::0;3871:10;51191:12:::1;51224:6;51205:16;:25;51173:8;:58::i;:::-;51253:22;51259:7;51268:6;51253:5;:22::i;:::-;51291:28;::::0;;-1:-1:-1;;;;;4669:32:1;;4651:51;;4733:2;4718:18;;4711:34;;;51291:28:0::1;::::0;4624:18:1;51291:28:0::1;4477:274:1::0;16718:172:0;16771:4;16112:33;-1:-1:-1;;;;;;;;;;;3871:10:0;10868:180;:::i;16112:33::-;16104:62;;;;-1:-1:-1;;;16104:62:0;;8756:2:1;16104:62:0;;;8738:21:1;8795:2;8775:18;;;8768:30;-1:-1:-1;;;8814:18:1;;;8807:46;8870:18;;16104:62:0;8554:340:1;16104:62:0;16360:7:::1;::::0;-1:-1:-1;;;16360:7:0;::::1;;;16359:8;16351:43;;;;-1:-1:-1::0;;;16351:43:0::1;;;;;;;:::i;:::-;16798:4:::2;16788:14:::0;;-1:-1:-1;;;;16788:14:0::2;-1:-1:-1::0;;;16788:14:0::2;::::0;;16818:42:::2;16833:12;16847;3871:10:::0;;3791:98;10868:180;10982:4;11011:12;;;;;;;;;;;-1:-1:-1;;;;;11011:29:0;;;;;;;;;;;;;;;10868:180::o;39033:104::-;39089:13;39122:7;39115:14;;;;;:::i;43552:482::-;3871:10;43672:4;43721:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;43721:34:0;;;;;;;;;;43788:35;;;;43766:122;;;;-1:-1:-1;;;43766:122:0;;14288:2:1;43766:122:0;;;14270:21:1;14327:2;14307:18;;;14300:30;14366:34;14346:18;;;14339:62;-1:-1:-1;;;14417:18:1;;;14410:35;14462:19;;43766:122:0;14086:401:1;43766:122:0;43924:67;3871:10;43947:7;43975:15;43956:16;:34;43924:8;:67::i;:::-;-1:-1:-1;44022:4:0;;43552:482;-1:-1:-1;;;43552:482:0:o;51357:365::-;16360:7;;51496:4;;-1:-1:-1;;;16360:7:0;;;;16359:8;16351:43;;;;-1:-1:-1;;;16351:43:0;;;;;;;:::i;:::-;51542:24:::1;51556:9;51542:13;:24::i;:::-;51541:25;:55;;;;;51571:25;51585:10;51571:13;:25::i;:::-;51570:26;51541:55;51518:145;;;;-1:-1:-1::0;;;51518:145:0::1;;;;;;;:::i;:::-;51681:33;51696:9;51707:6;51681:14;:33::i;35608:307::-:0;16001:6;;-1:-1:-1;;;;;16001:6:0;3871:10;16001:22;15993:51;;;;-1:-1:-1;;;15993:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35711:28:0;::::1;35689:128;;;::::0;-1:-1:-1;;;35689:128:0;;13463:2:1;35689:128:0::1;::::0;::::1;13445:21:1::0;13502:2;13482:18;;;13475:30;13541:34;13521:18;;;13514:62;-1:-1:-1;;;13592:18:1;;;13585:48;13650:19;;35689:128:0::1;13261:414:1::0;35689:128:0::1;35828:12;:29:::0;;-1:-1:-1;;;;;;35828:29:0::1;-1:-1:-1::0;;;;;35828:29:0;::::1;::::0;;::::1;::::0;;;35873:34:::1;::::0;::::1;::::0;-1:-1:-1;;35873:34:0::1;35608:307:::0;:::o;12842:190::-;12090:7;12117:12;;;;;;;;;;:22;;;10374:30;10385:4;3871:10;10374;:30::i;:::-;12998:26:::1;13010:4;13016:7;12998:11;:26::i;34818:142::-:0;33840:12;;-1:-1:-1;;;;;33840:12:0;3871:10;33840:28;33818:119;;;;-1:-1:-1;;;33818:119:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34888:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:28;;-1:-1:-1;;34888:28:0::1;34912:4;34888:28;::::0;;34932:20;::::1;::::0;34888:21;34932:20:::1;34818:142:::0;:::o;34483:114::-;-1:-1:-1;;;;;34568:21:0;34544:4;34568:21;;;:12;:21;;;;;;;;;34483:114::o;47342:380::-;-1:-1:-1;;;;;47478:19:0;;47470:68;;;;-1:-1:-1;;;47470:68:0;;12289:2:1;47470:68:0;;;12271:21:1;12328:2;12308:18;;;12301:30;12367:34;12347:18;;;12340:62;-1:-1:-1;;;12418:18:1;;;12411:34;12462:19;;47470:68:0;12087:400:1;47470:68:0;-1:-1:-1;;;;;47557:21:0;;47549:68;;;;-1:-1:-1;;;47549:68:0;;8353:2:1;47549:68:0;;;8335:21:1;8392:2;8372:18;;;8365:30;8431:34;8411:18;;;8404:62;-1:-1:-1;;;8482:18:1;;;8475:32;8524:19;;47549:68:0;8151:398:1;47549:68:0;-1:-1:-1;;;;;47630:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;47682:32;;5094:25:1;;;47682:32:0;;5067:18:1;47682:32:0;;;;;;;47342:380;;;:::o;29975:248::-;30146:58;;;-1:-1:-1;;;;;4669:32:1;;30146:58:0;;;4651:51:1;4718:18;;;;4711:34;;;30146:58:0;;;;;;;;;;4624:18:1;;;;30146:58:0;;;;;;;;-1:-1:-1;;;;;30146:58:0;-1:-1:-1;;;30146:58:0;;;30092:123;;30126:5;;30092:19;:123::i;45581:399::-;-1:-1:-1;;;;;45665:21:0;;45657:65;;;;-1:-1:-1;;;45657:65:0;;15110:2:1;45657:65:0;;;15092:21:1;15149:2;15129:18;;;15122:30;15188:33;15168:18;;;15161:61;15239:18;;45657:65:0;14908:355:1;45657:65:0;45813:6;45797:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;45830:18:0;;;;;;:9;:18;;;;;:28;;45852:6;;45830:18;:28;;45852:6;;45830:28;:::i;:::-;;;;-1:-1:-1;;45874:37:0;;5094:25:1;;;-1:-1:-1;;;;;45874:37:0;;;45891:1;;45874:37;;5082:2:1;5067:18;45874:37:0;;;;;;;17528:121;;:::o;14653:251::-;14737:25;12117:12;;;;;;;;;;;:22;;;;14794:34;;;;14844:52;;12117:22;;14794:34;;12117:22;;:12;;14844:52;;14737:25;14844:52;14726:178;14653:251;;:::o;41814:529::-;41954:4;41971:36;41981:6;41989:9;42000:6;41971:9;:36::i;:::-;-1:-1:-1;;;;;42047:19:0;;42020:24;42047:19;;;:11;:19;;;;;;;;3871:10;42047:33;;;;;;;;42113:26;;;;42091:116;;;;-1:-1:-1;;;42091:116:0;;10322:2:1;42091:116:0;;;10304:21:1;10361:2;10341:18;;;10334:30;10400:34;10380:18;;;10373:62;-1:-1:-1;;;10451:18:1;;;10444:38;10499:19;;42091:116:0;10120:404:1;42091:116:0;42243:57;42252:6;3871:10;42260:12;3791:98;42243:57;-1:-1:-1;42331:4:0;;41814:529;-1:-1:-1;;;;41814:529:0:o;11338:497::-;11419:22;11427:4;11433:7;11419;:22::i;:::-;11414:414;;11607:41;11635:7;-1:-1:-1;;;;;11607:41:0;11645:2;11607:19;:41::i;:::-;11721:38;11749:4;11756:2;11721:19;:38::i;:::-;11512:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11512:270:0;;;;;;;;;;-1:-1:-1;;;11458:358:0;;;;;;;:::i;14912:229::-;14987:22;14995:4;15001:7;14987;:22::i;:::-;14982:152;;15026:6;:12;;;;;;;;;;;-1:-1:-1;;;;;15026:29:0;;;;;;;;;:36;;-1:-1:-1;;15026:36:0;15058:4;15026:36;;;15109:12;3871:10;;3791:98;15109:12;-1:-1:-1;;;;;15082:40:0;15100:7;-1:-1:-1;;;;;15082:40:0;15094:4;15082:40;;;;;;;;;;14912:229;;:::o;15149:230::-;15224:22;15232:4;15238:7;15224;:22::i;:::-;15220:152;;;15295:5;15263:12;;;;;;;;;;;-1:-1:-1;;;;;15263:29:0;;;;;;;;;;:37;;-1:-1:-1;;15263:37:0;;;15320:40;3871:10;;15263:12;;15320:40;;15295:5;15320:40;15149:230;;:::o;46313:591::-;-1:-1:-1;;;;;46397:21:0;;46389:67;;;;-1:-1:-1;;;46389:67:0;;11136:2:1;46389:67:0;;;11118:21:1;11175:2;11155:18;;;11148:30;11214:34;11194:18;;;11187:62;-1:-1:-1;;;11265:18:1;;;11258:31;11306:19;;46389:67:0;10934:397:1;46389:67:0;-1:-1:-1;;;;;46556:18:0;;46531:22;46556:18;;;:9;:18;;;;;;46593:24;;;;46585:71;;;;-1:-1:-1;;;46585:71:0;;7194:2:1;46585:71:0;;;7176:21:1;7233:2;7213:18;;;7206:30;7272:34;7252:18;;;7245:62;-1:-1:-1;;;7323:18:1;;;7316:32;7365:19;;46585:71:0;6992:398:1;46585:71:0;-1:-1:-1;;;;;46692:18:0;;;;;;:9;:18;;;;;46713:23;;;46692:44;;46758:12;:22;;46730:6;;46692:18;46758:22;;46730:6;;46758:22;:::i;:::-;;;;-1:-1:-1;;46798:37:0;;5094:25:1;;;46824:1:0;;-1:-1:-1;;;;;46798:37:0;;;;;5082:2:1;5067:18;46798:37:0;;;;;;;12409:188;;;:::o;40495:216::-;40617:4;40639:42;3871:10;40663:9;40674:6;40639:9;:42::i;32020:802::-;32444:23;32470:106;32512:4;32470:106;;;;;;;;;;;;;;;;;32478:5;-1:-1:-1;;;;;32470:27:0;;;:106;;;;;:::i;:::-;32591:17;;32444:132;;-1:-1:-1;32591:21:0;32587:228;;32706:10;32695:30;;;;;;;;;;;;:::i;:::-;32669:134;;;;-1:-1:-1;;;32669:134:0;;13052:2:1;32669:134:0;;;13034:21:1;13091:2;13071:18;;;13064:30;13130:34;13110:18;;;13103:62;-1:-1:-1;;;13181:18:1;;;13174:40;13231:19;;32669:134:0;12850:406:1;44524:770:0;-1:-1:-1;;;;;44664:20:0;;44656:70;;;;-1:-1:-1;;;44656:70:0;;11538:2:1;44656:70:0;;;11520:21:1;11577:2;11557:18;;;11550:30;11616:34;11596:18;;;11589:62;-1:-1:-1;;;11667:18:1;;;11660:35;11712:19;;44656:70:0;11336:401:1;44656:70:0;-1:-1:-1;;;;;44745:23:0;;44737:71;;;;-1:-1:-1;;;44737:71:0;;6439:2:1;44737:71:0;;;6421:21:1;6478:2;6458:18;;;6451:30;6517:34;6497:18;;;6490:62;-1:-1:-1;;;6568:18:1;;;6561:33;6611:19;;44737:71:0;6237:399:1;44737:71:0;-1:-1:-1;;;;;44905:17:0;;44881:21;44905:17;;;:9;:17;;;;;;44955:23;;;;44933:111;;;;-1:-1:-1;;;44933:111:0;;9101:2:1;44933:111:0;;;9083:21:1;9140:2;9120:18;;;9113:30;9179:34;9159:18;;;9152:62;-1:-1:-1;;;9230:18:1;;;9223:36;9276:19;;44933:111:0;8899:402:1;44933:111:0;-1:-1:-1;;;;;45080:17:0;;;;;;;:9;:17;;;;;;45100:22;;;45080:42;;45144:20;;;;;;;;:30;;45116:6;;45080:17;45144:30;;45116:6;;45144:30;:::i;:::-;;;;;;;;45209:9;-1:-1:-1;;;;;45192:35:0;45201:6;-1:-1:-1;;;;;45192:35:0;;45220:6;45192:35;;;;5094:25:1;;5082:2;5067:18;;4948:177;45192:35:0;;;;;;;;45240:46;44645:649;44524:770;;;:::o;5626:483::-;5728:13;5759:19;5791:10;5795:6;5791:1;:10;:::i;:::-;:14;;5804:1;5791:14;:::i;:::-;5781:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5781:25:0;;5759:47;;-1:-1:-1;;;5817:6:0;5824:1;5817:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5817:15:0;;;;;;;;;-1:-1:-1;;;5843:6:0;5850:1;5843:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5843:15:0;;;;;;;;-1:-1:-1;5874:9:0;5886:10;5890:6;5886:1;:10;:::i;:::-;:14;;5899:1;5886:14;:::i;:::-;5874:26;;5869:135;5906:1;5902;:5;5869:135;;;-1:-1:-1;;;5954:5:0;5962:3;5954:11;5941:25;;;;;;;:::i;:::-;;;;5929:6;5936:1;5929:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;5929:37:0;;;;;;;;-1:-1:-1;5991:1:0;5981:11;;;;;5909:3;;;:::i;:::-;;;5869:135;;;-1:-1:-1;6022:10:0;;6014:55;;;;-1:-1:-1;;;6014:55:0;;6078:2:1;6014:55:0;;;6060:21:1;;;6097:18;;;6090:30;6156:34;6136:18;;;6129:62;6208:18;;6014:55:0;5876:356:1;24459:229:0;24596:12;24628:52;24650:6;24658:4;24664:1;24667:12;24596;21879:20;;25999:60;;;;-1:-1:-1;;;25999:60:0;;12694:2:1;25999:60:0;;;12676:21:1;12733:2;12713:18;;;12706:30;12772:31;12752:18;;;12745:59;12821:18;;25999:60:0;12492:353:1;25999:60:0;26073:12;26087:23;26114:6;-1:-1:-1;;;;;26114:11:0;26133:5;26154:4;26114:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26072:97;;;;26187:51;26204:7;26213:10;26225:12;26187:16;:51::i;:::-;26180:58;25675:571;-1:-1:-1;;;;;;;25675:571:0:o;28635:712::-;28785:12;28814:7;28810:530;;;-1:-1:-1;28845:10:0;28838:17;;28810:530;28959:17;;:21;28955:374;;29157:10;29151:17;29218:15;29205:10;29201:2;29197:19;29190:44;28955:374;29300:12;29293:20;;-1:-1:-1;;;29293:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:277::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:52;;;1376:1;1373;1366:12;1328:52;1408:9;1402:16;1461:5;1454:13;1447:21;1440:5;1437:32;1427:60;;1483:1;1480;1473:12;1522:180;1581:6;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;-1:-1:-1;1673:23:1;;1522:180;-1:-1:-1;1522:180:1:o;1707:254::-;1775:6;1783;1836:2;1824:9;1815:7;1811:23;1807:32;1804:52;;;1852:1;1849;1842:12;1804:52;1888:9;1875:23;1865:33;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;1966:248::-;2034:6;2042;2095:2;2083:9;2074:7;2070:23;2066:32;2063:52;;;2111:1;2108;2101:12;2063:52;-1:-1:-1;;2134:23:1;;;2204:2;2189:18;;;2176:32;;-1:-1:-1;1966:248:1:o;2219:286::-;2277:6;2330:2;2318:9;2309:7;2305:23;2301:32;2298:52;;;2346:1;2343;2336:12;2298:52;2372:23;;-1:-1:-1;;;;;;2424:32:1;;2414:43;;2404:71;;2471:1;2468;2461:12;2510:274;2639:3;2677:6;2671:13;2693:53;2739:6;2734:3;2727:4;2719:6;2715:17;2693:53;:::i;:::-;2762:16;;;;;2510:274;-1:-1:-1;;2510:274:1:o;2789:786::-;3200:25;3195:3;3188:38;3170:3;3255:6;3249:13;3271:62;3326:6;3321:2;3316:3;3312:12;3305:4;3297:6;3293:17;3271:62;:::i;:::-;-1:-1:-1;;;3392:2:1;3352:16;;;3384:11;;;3377:40;3442:13;;3464:63;3442:13;3513:2;3505:11;;3498:4;3486:17;;3464:63;:::i;:::-;3547:17;3566:2;3543:26;;2789:786;-1:-1:-1;;;;2789:786:1:o;5130:383::-;5279:2;5268:9;5261:21;5242:4;5311:6;5305:13;5354:6;5349:2;5338:9;5334:18;5327:34;5370:66;5429:6;5424:2;5413:9;5409:18;5404:2;5396:6;5392:15;5370:66;:::i;:::-;5497:2;5476:15;-1:-1:-1;;5472:29:1;5457:45;;;;5504:2;5453:54;;5130:383;-1:-1:-1;;5130:383:1:o;6641:346::-;6843:2;6825:21;;;6882:2;6862:18;;;6855:30;-1:-1:-1;;;6916:2:1;6901:18;;6894:52;6978:2;6963:18;;6641:346::o;7395:405::-;7597:2;7579:21;;;7636:2;7616:18;;;7609:30;7675:34;7670:2;7655:18;;7648:62;-1:-1:-1;;;7741:2:1;7726:18;;7719:39;7790:3;7775:19;;7395:405::o;9713:402::-;9915:2;9897:21;;;9954:2;9934:18;;;9927:30;9993:34;9988:2;9973:18;;9966:62;-1:-1:-1;;;10059:2:1;10044:18;;10037:36;10105:3;10090:19;;9713:402::o;11742:340::-;11944:2;11926:21;;;11983:2;11963:18;;;11956:30;-1:-1:-1;;;12017:2:1;12002:18;;11995:46;12073:2;12058:18;;11742:340::o;15918:128::-;15958:3;15989:1;15985:6;15982:1;15979:13;15976:39;;;15995:18;;:::i;:::-;-1:-1:-1;16031:9:1;;15918:128::o;16051:168::-;16091:7;16157:1;16153;16149:6;16145:14;16142:1;16139:21;16134:1;16127:9;16120:17;16116:45;16113:71;;;16164:18;;:::i;:::-;-1:-1:-1;16204:9:1;;16051:168::o;16224:125::-;16264:4;16292:1;16289;16286:8;16283:34;;;16297:18;;:::i;:::-;-1:-1:-1;16334:9:1;;16224:125::o;16354:258::-;16426:1;16436:113;16450:6;16447:1;16444:13;16436:113;;;16526:11;;;16520:18;16507:11;;;16500:39;16472:2;16465:10;16436:113;;;16567:6;16564:1;16561:13;16558:48;;;-1:-1:-1;;16602:1:1;16584:16;;16577:27;16354:258::o;16617:136::-;16656:3;16684:5;16674:39;;16693:18;;:::i;:::-;-1:-1:-1;;;16729:18:1;;16617:136::o;16758:380::-;16837:1;16833:12;;;;16880;;;16901:61;;16955:4;16947:6;16943:17;16933:27;;16901:61;17008:2;17000:6;16997:14;16977:18;16974:38;16971:161;;;17054:10;17049:3;17045:20;17042:1;17035:31;17089:4;17086:1;17079:15;17117:4;17114:1;17107:15;16971:161;;16758:380;;;:::o;17143:127::-;17204:10;17199:3;17195:20;17192:1;17185:31;17235:4;17232:1;17225:15;17259:4;17256:1;17249:15;17275:127;17336:10;17331:3;17327:20;17324:1;17317:31;17367:4;17364:1;17357:15;17391:4;17388:1;17381:15;17407:127;17468:10;17463:3;17459:20;17456:1;17449:31;17499:4;17496:1;17489:15;17523:4;17520:1;17513:15
Swarm Source
ipfs://4ec83d976fe2b1ac433bf6949fc253e754bec2e6c88a8fbafee9450f83131e39
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)