ERC-20
Overview
Max Total Supply
294,626.398637346118787596 KAE
Holders
455
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
72.534456378872427609 KAEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; contract Token is IERC20, AccessControlEnumerable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); string private _name; string private _symbol; uint256 private _totalSupply; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setRoleAdmin(MINTER_ROLE, DEFAULT_ADMIN_ROLE); _setupRole(MINTER_ROLE, msg.sender); } function name () public view virtual returns (string memory) { return _name; } function symbol () public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return 18; } function totalSupply () public view virtual override returns (uint256) { return _totalSupply; } function balanceOf (address account) public view virtual override returns (uint256) { return _balances[account]; } function allowance (address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function _transfer (address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: tx from 0 addr"); require(recipient != address(0), "ERC20: tx to 0 addr"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: tx amt > balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function transfer (address recipient, uint256 amount) public virtual override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function transferFrom (address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][msg.sender]; require(currentAllowance >= amount, "ERC20: tx amt > allowance"); unchecked { _approve(sender, msg.sender, currentAllowance - amount); } return true; } function _approve (address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from 0 addr"); require(spender != address(0), "ERC20: approve to 0 addr"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(msg.sender, spender, amount); return true; } function increaseAllowance (address spender, uint256 addedValue) public virtual returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue); return true; } function decreaseAllowance (address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[msg.sender][spender]; require(currentAllowance >= subtractedValue, "ERC20: allowance < 0"); unchecked { _approve(msg.sender, spender, currentAllowance - subtractedValue); } return true; } function _mint (address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to 0 addr"); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } function mint (address to, uint256 amount) public virtual { require(hasRole(MINTER_ROLE, msg.sender), "ERC20: !minter"); _mint(to, amount); } function _burn (address account, uint256 amount) internal virtual { require(hasRole(MINTER_ROLE, msg.sender), "ERC20: !minter"); require(account != address(0), "ERC20: burn from 0 addr"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amt > balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); } function burn (uint256 amount) public virtual { _burn(msg.sender, amount); } function burnFrom (address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, msg.sender); require(currentAllowance >= amount, "ERC20: burn amt > allowance"); unchecked { _approve(account, msg.sender, currentAllowance - amount); } _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @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()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT 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; }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620032c5380380620032c5833981810160405281019062000037919062000533565b81600290805190602001906200004f92919062000405565b5080600390805190602001906200006892919062000405565b506200007e6000801b33620000ed60201b60201c565b620000b37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66000801b6200013560201b60201c565b620000e57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000ed60201b60201c565b50506200073c565b6200010482826200019860201b62000ca11760201c565b620001308160016000858152602001908152602001600020620001ae60201b62000caf1790919060201c565b505050565b60006200014883620001e660201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620001aa82826200020560201b60201c565b5050565b6000620001de836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002f660201b60201c565b905092915050565b6000806000838152602001908152602001600020600101549050919050565b6200021782826200037060201b60201c565b620002f257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000297620003da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200030a8383620003e260201b60201c565b620003655782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200036a565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080836001016000848152602001908152602001600020541415905092915050565b82805462000413906200064d565b90600052602060002090601f01602090048101928262000437576000855562000483565b82601f106200045257805160ff191683800117855562000483565b8280016001018555821562000483579182015b828111156200048257825182559160200191906001019062000465565b5b50905062000492919062000496565b5090565b5b80821115620004b157600081600090555060010162000497565b5090565b6000620004cc620004c684620005e1565b620005b8565b905082815260208101848484011115620004eb57620004ea6200071c565b5b620004f884828562000617565b509392505050565b600082601f83011262000518576200051762000717565b5b81516200052a848260208601620004b5565b91505092915050565b600080604083850312156200054d576200054c62000726565b5b600083015167ffffffffffffffff8111156200056e576200056d62000721565b5b6200057c8582860162000500565b925050602083015167ffffffffffffffff811115620005a0576200059f62000721565b5b620005ae8582860162000500565b9150509250929050565b6000620005c4620005d7565b9050620005d2828262000683565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ff57620005fe620006e8565b5b6200060a826200072b565b9050602081019050919050565b60005b83811015620006375780820151818401526020810190506200061a565b8381111562000647576000848401525b50505050565b600060028204905060018216806200066657607f821691505b602082108114156200067d576200067c620006b9565b5b50919050565b6200068e826200072b565b810181811067ffffffffffffffff82111715620006b057620006af620006e8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612b79806200074c6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146103ff578063a9059cbb1461042f578063ca15c8731461045f578063d53913931461048f578063d547741f146104ad578063dd62ed3e146104c957610158565b806370a082311461031757806379cc6790146103475780639010d07c1461036357806391d148541461039357806395d89b41146103c3578063a217fddf146103e157610158565b80632f2ff15d116101155780632f2ff15d14610259578063313ce5671461027557806336568abe1461029357806339509351146102af57806340c10f19146102df57806342966c68146102fb57610158565b806301ffc9a71461015d57806306fdde031461018d578063095ea7b3146101ab57806318160ddd146101db57806323b872dd146101f9578063248a9ca314610229575b600080fd5b61017760048036038101906101729190611f29565b6104f9565b60405161018491906122bd565b60405180910390f35b610195610573565b6040516101a291906122f3565b60405180910390f35b6101c560048036038101906101c09190611e3c565b610605565b6040516101d291906122bd565b60405180910390f35b6101e361061c565b6040516101f091906124d5565b60405180910390f35b610213600480360381019061020e9190611de9565b610626565b60405161022091906122bd565b60405180910390f35b610243600480360381019061023e9190611e7c565b610710565b60405161025091906122d8565b60405180910390f35b610273600480360381019061026e9190611ea9565b61072f565b005b61027d610763565b60405161028a91906124f0565b60405180910390f35b6102ad60048036038101906102a89190611ea9565b61076c565b005b6102c960048036038101906102c49190611e3c565b6107a0565b6040516102d691906122bd565b60405180910390f35b6102f960048036038101906102f49190611e3c565b61083e565b005b61031560048036038101906103109190611f56565b6108b5565b005b610331600480360381019061032c9190611d7c565b6108c2565b60405161033e91906124d5565b60405180910390f35b610361600480360381019061035c9190611e3c565b61090b565b005b61037d60048036038101906103789190611ee9565b610978565b60405161038a91906122a2565b60405180910390f35b6103ad60048036038101906103a89190611ea9565b6109a7565b6040516103ba91906122bd565b60405180910390f35b6103cb610a11565b6040516103d891906122f3565b60405180910390f35b6103e9610aa3565b6040516103f691906122d8565b60405180910390f35b61041960048036038101906104149190611e3c565b610aaa565b60405161042691906122bd565b60405180910390f35b61044960048036038101906104449190611e3c565b610b87565b60405161045691906122bd565b60405180910390f35b61047960048036038101906104749190611e7c565b610b9e565b60405161048691906124d5565b60405180910390f35b610497610bc2565b6040516104a491906122d8565b60405180910390f35b6104c760048036038101906104c29190611ea9565b610be6565b005b6104e360048036038101906104de9190611da9565b610c1a565b6040516104f091906124d5565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056c575061056b82610cdf565b5b9050919050565b606060028054610582906126fe565b80601f01602080910402602001604051908101604052809291908181526020018280546105ae906126fe565b80156105fb5780601f106105d0576101008083540402835291602001916105fb565b820191906000526020600020905b8154815290600101906020018083116105de57829003601f168201915b5050505050905090565b6000610612338484610d59565b6001905092915050565b6000600454905090565b6000610633848484610f24565b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ee90612455565b60405180910390fd5b6107048533858403610d59565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107398282611192565b61075e8160016000858152602001908152602001600020610caf90919063ffffffff16565b505050565b60006012905090565b61077682826111bb565b61079b816001600085815260200190815260200160002061123e90919063ffffffff16565b505050565b6000610834338484600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461082f9190612532565b610d59565b6001905092915050565b6108687f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336109a7565b6108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90612355565b60405180910390fd5b6108b1828261126e565b5050565b6108bf33826113b7565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006109178333610c1a565b90508181101561095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612435565b60405180910390fd5b6109698333848403610d59565b61097383836113b7565b505050565b600061099f82600160008681526020019081526020016000206115e190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610a20906126fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c906126fe565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000801b81565b600080600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690612335565b60405180910390fd5b610b7c3385858403610d59565b600191505092915050565b6000610b94338484610f24565b6001905092915050565b6000610bbb600160008481526020019081526020016000206115fb565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610bf08282611610565b610c15816001600085815260200190815260200160002061123e90919063ffffffff16565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cab8282611639565b5050565b6000610cd7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611719565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d525750610d5182611789565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906123f5565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1791906124d5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906123d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90612375565b60405180910390fd5b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612415565b60405180910390fd5b818103600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111209190612532565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118491906124d5565b60405180910390a350505050565b61119b82610710565b6111ac816111a76117f3565b6117fb565b6111b68383611639565b505050565b6111c36117f3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906124b5565b60405180910390fd5b61123a8282611898565b5050565b6000611266836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611979565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d5906123b5565b60405180910390fd5b80600460008282546112f09190612532565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113469190612532565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ab91906124d5565b60405180910390a35050565b6113e17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336109a7565b611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790612395565b60405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90612495565b60405180910390fd5b818103600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461156f91906125e2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115d491906124d5565b60405180910390a3505050565b60006115f08360000183611a8d565b60001c905092915050565b600061160982600001611ab8565b9050919050565b61161982610710565b61162a816116256117f3565b6117fb565b6116348383611898565b505050565b61164382826109a7565b61171557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116ba6117f3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006117258383611ac9565b61177e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611783565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61180582826109a7565b6118945761182a8173ffffffffffffffffffffffffffffffffffffffff166014611aec565b6118388360001c6020611aec565b604051602001611849929190612268565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b91906122f3565b60405180910390fd5b5050565b6118a282826109a7565b1561197557600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061191a6117f3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611a815760006001826119ab91906125e2565b90506000600186600001805490506119c391906125e2565b9050818114611a325760008660000182815481106119e4576119e36127bd565b5b9060005260206000200154905080876000018481548110611a0857611a076127bd565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611a4657611a4561278e565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611a87565b60009150505b92915050565b6000826000018281548110611aa557611aa46127bd565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606060006002836002611aff9190612588565b611b099190612532565b67ffffffffffffffff811115611b2257611b216127ec565b5b6040519080825280601f01601f191660200182016040528015611b545781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b8c57611b8b6127bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611bf057611bef6127bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c309190612588565b611c3a9190612532565b90505b6001811115611cda577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c7c57611c7b6127bd565b5b1a60f81b828281518110611c9357611c926127bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611cd3906126d4565b9050611c3d565b5060008414611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590612315565b60405180910390fd5b8091505092915050565b600081359050611d3781612ae7565b92915050565b600081359050611d4c81612afe565b92915050565b600081359050611d6181612b15565b92915050565b600081359050611d7681612b2c565b92915050565b600060208284031215611d9257611d9161281b565b5b6000611da084828501611d28565b91505092915050565b60008060408385031215611dc057611dbf61281b565b5b6000611dce85828601611d28565b9250506020611ddf85828601611d28565b9150509250929050565b600080600060608486031215611e0257611e0161281b565b5b6000611e1086828701611d28565b9350506020611e2186828701611d28565b9250506040611e3286828701611d67565b9150509250925092565b60008060408385031215611e5357611e5261281b565b5b6000611e6185828601611d28565b9250506020611e7285828601611d67565b9150509250929050565b600060208284031215611e9257611e9161281b565b5b6000611ea084828501611d3d565b91505092915050565b60008060408385031215611ec057611ebf61281b565b5b6000611ece85828601611d3d565b9250506020611edf85828601611d28565b9150509250929050565b60008060408385031215611f0057611eff61281b565b5b6000611f0e85828601611d3d565b9250506020611f1f85828601611d67565b9150509250929050565b600060208284031215611f3f57611f3e61281b565b5b6000611f4d84828501611d52565b91505092915050565b600060208284031215611f6c57611f6b61281b565b5b6000611f7a84828501611d67565b91505092915050565b611f8c81612616565b82525050565b611f9b81612628565b82525050565b611faa81612634565b82525050565b6000611fbb8261250b565b611fc58185612516565b9350611fd58185602086016126a1565b611fde81612820565b840191505092915050565b6000611ff48261250b565b611ffe8185612527565b935061200e8185602086016126a1565b80840191505092915050565b6000612027602083612516565b915061203282612831565b602082019050919050565b600061204a601483612516565b91506120558261285a565b602082019050919050565b600061206d600e83612516565b915061207882612883565b602082019050919050565b6000612090601383612516565b915061209b826128ac565b602082019050919050565b60006120b3601783612516565b91506120be826128d5565b602082019050919050565b60006120d6601583612516565b91506120e1826128fe565b602082019050919050565b60006120f9601583612516565b915061210482612927565b602082019050919050565b600061211c601883612516565b915061212782612950565b602082019050919050565b600061213f601783612516565b915061214a82612979565b602082019050919050565b6000612162601b83612516565b915061216d826129a2565b602082019050919050565b6000612185601983612516565b9150612190826129cb565b602082019050919050565b60006121a8601a83612516565b91506121b3826129f4565b602082019050919050565b60006121cb601983612516565b91506121d682612a1d565b602082019050919050565b60006121ee601783612527565b91506121f982612a46565b601782019050919050565b6000612211601183612527565b915061221c82612a6f565b601182019050919050565b6000612234602f83612516565b915061223f82612a98565b604082019050919050565b6122538161268a565b82525050565b61226281612694565b82525050565b6000612273826121e1565b915061227f8285611fe9565b915061228a82612204565b91506122968284611fe9565b91508190509392505050565b60006020820190506122b76000830184611f83565b92915050565b60006020820190506122d26000830184611f92565b92915050565b60006020820190506122ed6000830184611fa1565b92915050565b6000602082019050818103600083015261230d8184611fb0565b905092915050565b6000602082019050818103600083015261232e8161201a565b9050919050565b6000602082019050818103600083015261234e8161203d565b9050919050565b6000602082019050818103600083015261236e81612060565b9050919050565b6000602082019050818103600083015261238e81612083565b9050919050565b600060208201905081810360008301526123ae816120a6565b9050919050565b600060208201905081810360008301526123ce816120c9565b9050919050565b600060208201905081810360008301526123ee816120ec565b9050919050565b6000602082019050818103600083015261240e8161210f565b9050919050565b6000602082019050818103600083015261242e81612132565b9050919050565b6000602082019050818103600083015261244e81612155565b9050919050565b6000602082019050818103600083015261246e81612178565b9050919050565b6000602082019050818103600083015261248e8161219b565b9050919050565b600060208201905081810360008301526124ae816121be565b9050919050565b600060208201905081810360008301526124ce81612227565b9050919050565b60006020820190506124ea600083018461224a565b92915050565b60006020820190506125056000830184612259565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061253d8261268a565b91506125488361268a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561257d5761257c612730565b5b828201905092915050565b60006125938261268a565b915061259e8361268a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125d7576125d6612730565b5b828202905092915050565b60006125ed8261268a565b91506125f88361268a565b92508282101561260b5761260a612730565b5b828203905092915050565b60006126218261266a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156126bf5780820151818401526020810190506126a4565b838111156126ce576000848401525b50505050565b60006126df8261268a565b915060008214156126f3576126f2612730565b5b600182039050919050565b6000600282049050600182168061271657607f821691505b6020821081141561272a5761272961275f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a20616c6c6f77616e6365203c2030000000000000000000000000600082015250565b7f45524332303a20216d696e746572000000000000000000000000000000000000600082015250565b7f45524332303a20747820746f2030206164647200000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20302061646472000000000000000000600082015250565b7f45524332303a206d696e7420746f203020616464720000000000000000000000600082015250565b7f45524332303a2074782066726f6d203020616464720000000000000000000000600082015250565b7f45524332303a20617070726f766520746f203020616464720000000000000000600082015250565b7f45524332303a20747820616d74203e2062616c616e6365000000000000000000600082015250565b7f45524332303a206275726e20616d74203e20616c6c6f77616e63650000000000600082015250565b7f45524332303a20747820616d74203e20616c6c6f77616e636500000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20302061646472000000000000600082015250565b7f45524332303a206275726e20616d74203e2062616c616e636500000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612af081612616565b8114612afb57600080fd5b50565b612b0781612634565b8114612b1257600080fd5b50565b612b1e8161263e565b8114612b2957600080fd5b50565b612b358161268a565b8114612b4057600080fd5b5056fea2646970667358221220bf1e30a13ea7c1d0a346bb739d8a226522e4eee081a9ffd0150b2dc3fe8ac46a64736f6c634300080600330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000074b616e70656b690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b41450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146103ff578063a9059cbb1461042f578063ca15c8731461045f578063d53913931461048f578063d547741f146104ad578063dd62ed3e146104c957610158565b806370a082311461031757806379cc6790146103475780639010d07c1461036357806391d148541461039357806395d89b41146103c3578063a217fddf146103e157610158565b80632f2ff15d116101155780632f2ff15d14610259578063313ce5671461027557806336568abe1461029357806339509351146102af57806340c10f19146102df57806342966c68146102fb57610158565b806301ffc9a71461015d57806306fdde031461018d578063095ea7b3146101ab57806318160ddd146101db57806323b872dd146101f9578063248a9ca314610229575b600080fd5b61017760048036038101906101729190611f29565b6104f9565b60405161018491906122bd565b60405180910390f35b610195610573565b6040516101a291906122f3565b60405180910390f35b6101c560048036038101906101c09190611e3c565b610605565b6040516101d291906122bd565b60405180910390f35b6101e361061c565b6040516101f091906124d5565b60405180910390f35b610213600480360381019061020e9190611de9565b610626565b60405161022091906122bd565b60405180910390f35b610243600480360381019061023e9190611e7c565b610710565b60405161025091906122d8565b60405180910390f35b610273600480360381019061026e9190611ea9565b61072f565b005b61027d610763565b60405161028a91906124f0565b60405180910390f35b6102ad60048036038101906102a89190611ea9565b61076c565b005b6102c960048036038101906102c49190611e3c565b6107a0565b6040516102d691906122bd565b60405180910390f35b6102f960048036038101906102f49190611e3c565b61083e565b005b61031560048036038101906103109190611f56565b6108b5565b005b610331600480360381019061032c9190611d7c565b6108c2565b60405161033e91906124d5565b60405180910390f35b610361600480360381019061035c9190611e3c565b61090b565b005b61037d60048036038101906103789190611ee9565b610978565b60405161038a91906122a2565b60405180910390f35b6103ad60048036038101906103a89190611ea9565b6109a7565b6040516103ba91906122bd565b60405180910390f35b6103cb610a11565b6040516103d891906122f3565b60405180910390f35b6103e9610aa3565b6040516103f691906122d8565b60405180910390f35b61041960048036038101906104149190611e3c565b610aaa565b60405161042691906122bd565b60405180910390f35b61044960048036038101906104449190611e3c565b610b87565b60405161045691906122bd565b60405180910390f35b61047960048036038101906104749190611e7c565b610b9e565b60405161048691906124d5565b60405180910390f35b610497610bc2565b6040516104a491906122d8565b60405180910390f35b6104c760048036038101906104c29190611ea9565b610be6565b005b6104e360048036038101906104de9190611da9565b610c1a565b6040516104f091906124d5565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056c575061056b82610cdf565b5b9050919050565b606060028054610582906126fe565b80601f01602080910402602001604051908101604052809291908181526020018280546105ae906126fe565b80156105fb5780601f106105d0576101008083540402835291602001916105fb565b820191906000526020600020905b8154815290600101906020018083116105de57829003601f168201915b5050505050905090565b6000610612338484610d59565b6001905092915050565b6000600454905090565b6000610633848484610f24565b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ee90612455565b60405180910390fd5b6107048533858403610d59565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107398282611192565b61075e8160016000858152602001908152602001600020610caf90919063ffffffff16565b505050565b60006012905090565b61077682826111bb565b61079b816001600085815260200190815260200160002061123e90919063ffffffff16565b505050565b6000610834338484600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461082f9190612532565b610d59565b6001905092915050565b6108687f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336109a7565b6108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90612355565b60405180910390fd5b6108b1828261126e565b5050565b6108bf33826113b7565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006109178333610c1a565b90508181101561095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612435565b60405180910390fd5b6109698333848403610d59565b61097383836113b7565b505050565b600061099f82600160008681526020019081526020016000206115e190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610a20906126fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c906126fe565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000801b81565b600080600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690612335565b60405180910390fd5b610b7c3385858403610d59565b600191505092915050565b6000610b94338484610f24565b6001905092915050565b6000610bbb600160008481526020019081526020016000206115fb565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610bf08282611610565b610c15816001600085815260200190815260200160002061123e90919063ffffffff16565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cab8282611639565b5050565b6000610cd7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611719565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d525750610d5182611789565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906123f5565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1791906124d5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906123d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90612375565b60405180910390fd5b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612415565b60405180910390fd5b818103600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111209190612532565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118491906124d5565b60405180910390a350505050565b61119b82610710565b6111ac816111a76117f3565b6117fb565b6111b68383611639565b505050565b6111c36117f3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906124b5565b60405180910390fd5b61123a8282611898565b5050565b6000611266836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611979565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d5906123b5565b60405180910390fd5b80600460008282546112f09190612532565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113469190612532565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ab91906124d5565b60405180910390a35050565b6113e17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336109a7565b611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790612395565b60405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90612495565b60405180910390fd5b818103600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461156f91906125e2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115d491906124d5565b60405180910390a3505050565b60006115f08360000183611a8d565b60001c905092915050565b600061160982600001611ab8565b9050919050565b61161982610710565b61162a816116256117f3565b6117fb565b6116348383611898565b505050565b61164382826109a7565b61171557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116ba6117f3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006117258383611ac9565b61177e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611783565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61180582826109a7565b6118945761182a8173ffffffffffffffffffffffffffffffffffffffff166014611aec565b6118388360001c6020611aec565b604051602001611849929190612268565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b91906122f3565b60405180910390fd5b5050565b6118a282826109a7565b1561197557600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061191a6117f3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611a815760006001826119ab91906125e2565b90506000600186600001805490506119c391906125e2565b9050818114611a325760008660000182815481106119e4576119e36127bd565b5b9060005260206000200154905080876000018481548110611a0857611a076127bd565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611a4657611a4561278e565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611a87565b60009150505b92915050565b6000826000018281548110611aa557611aa46127bd565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606060006002836002611aff9190612588565b611b099190612532565b67ffffffffffffffff811115611b2257611b216127ec565b5b6040519080825280601f01601f191660200182016040528015611b545781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b8c57611b8b6127bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611bf057611bef6127bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c309190612588565b611c3a9190612532565b90505b6001811115611cda577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c7c57611c7b6127bd565b5b1a60f81b828281518110611c9357611c926127bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611cd3906126d4565b9050611c3d565b5060008414611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590612315565b60405180910390fd5b8091505092915050565b600081359050611d3781612ae7565b92915050565b600081359050611d4c81612afe565b92915050565b600081359050611d6181612b15565b92915050565b600081359050611d7681612b2c565b92915050565b600060208284031215611d9257611d9161281b565b5b6000611da084828501611d28565b91505092915050565b60008060408385031215611dc057611dbf61281b565b5b6000611dce85828601611d28565b9250506020611ddf85828601611d28565b9150509250929050565b600080600060608486031215611e0257611e0161281b565b5b6000611e1086828701611d28565b9350506020611e2186828701611d28565b9250506040611e3286828701611d67565b9150509250925092565b60008060408385031215611e5357611e5261281b565b5b6000611e6185828601611d28565b9250506020611e7285828601611d67565b9150509250929050565b600060208284031215611e9257611e9161281b565b5b6000611ea084828501611d3d565b91505092915050565b60008060408385031215611ec057611ebf61281b565b5b6000611ece85828601611d3d565b9250506020611edf85828601611d28565b9150509250929050565b60008060408385031215611f0057611eff61281b565b5b6000611f0e85828601611d3d565b9250506020611f1f85828601611d67565b9150509250929050565b600060208284031215611f3f57611f3e61281b565b5b6000611f4d84828501611d52565b91505092915050565b600060208284031215611f6c57611f6b61281b565b5b6000611f7a84828501611d67565b91505092915050565b611f8c81612616565b82525050565b611f9b81612628565b82525050565b611faa81612634565b82525050565b6000611fbb8261250b565b611fc58185612516565b9350611fd58185602086016126a1565b611fde81612820565b840191505092915050565b6000611ff48261250b565b611ffe8185612527565b935061200e8185602086016126a1565b80840191505092915050565b6000612027602083612516565b915061203282612831565b602082019050919050565b600061204a601483612516565b91506120558261285a565b602082019050919050565b600061206d600e83612516565b915061207882612883565b602082019050919050565b6000612090601383612516565b915061209b826128ac565b602082019050919050565b60006120b3601783612516565b91506120be826128d5565b602082019050919050565b60006120d6601583612516565b91506120e1826128fe565b602082019050919050565b60006120f9601583612516565b915061210482612927565b602082019050919050565b600061211c601883612516565b915061212782612950565b602082019050919050565b600061213f601783612516565b915061214a82612979565b602082019050919050565b6000612162601b83612516565b915061216d826129a2565b602082019050919050565b6000612185601983612516565b9150612190826129cb565b602082019050919050565b60006121a8601a83612516565b91506121b3826129f4565b602082019050919050565b60006121cb601983612516565b91506121d682612a1d565b602082019050919050565b60006121ee601783612527565b91506121f982612a46565b601782019050919050565b6000612211601183612527565b915061221c82612a6f565b601182019050919050565b6000612234602f83612516565b915061223f82612a98565b604082019050919050565b6122538161268a565b82525050565b61226281612694565b82525050565b6000612273826121e1565b915061227f8285611fe9565b915061228a82612204565b91506122968284611fe9565b91508190509392505050565b60006020820190506122b76000830184611f83565b92915050565b60006020820190506122d26000830184611f92565b92915050565b60006020820190506122ed6000830184611fa1565b92915050565b6000602082019050818103600083015261230d8184611fb0565b905092915050565b6000602082019050818103600083015261232e8161201a565b9050919050565b6000602082019050818103600083015261234e8161203d565b9050919050565b6000602082019050818103600083015261236e81612060565b9050919050565b6000602082019050818103600083015261238e81612083565b9050919050565b600060208201905081810360008301526123ae816120a6565b9050919050565b600060208201905081810360008301526123ce816120c9565b9050919050565b600060208201905081810360008301526123ee816120ec565b9050919050565b6000602082019050818103600083015261240e8161210f565b9050919050565b6000602082019050818103600083015261242e81612132565b9050919050565b6000602082019050818103600083015261244e81612155565b9050919050565b6000602082019050818103600083015261246e81612178565b9050919050565b6000602082019050818103600083015261248e8161219b565b9050919050565b600060208201905081810360008301526124ae816121be565b9050919050565b600060208201905081810360008301526124ce81612227565b9050919050565b60006020820190506124ea600083018461224a565b92915050565b60006020820190506125056000830184612259565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061253d8261268a565b91506125488361268a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561257d5761257c612730565b5b828201905092915050565b60006125938261268a565b915061259e8361268a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125d7576125d6612730565b5b828202905092915050565b60006125ed8261268a565b91506125f88361268a565b92508282101561260b5761260a612730565b5b828203905092915050565b60006126218261266a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156126bf5780820151818401526020810190506126a4565b838111156126ce576000848401525b50505050565b60006126df8261268a565b915060008214156126f3576126f2612730565b5b600182039050919050565b6000600282049050600182168061271657607f821691505b6020821081141561272a5761272961275f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a20616c6c6f77616e6365203c2030000000000000000000000000600082015250565b7f45524332303a20216d696e746572000000000000000000000000000000000000600082015250565b7f45524332303a20747820746f2030206164647200000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20302061646472000000000000000000600082015250565b7f45524332303a206d696e7420746f203020616464720000000000000000000000600082015250565b7f45524332303a2074782066726f6d203020616464720000000000000000000000600082015250565b7f45524332303a20617070726f766520746f203020616464720000000000000000600082015250565b7f45524332303a20747820616d74203e2062616c616e6365000000000000000000600082015250565b7f45524332303a206275726e20616d74203e20616c6c6f77616e63650000000000600082015250565b7f45524332303a20747820616d74203e20616c6c6f77616e636500000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20302061646472000000000000600082015250565b7f45524332303a206275726e20616d74203e2062616c616e636500000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612af081612616565b8114612afb57600080fd5b50565b612b0781612634565b8114612b1257600080fd5b50565b612b1e8161263e565b8114612b2957600080fd5b50565b612b358161268a565b8114612b4057600080fd5b5056fea2646970667358221220bf1e30a13ea7c1d0a346bb739d8a226522e4eee081a9ffd0150b2dc3fe8ac46a64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000074b616e70656b690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b41450000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Kanpeki
Arg [1] : symbol_ (string): KAE
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 4b616e70656b6900000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4b41450000000000000000000000000000000000000000000000000000000000
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.