Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Gaming
Overview
Max Total Supply
2,000,000,000 IMPT
Holders
3,693 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$999,591.25
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
200 IMPTValue
$0.10 ( ~3.99312422833352E-05 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ImmopetToken
Compiler Version
v0.8.5+commit.a4f2e591
Optimization Enabled:
No with 200 runs
Other Settings:
constantinople EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; contract ImmopetToken is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); constructor( string memory name, string memory symbol, uint256 initialSupply, address owner ) ERC20(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); _mint(owner, initialSupply); } function pause() public virtual { require( hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause" ); _pause(); } function unpause() public virtual { require( hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause" ); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _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]{20}) is missing role (0x[0-9a-f]{32})$/ */ 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 { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = 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; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @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 { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { 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 "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 guidelines: functions revert instead * of 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 defaut 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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 to 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 { } }
// 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 "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[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); }
// 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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // 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); } // 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)))); } // 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)); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "constantinople", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003c8438038062003c8483398181016040528101906200003791906200070a565b8383816005908051906020019062000051929190620005ae565b5080600690805190602001906200006a929190620005ae565b5050506000600760006101000a81548160ff021916908315150217905550620000ac6000801b620000a06200010960201b60201c565b6200011160201b60201c565b620000ed7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620000e16200010960201b60201c565b6200011160201b60201c565b620000ff81836200015960201b60201c565b5050505062000b85565b600033905090565b620001288282620002bf60201b62000de91760201c565b620001548160016000858152602001908152602001600020620002d560201b62000df71790919060201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c39062000819565b60405180910390fd5b620001e0600083836200030d60201b60201c565b8060046000828254620001f49190620008ea565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200024c9190620008ea565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002b391906200085d565b60405180910390a35050565b620002d182826200032a60201b60201c565b5050565b600062000305836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200041b60201b60201c565b905092915050565b620003258383836200049560201b62000e271760201c565b505050565b6200033c82826200050560201b60201c565b6200041757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003bc6200010960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200042f83836200056f60201b60201c565b6200048a5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200048f565b600090505b92915050565b620004ad8383836200059260201b62000e7f1760201c565b620004bd6200059760201b60201c565b1562000500576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f7906200083b565b60405180910390fd5b505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000600760009054906101000a900460ff16905090565b828054620005bc90620009bb565b90600052602060002090601f016020900481019282620005e057600085556200062c565b82601f10620005fb57805160ff19168380011785556200062c565b828001600101855582156200062c579182015b828111156200062b5782518255916020019190600101906200060e565b5b5090506200063b91906200063f565b5090565b5b808211156200065a57600081600090555060010162000640565b5090565b6000620006756200066f84620008a3565b6200087a565b90508281526020810184848401111562000694576200069362000ab9565b5b620006a184828562000985565b509392505050565b600081519050620006ba8162000b51565b92915050565b600082601f830112620006d857620006d762000ab4565b5b8151620006ea8482602086016200065e565b91505092915050565b600081519050620007048162000b6b565b92915050565b6000806000806080858703121562000727576200072662000ac3565b5b600085015167ffffffffffffffff81111562000748576200074762000abe565b5b6200075687828801620006c0565b945050602085015167ffffffffffffffff8111156200077a576200077962000abe565b5b6200078887828801620006c0565b93505060406200079b87828801620006f3565b9250506060620007ae87828801620006a9565b91505092959194509250565b6000620007c9601f83620008d9565b9150620007d68262000ad9565b602082019050919050565b6000620007f0602a83620008d9565b9150620007fd8262000b02565b604082019050919050565b62000813816200097b565b82525050565b600060208201905081810360008301526200083481620007ba565b9050919050565b600060208201905081810360008301526200085681620007e1565b9050919050565b600060208201905062000874600083018462000808565b92915050565b60006200088662000899565b9050620008948282620009f1565b919050565b6000604051905090565b600067ffffffffffffffff821115620008c157620008c062000a85565b5b620008cc8262000ac8565b9050602081019050919050565b600082825260208201905092915050565b6000620008f7826200097b565b915062000904836200097b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200093c576200093b62000a27565b5b828201905092915050565b600062000954826200095b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620009a557808201518184015260208101905062000988565b83811115620009b5576000848401525b50505050565b60006002820490506001821680620009d457607f821691505b60208210811415620009eb57620009ea62000a56565b5b50919050565b620009fc8262000ac8565b810181811067ffffffffffffffff8211171562000a1e5762000a1d62000a85565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b62000b5c8162000947565b811462000b6857600080fd5b50565b62000b76816200097b565b811462000b8257600080fd5b50565b6130ef8062000b956000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a217fddf11610097578063ca15c87311610071578063ca15c873146104ab578063d547741f146104db578063dd62ed3e146104f7578063e63ab1e9146105275761018e565b8063a217fddf1461042d578063a457c2d71461044b578063a9059cbb1461047b5761018e565b806370a082311461035957806379cc6790146103895780638456cb59146103a55780639010d07c146103af57806391d14854146103df57806395d89b411461040f5761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806342966c681461031f5780635c975abb1461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a891906120db565b610545565b6040516101ba91906124fb565b60405180910390f35b6101cb6105bf565b6040516101d89190612531565b60405180910390f35b6101fb60048036038101906101f69190611fee565b610651565b60405161020891906124fb565b60405180910390f35b61021961066f565b6040516102269190612793565b60405180910390f35b61024960048036038101906102449190611f9b565b610679565b60405161025691906124fb565b60405180910390f35b6102796004803603810190610274919061202e565b61077a565b6040516102869190612516565b60405180910390f35b6102a960048036038101906102a4919061205b565b610799565b005b6102b36107cd565b6040516102c091906127ae565b60405180910390f35b6102e360048036038101906102de919061205b565b6107d6565b005b6102ff60048036038101906102fa9190611fee565b61080a565b60405161030c91906124fb565b60405180910390f35b61031d6108b6565b005b61033960048036038101906103349190612108565b610930565b005b610343610944565b60405161035091906124fb565b60405180910390f35b610373600480360381019061036e9190611f2e565b61095b565b6040516103809190612793565b60405180910390f35b6103a3600480360381019061039e9190611fee565b6109a4565b005b6103ad610a28565b005b6103c960048036038101906103c4919061209b565b610aa2565b6040516103d691906124e0565b60405180910390f35b6103f960048036038101906103f4919061205b565b610ad1565b60405161040691906124fb565b60405180910390f35b610417610b3b565b6040516104249190612531565b60405180910390f35b610435610bcd565b6040516104429190612516565b60405180910390f35b61046560048036038101906104609190611fee565b610bd4565b60405161047291906124fb565b60405180910390f35b61049560048036038101906104909190611fee565b610cc8565b6040516104a291906124fb565b60405180910390f35b6104c560048036038101906104c0919061202e565b610ce6565b6040516104d29190612793565b60405180910390f35b6104f560048036038101906104f0919061205b565b610d0a565b005b610511600480360381019061050c9190611f5b565b610d3e565b60405161051e9190612793565b60405180910390f35b61052f610dc5565b60405161053c9190612516565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506105b782610e84565b5b9050919050565b6060600580546105ce906129bc565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa906129bc565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061066561065e610efe565b8484610f06565b6001905092915050565b6000600454905090565b60006106868484846110d1565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106d1610efe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074890612673565b60405180910390fd5b61076e8561075d610efe565b858461076991906128a0565b610f06565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107a38282611353565b6107c88160016000858152602001908152602001600020610df790919063ffffffff16565b505050565b60006012905090565b6107e0828261137c565b61080581600160008581526020019081526020016000206113ff90919063ffffffff16565b505050565b60006108ac610817610efe565b848460036000610825610efe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108a791906127f0565b610f06565b6001905092915050565b6108e77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108e2610efe565b610ad1565b610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d906125f3565b60405180910390fd5b61092e61142f565b565b61094161093b610efe565b826114d1565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006109b7836109b2610efe565b610d3e565b9050818110156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390612693565b60405180910390fd5b610a1983610a08610efe565b8484610a1491906128a0565b610f06565b610a2383836114d1565b505050565b610a597f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a54610efe565b610ad1565b610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f90612713565b60405180910390fd5b610aa06116a7565b565b6000610ac9826001600086815260200190815260200160002061174a90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610b4a906129bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b76906129bc565b8015610bc35780601f10610b9857610100808354040283529160200191610bc3565b820191906000526020600020905b815481529060010190602001808311610ba657829003601f168201915b5050505050905090565b6000801b81565b60008060036000610be3610efe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612733565b60405180910390fd5b610cbd610cab610efe565b858584610cb891906128a0565b610f06565b600191505092915050565b6000610cdc610cd5610efe565b84846110d1565b6001905092915050565b6000610d0360016000848152602001908152602001600020611764565b9050919050565b610d148282611779565b610d3981600160008581526020019081526020016000206113ff90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610df382826117a2565b5050565b6000610e1f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611882565b905092915050565b610e32838383610e7f565b610e3a610944565b15610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190612773565b60405180910390fd5b505050565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ef75750610ef6826118f2565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d906126f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90612613565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110c49190612793565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906126d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890612593565b60405180910390fd5b6111bc83838361195c565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612633565b60405180910390fd5b818161124f91906128a0565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112e191906127f0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113459190612793565b60405180910390a350505050565b61135c8261077a565b61136d81611368610efe565b61196c565b61137783836117a2565b505050565b611384610efe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612753565b60405180910390fd5b6113fb8282611a09565b5050565b6000611427836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611aea565b905092915050565b611437610944565b611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d906125b3565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114ba610efe565b6040516114c791906124e0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906126b3565b60405180910390fd5b61154d8260008361195c565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb906125d3565b60405180910390fd5b81816115e091906128a0565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461163591906128a0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161169a9190612793565b60405180910390a3505050565b6116af610944565b156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612653565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611733610efe565b60405161174091906124e0565b60405180910390a1565b60006117598360000183611bf6565b60001c905092915050565b600061177282600001611c6a565b9050919050565b6117828261077a565b6117938161178e610efe565b61196c565b61179d8383611a09565b505050565b6117ac8282610ad1565b61187e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611823610efe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061188e8383611c7b565b6118e75782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506118ec565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611967838383610e27565b505050565b6119768282610ad1565b611a055761199b8173ffffffffffffffffffffffffffffffffffffffff166014611c9e565b6119a98360001c6020611c9e565b6040516020016119ba9291906124a6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc9190612531565b60405180910390fd5b5050565b611a138282610ad1565b15611ae657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a8b610efe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611bea576000600182611b1c91906128a0565b9050600060018660000180549050611b3491906128a0565b90506000866000018281548110611b4e57611b4d612a7b565b5b9060005260206000200154905080876000018481548110611b7257611b71612a7b565b5b9060005260206000200181905550838760010160008381526020019081526020016000208190555086600001805480611bae57611bad612a4c565b5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611bf0565b60009150505b92915050565b600081836000018054905011611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890612553565b60405180910390fd5b826000018281548110611c5757611c56612a7b565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606060006002836002611cb19190612846565b611cbb91906127f0565b67ffffffffffffffff811115611cd457611cd3612aaa565b5b6040519080825280601f01601f191660200182016040528015611d065781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611d3e57611d3d612a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611da257611da1612a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611de29190612846565b611dec91906127f0565b90505b6001811115611e8c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611e2e57611e2d612a7b565b5b1a60f81b828281518110611e4557611e44612a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611e8590612992565b9050611def565b5060008414611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790612573565b60405180910390fd5b8091505092915050565b600081359050611ee98161305d565b92915050565b600081359050611efe81613074565b92915050565b600081359050611f138161308b565b92915050565b600081359050611f28816130a2565b92915050565b600060208284031215611f4457611f43612ad9565b5b6000611f5284828501611eda565b91505092915050565b60008060408385031215611f7257611f71612ad9565b5b6000611f8085828601611eda565b9250506020611f9185828601611eda565b9150509250929050565b600080600060608486031215611fb457611fb3612ad9565b5b6000611fc286828701611eda565b9350506020611fd386828701611eda565b9250506040611fe486828701611f19565b9150509250925092565b6000806040838503121561200557612004612ad9565b5b600061201385828601611eda565b925050602061202485828601611f19565b9150509250929050565b60006020828403121561204457612043612ad9565b5b600061205284828501611eef565b91505092915050565b6000806040838503121561207257612071612ad9565b5b600061208085828601611eef565b925050602061209185828601611eda565b9150509250929050565b600080604083850312156120b2576120b1612ad9565b5b60006120c085828601611eef565b92505060206120d185828601611f19565b9150509250929050565b6000602082840312156120f1576120f0612ad9565b5b60006120ff84828501611f04565b91505092915050565b60006020828403121561211e5761211d612ad9565b5b600061212c84828501611f19565b91505092915050565b61213e816128d4565b82525050565b61214d816128e6565b82525050565b61215c816128f2565b82525050565b600061216d826127c9565b61217781856127d4565b935061218781856020860161295f565b61219081612ade565b840191505092915050565b60006121a6826127c9565b6121b081856127e5565b93506121c081856020860161295f565b80840191505092915050565b60006121d96022836127d4565b91506121e482612aef565b604082019050919050565b60006121fc6020836127d4565b915061220782612b3e565b602082019050919050565b600061221f6023836127d4565b915061222a82612b67565b604082019050919050565b60006122426014836127d4565b915061224d82612bb6565b602082019050919050565b60006122656022836127d4565b915061227082612bdf565b604082019050919050565b60006122886039836127d4565b915061229382612c2e565b604082019050919050565b60006122ab6022836127d4565b91506122b682612c7d565b604082019050919050565b60006122ce6026836127d4565b91506122d982612ccc565b604082019050919050565b60006122f16010836127d4565b91506122fc82612d1b565b602082019050919050565b60006123146028836127d4565b915061231f82612d44565b604082019050919050565b60006123376024836127d4565b915061234282612d93565b604082019050919050565b600061235a6021836127d4565b915061236582612de2565b604082019050919050565b600061237d6025836127d4565b915061238882612e31565b604082019050919050565b60006123a06024836127d4565b91506123ab82612e80565b604082019050919050565b60006123c36037836127d4565b91506123ce82612ecf565b604082019050919050565b60006123e66017836127e5565b91506123f182612f1e565b601782019050919050565b60006124096025836127d4565b915061241482612f47565b604082019050919050565b600061242c6011836127e5565b915061243782612f96565b601182019050919050565b600061244f602f836127d4565b915061245a82612fbf565b604082019050919050565b6000612472602a836127d4565b915061247d8261300e565b604082019050919050565b61249181612948565b82525050565b6124a081612952565b82525050565b60006124b1826123d9565b91506124bd828561219b565b91506124c88261241f565b91506124d4828461219b565b91508190509392505050565b60006020820190506124f56000830184612135565b92915050565b60006020820190506125106000830184612144565b92915050565b600060208201905061252b6000830184612153565b92915050565b6000602082019050818103600083015261254b8184612162565b905092915050565b6000602082019050818103600083015261256c816121cc565b9050919050565b6000602082019050818103600083015261258c816121ef565b9050919050565b600060208201905081810360008301526125ac81612212565b9050919050565b600060208201905081810360008301526125cc81612235565b9050919050565b600060208201905081810360008301526125ec81612258565b9050919050565b6000602082019050818103600083015261260c8161227b565b9050919050565b6000602082019050818103600083015261262c8161229e565b9050919050565b6000602082019050818103600083015261264c816122c1565b9050919050565b6000602082019050818103600083015261266c816122e4565b9050919050565b6000602082019050818103600083015261268c81612307565b9050919050565b600060208201905081810360008301526126ac8161232a565b9050919050565b600060208201905081810360008301526126cc8161234d565b9050919050565b600060208201905081810360008301526126ec81612370565b9050919050565b6000602082019050818103600083015261270c81612393565b9050919050565b6000602082019050818103600083015261272c816123b6565b9050919050565b6000602082019050818103600083015261274c816123fc565b9050919050565b6000602082019050818103600083015261276c81612442565b9050919050565b6000602082019050818103600083015261278c81612465565b9050919050565b60006020820190506127a86000830184612488565b92915050565b60006020820190506127c36000830184612497565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006127fb82612948565b915061280683612948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561283b5761283a6129ee565b5b828201905092915050565b600061285182612948565b915061285c83612948565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612895576128946129ee565b5b828202905092915050565b60006128ab82612948565b91506128b683612948565b9250828210156128c9576128c86129ee565b5b828203905092915050565b60006128df82612928565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561297d578082015181840152602081019050612962565b8381111561298c576000848401525b50505050565b600061299d82612948565b915060008214156129b1576129b06129ee565b5b600182039050919050565b600060028204905060018216806129d457607f821691505b602082108114156129e8576129e7612a1d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b613066816128d4565b811461307157600080fd5b50565b61307d816128f2565b811461308857600080fd5b50565b613094816128fc565b811461309f57600080fd5b50565b6130ab81612948565b81146130b657600080fd5b5056fea2646970667358221220e694c2be2bc57a444f08e242d06ab4b0eb2efaf0e1b9dcfdcd4bbed7702d832864736f6c63430008050033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000006765c793fa10079d00000000000000000000000000000009560175840f36d2391247d0259040331cc568c44000000000000000000000000000000000000000000000000000000000000000d494d4d4f50455420544f4b454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004494d505400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a217fddf11610097578063ca15c87311610071578063ca15c873146104ab578063d547741f146104db578063dd62ed3e146104f7578063e63ab1e9146105275761018e565b8063a217fddf1461042d578063a457c2d71461044b578063a9059cbb1461047b5761018e565b806370a082311461035957806379cc6790146103895780638456cb59146103a55780639010d07c146103af57806391d14854146103df57806395d89b411461040f5761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806342966c681461031f5780635c975abb1461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a891906120db565b610545565b6040516101ba91906124fb565b60405180910390f35b6101cb6105bf565b6040516101d89190612531565b60405180910390f35b6101fb60048036038101906101f69190611fee565b610651565b60405161020891906124fb565b60405180910390f35b61021961066f565b6040516102269190612793565b60405180910390f35b61024960048036038101906102449190611f9b565b610679565b60405161025691906124fb565b60405180910390f35b6102796004803603810190610274919061202e565b61077a565b6040516102869190612516565b60405180910390f35b6102a960048036038101906102a4919061205b565b610799565b005b6102b36107cd565b6040516102c091906127ae565b60405180910390f35b6102e360048036038101906102de919061205b565b6107d6565b005b6102ff60048036038101906102fa9190611fee565b61080a565b60405161030c91906124fb565b60405180910390f35b61031d6108b6565b005b61033960048036038101906103349190612108565b610930565b005b610343610944565b60405161035091906124fb565b60405180910390f35b610373600480360381019061036e9190611f2e565b61095b565b6040516103809190612793565b60405180910390f35b6103a3600480360381019061039e9190611fee565b6109a4565b005b6103ad610a28565b005b6103c960048036038101906103c4919061209b565b610aa2565b6040516103d691906124e0565b60405180910390f35b6103f960048036038101906103f4919061205b565b610ad1565b60405161040691906124fb565b60405180910390f35b610417610b3b565b6040516104249190612531565b60405180910390f35b610435610bcd565b6040516104429190612516565b60405180910390f35b61046560048036038101906104609190611fee565b610bd4565b60405161047291906124fb565b60405180910390f35b61049560048036038101906104909190611fee565b610cc8565b6040516104a291906124fb565b60405180910390f35b6104c560048036038101906104c0919061202e565b610ce6565b6040516104d29190612793565b60405180910390f35b6104f560048036038101906104f0919061205b565b610d0a565b005b610511600480360381019061050c9190611f5b565b610d3e565b60405161051e9190612793565b60405180910390f35b61052f610dc5565b60405161053c9190612516565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506105b782610e84565b5b9050919050565b6060600580546105ce906129bc565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa906129bc565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061066561065e610efe565b8484610f06565b6001905092915050565b6000600454905090565b60006106868484846110d1565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106d1610efe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074890612673565b60405180910390fd5b61076e8561075d610efe565b858461076991906128a0565b610f06565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107a38282611353565b6107c88160016000858152602001908152602001600020610df790919063ffffffff16565b505050565b60006012905090565b6107e0828261137c565b61080581600160008581526020019081526020016000206113ff90919063ffffffff16565b505050565b60006108ac610817610efe565b848460036000610825610efe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108a791906127f0565b610f06565b6001905092915050565b6108e77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108e2610efe565b610ad1565b610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d906125f3565b60405180910390fd5b61092e61142f565b565b61094161093b610efe565b826114d1565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006109b7836109b2610efe565b610d3e565b9050818110156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390612693565b60405180910390fd5b610a1983610a08610efe565b8484610a1491906128a0565b610f06565b610a2383836114d1565b505050565b610a597f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a54610efe565b610ad1565b610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f90612713565b60405180910390fd5b610aa06116a7565b565b6000610ac9826001600086815260200190815260200160002061174a90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610b4a906129bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b76906129bc565b8015610bc35780601f10610b9857610100808354040283529160200191610bc3565b820191906000526020600020905b815481529060010190602001808311610ba657829003601f168201915b5050505050905090565b6000801b81565b60008060036000610be3610efe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612733565b60405180910390fd5b610cbd610cab610efe565b858584610cb891906128a0565b610f06565b600191505092915050565b6000610cdc610cd5610efe565b84846110d1565b6001905092915050565b6000610d0360016000848152602001908152602001600020611764565b9050919050565b610d148282611779565b610d3981600160008581526020019081526020016000206113ff90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610df382826117a2565b5050565b6000610e1f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611882565b905092915050565b610e32838383610e7f565b610e3a610944565b15610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190612773565b60405180910390fd5b505050565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ef75750610ef6826118f2565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d906126f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90612613565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110c49190612793565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906126d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890612593565b60405180910390fd5b6111bc83838361195c565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612633565b60405180910390fd5b818161124f91906128a0565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112e191906127f0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113459190612793565b60405180910390a350505050565b61135c8261077a565b61136d81611368610efe565b61196c565b61137783836117a2565b505050565b611384610efe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612753565b60405180910390fd5b6113fb8282611a09565b5050565b6000611427836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611aea565b905092915050565b611437610944565b611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d906125b3565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114ba610efe565b6040516114c791906124e0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906126b3565b60405180910390fd5b61154d8260008361195c565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb906125d3565b60405180910390fd5b81816115e091906128a0565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461163591906128a0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161169a9190612793565b60405180910390a3505050565b6116af610944565b156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612653565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611733610efe565b60405161174091906124e0565b60405180910390a1565b60006117598360000183611bf6565b60001c905092915050565b600061177282600001611c6a565b9050919050565b6117828261077a565b6117938161178e610efe565b61196c565b61179d8383611a09565b505050565b6117ac8282610ad1565b61187e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611823610efe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061188e8383611c7b565b6118e75782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506118ec565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611967838383610e27565b505050565b6119768282610ad1565b611a055761199b8173ffffffffffffffffffffffffffffffffffffffff166014611c9e565b6119a98360001c6020611c9e565b6040516020016119ba9291906124a6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc9190612531565b60405180910390fd5b5050565b611a138282610ad1565b15611ae657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a8b610efe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611bea576000600182611b1c91906128a0565b9050600060018660000180549050611b3491906128a0565b90506000866000018281548110611b4e57611b4d612a7b565b5b9060005260206000200154905080876000018481548110611b7257611b71612a7b565b5b9060005260206000200181905550838760010160008381526020019081526020016000208190555086600001805480611bae57611bad612a4c565b5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611bf0565b60009150505b92915050565b600081836000018054905011611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890612553565b60405180910390fd5b826000018281548110611c5757611c56612a7b565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606060006002836002611cb19190612846565b611cbb91906127f0565b67ffffffffffffffff811115611cd457611cd3612aaa565b5b6040519080825280601f01601f191660200182016040528015611d065781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611d3e57611d3d612a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611da257611da1612a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611de29190612846565b611dec91906127f0565b90505b6001811115611e8c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611e2e57611e2d612a7b565b5b1a60f81b828281518110611e4557611e44612a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611e8590612992565b9050611def565b5060008414611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790612573565b60405180910390fd5b8091505092915050565b600081359050611ee98161305d565b92915050565b600081359050611efe81613074565b92915050565b600081359050611f138161308b565b92915050565b600081359050611f28816130a2565b92915050565b600060208284031215611f4457611f43612ad9565b5b6000611f5284828501611eda565b91505092915050565b60008060408385031215611f7257611f71612ad9565b5b6000611f8085828601611eda565b9250506020611f9185828601611eda565b9150509250929050565b600080600060608486031215611fb457611fb3612ad9565b5b6000611fc286828701611eda565b9350506020611fd386828701611eda565b9250506040611fe486828701611f19565b9150509250925092565b6000806040838503121561200557612004612ad9565b5b600061201385828601611eda565b925050602061202485828601611f19565b9150509250929050565b60006020828403121561204457612043612ad9565b5b600061205284828501611eef565b91505092915050565b6000806040838503121561207257612071612ad9565b5b600061208085828601611eef565b925050602061209185828601611eda565b9150509250929050565b600080604083850312156120b2576120b1612ad9565b5b60006120c085828601611eef565b92505060206120d185828601611f19565b9150509250929050565b6000602082840312156120f1576120f0612ad9565b5b60006120ff84828501611f04565b91505092915050565b60006020828403121561211e5761211d612ad9565b5b600061212c84828501611f19565b91505092915050565b61213e816128d4565b82525050565b61214d816128e6565b82525050565b61215c816128f2565b82525050565b600061216d826127c9565b61217781856127d4565b935061218781856020860161295f565b61219081612ade565b840191505092915050565b60006121a6826127c9565b6121b081856127e5565b93506121c081856020860161295f565b80840191505092915050565b60006121d96022836127d4565b91506121e482612aef565b604082019050919050565b60006121fc6020836127d4565b915061220782612b3e565b602082019050919050565b600061221f6023836127d4565b915061222a82612b67565b604082019050919050565b60006122426014836127d4565b915061224d82612bb6565b602082019050919050565b60006122656022836127d4565b915061227082612bdf565b604082019050919050565b60006122886039836127d4565b915061229382612c2e565b604082019050919050565b60006122ab6022836127d4565b91506122b682612c7d565b604082019050919050565b60006122ce6026836127d4565b91506122d982612ccc565b604082019050919050565b60006122f16010836127d4565b91506122fc82612d1b565b602082019050919050565b60006123146028836127d4565b915061231f82612d44565b604082019050919050565b60006123376024836127d4565b915061234282612d93565b604082019050919050565b600061235a6021836127d4565b915061236582612de2565b604082019050919050565b600061237d6025836127d4565b915061238882612e31565b604082019050919050565b60006123a06024836127d4565b91506123ab82612e80565b604082019050919050565b60006123c36037836127d4565b91506123ce82612ecf565b604082019050919050565b60006123e66017836127e5565b91506123f182612f1e565b601782019050919050565b60006124096025836127d4565b915061241482612f47565b604082019050919050565b600061242c6011836127e5565b915061243782612f96565b601182019050919050565b600061244f602f836127d4565b915061245a82612fbf565b604082019050919050565b6000612472602a836127d4565b915061247d8261300e565b604082019050919050565b61249181612948565b82525050565b6124a081612952565b82525050565b60006124b1826123d9565b91506124bd828561219b565b91506124c88261241f565b91506124d4828461219b565b91508190509392505050565b60006020820190506124f56000830184612135565b92915050565b60006020820190506125106000830184612144565b92915050565b600060208201905061252b6000830184612153565b92915050565b6000602082019050818103600083015261254b8184612162565b905092915050565b6000602082019050818103600083015261256c816121cc565b9050919050565b6000602082019050818103600083015261258c816121ef565b9050919050565b600060208201905081810360008301526125ac81612212565b9050919050565b600060208201905081810360008301526125cc81612235565b9050919050565b600060208201905081810360008301526125ec81612258565b9050919050565b6000602082019050818103600083015261260c8161227b565b9050919050565b6000602082019050818103600083015261262c8161229e565b9050919050565b6000602082019050818103600083015261264c816122c1565b9050919050565b6000602082019050818103600083015261266c816122e4565b9050919050565b6000602082019050818103600083015261268c81612307565b9050919050565b600060208201905081810360008301526126ac8161232a565b9050919050565b600060208201905081810360008301526126cc8161234d565b9050919050565b600060208201905081810360008301526126ec81612370565b9050919050565b6000602082019050818103600083015261270c81612393565b9050919050565b6000602082019050818103600083015261272c816123b6565b9050919050565b6000602082019050818103600083015261274c816123fc565b9050919050565b6000602082019050818103600083015261276c81612442565b9050919050565b6000602082019050818103600083015261278c81612465565b9050919050565b60006020820190506127a86000830184612488565b92915050565b60006020820190506127c36000830184612497565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006127fb82612948565b915061280683612948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561283b5761283a6129ee565b5b828201905092915050565b600061285182612948565b915061285c83612948565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612895576128946129ee565b5b828202905092915050565b60006128ab82612948565b91506128b683612948565b9250828210156128c9576128c86129ee565b5b828203905092915050565b60006128df82612928565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561297d578082015181840152602081019050612962565b8381111561298c576000848401525b50505050565b600061299d82612948565b915060008214156129b1576129b06129ee565b5b600182039050919050565b600060028204905060018216806129d457607f821691505b602082108114156129e8576129e7612a1d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b613066816128d4565b811461307157600080fd5b50565b61307d816128f2565b811461308857600080fd5b50565b613094816128fc565b811461309f57600080fd5b50565b6130ab81612948565b81146130b657600080fd5b5056fea2646970667358221220e694c2be2bc57a444f08e242d06ab4b0eb2efaf0e1b9dcfdcd4bbed7702d832864736f6c63430008050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000006765c793fa10079d00000000000000000000000000000009560175840f36d2391247d0259040331cc568c44000000000000000000000000000000000000000000000000000000000000000d494d4d4f50455420544f4b454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004494d505400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): IMMOPET TOKEN
Arg [1] : symbol (string): IMPT
Arg [2] : initialSupply (uint256): 2000000000000000000000000000
Arg [3] : owner (address): 0x9560175840f36d2391247d0259040331cc568c44
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000006765c793fa10079d0000000
Arg [3] : 0000000000000000000000009560175840f36d2391247d0259040331cc568c44
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 494d4d4f50455420544f4b454e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 494d505400000000000000000000000000000000000000000000000000000000
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.